blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
77e6c8b141156a9dfeb8bf474a0a5a747337ab4a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH3/EX3.2/Example3_2.sce | ebd018a8095e8b0df9a44ba3024ab9c1105a0a02 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 128 | sce | Example3_2.sce | //Chapter-3,Example3_2,pg 3_6
Vifs=4.095
n=12
Qe=Vifs/(((2^n)-1)*2)
printf("quantisation error\n")
printf("Qe=%.5f V",Qe)
|
9dd9023e699b909a48567faab8080f5578534361 | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH7/EX7.9/7_9.sce | 91ae3db74a267bf5bffee96f2444fa34c6c3012d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,151 | sce | 7_9.sce | clear;
clc;
printf("\t\t\tExample Number 7.9\n\n\n");
// heat transfer across horizontal air gap
// Example 7.9 (page no.-346)
// solution
a = 0.2;// [m] side length of plate
d = 0.01;// [m] seperation between two plates
p = 101325;// [Pa] pressure of air
R = 287;// [] universal gas constant
T1 = 100;// [degree celsius] temperature of first plate
T2 = 40;// [degree celsius] temperature of second plate
// the properties are the same as given in example(7.8)
Tf = (T1+T2)/2;// [degree celsius]
rho = p/(R*(Tf+273));// [Kg/m^(3)] density
k = 0.0295;// [W/m degree celsius]
Pr = 0.70;// prandtl number
Beta = 1/(Tf+273);// [K^(-1)]
mu = 2.043*10^(-5);// [Kg/m s] viscosity
g = 9.8;// [square meter/s] acceleration due to gravity
// the GrPr product is evaluated on the basis of the separating distance, so we have
Gr_into_Pr = (g*rho^(2)*Beta*(T1-T2)*(d)^(3)*Pr)/(mu^(2));
// consulting table 7-3(page no.-344) we find
C = 0.059;
n = 0.4;
m = 0;
Ke_by_K = C*(Gr_into_Pr)^(n)*(a/d)^(m);
A = a^(2);// [square meter] area of plate
q = Ke_by_K*k*A*(T1-T2)/d;// [W]
printf("heat transfer across the air space is %f W",q); |
3e5b63f2a948f0a89f2a4f936771c0148dfae2a5 | c49a028f382c3baddcd641c1972dd72bb60eaadc | /exp_6.sce | 6a3c571c74f4334e3f81d5533f4f941a1d0a109b | [] | no_license | BhautikDonga/SCILAB | 484fcc9ac58885a4ccc549ccc85e2a4a507d5d0a | b330ca555276eb57c1e88ffc745ecfa3b8ebfa0c | refs/heads/master | 2020-04-07T15:48:23.036273 | 2018-12-05T01:27:34 | 2018-12-05T01:27:34 | 158,501,669 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 536 | sce | exp_6.sce | Xn = input("Enter the value of Xn ");
i_x= input("Enter the range of Xn ");
Hn = input("Enter the value of Hn ");
i_h= input("Enter the range of Hn ");
exec("E:\scilab\work_17BIT009\exp_6_fun.sce");
[Yn,In] = exp_6_fun(Xn,i_x,Hn,i_h);
figure(1);
subplot(3,1,1);
plot2d3(i_x,Xn);
xlabel('n');
ylabel('Xn');
title("Graph of Xn");
subplot(3,1,2);
plot2d3(i_h,Hn);
xlabel('n');
ylabel('Hn');
title("Graph of Yn");
subplot(3,1,3);
plot2d3(In,Yn);
xlabel('n');
ylabel('Yn');
title("Convolution of Xn and Hn");
|
de193b9e437ae9b544ac1bae6482ac66fe099809 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2150/CH1/EX1.12/ex1_12.sce | 8ddfd479e7a6d83dc10eab20274944794bace95f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 455 | sce | ex1_12.sce | // Exa 1.12
clc;
clear;
close;
// Given data
E = 20;// in V
V_D1 = 0.7;// in V
V_D2 = 0.7;// in V
V2 = E - V_D1 - V_D2;// in V
R1 = 3.3*10^3;// in ohm
R2 = 5.6*10^3;// in ohm
I2 = V2/R2;// in A
I2 = I2*10^3;// in mA
disp(I2,"The current through resistor R2 in mA is ");
I1 = V_D2/R1;
I1 = I1 * 10^3;// in mA
disp(I1,"The current through resistor R1 in mA is");
I_D2 = I2-I1;// in mA
disp(I_D2,"The current through diode D2 in mA is");
|
1c5f1c0d029c63c67ac276d609ec2c5a61cd667b | fbb52d6d1b9a4902eb3710dd49cc02abe59ee133 | /modules/core/src/test/resources/log/gridgain.log.tst | ea74097323249f81f3e5473850e796c91ab993aa | [
"Apache-2.0"
] | permissive | cdsalmons/gridgain | 6500c661c2e3a9c91069e4010d0b9d36bab15844 | d2cbb296d4184f8626a3447ca99430c6c3f15208 | refs/heads/master | 2021-01-24T18:59:26.652870 | 2015-11-01T10:55:25 | 2015-11-01T10:55:25 | 45,376,380 | 1 | 0 | null | 2015-11-02T06:34:36 | 2015-11-02T06:34:36 | null | UTF-8 | Scilab | false | false | 3,923,545 | tst | gridgain.log.tst | [14:14:22,515][INFO ][main][GridListenActorSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:22,515][INFO ][main][GridListenActorSelfTest] << Enterprise Edition >>
[14:14:22,516][INFO ][main][GridListenActorSelfTest] Config URL: n/a
[14:14:22,516][INFO ][main][GridListenActorSelfTest] Daemon mode: off
[14:14:22,516][INFO ][main][GridListenActorSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:22,516][INFO ][main][GridListenActorSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:22,516][INFO ][main][GridListenActorSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:22,516][INFO ][main][GridListenActorSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:22,516][INFO ][main][GridListenActorSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:22,517][WARN ][main][GridListenActorSelfTest] SMTP is not configured - email notifications are off.
[14:14:22,517][WARN ][main][GridListenActorSelfTest] Cache is not configured - data grid is off.
[14:14:22,521][INFO ][main][GridListenActorSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:22,522][INFO ][main][GridListenActorSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:22,522][INFO ][main][GridListenActorSelfTest] Enabled local MACs: C8600068582C
[14:14:23,112][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:23,165][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45010, locHost=/192.168.2.14]
[14:14:23,462][INFO ][main][GridListenActorSelfTest] Security status [authentication=on, secure-session=on]
[14:14:23,504][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:23,505][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55010
[14:14:23,507][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50001
[14:14:23,516][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=353d63b5-a2f0-41d1-a30e-37016f357233, state=READY, lastHeartbeat=1353320063506, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55010, startTime=1353320063496]
[14:14:23,526][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8C20EE0]
[14:14:23,529][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:24,707][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:24,720][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:24,721][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:24,721][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:24,721][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:24,740][INFO ][main][GridListenActorSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridListenActorSelfTest
>>> Local node [ID=353D63B5-A2F0-41D1-A30E-37016F357233, order=1353320063496]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45010 UDP:50001 TCP:55010
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:24,740][INFO ][main][GridListenActorSelfTest] >>> Starting test: testListenByClosure <<<
[14:14:26,895][INFO ][main][GridListenActorSelfTest] >>> Stopping test: testListenByClosure in 2155 ms <<<
[14:14:26,902][INFO ][main][GridListenActorSelfTest] >>> Starting test: testBasicFlow <<<
[14:14:28,919][INFO ][main][GridListenActorSelfTest] >>> Stopping test: testBasicFlow in 2016 ms <<<
[14:14:28,925][INFO ][main][GridListenActorSelfTest] >>> Starting test: testImmediateStop <<<
[14:14:30,930][INFO ][main][GridListenActorSelfTest] >>> Stopping test: testImmediateStop in 2005 ms <<<
[14:14:30,938][INFO ][main][GridListenActorSelfTest] >>> Starting test: testReceiveAll <<<
[14:14:32,948][INFO ][main][GridListenActorSelfTest] >>> Stopping test: testReceiveAll in 2010 ms <<<
[14:14:32,956][INFO ][main][GridListenActorSelfTest] >>> Starting test: testRespondToRemote <<<
[14:14:32,960][INFO ][test-runner][GridListenActorSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:32,960][INFO ][test-runner][GridListenActorSelfTest1] << Enterprise Edition >>
[14:14:32,960][INFO ][test-runner][GridListenActorSelfTest1] Config URL: n/a
[14:14:32,960][INFO ][test-runner][GridListenActorSelfTest1] Daemon mode: off
[14:14:32,961][INFO ][test-runner][GridListenActorSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:14:32,961][INFO ][test-runner][GridListenActorSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:32,961][INFO ][test-runner][GridListenActorSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:32,961][INFO ][test-runner][GridListenActorSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:32,961][INFO ][test-runner][GridListenActorSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:32,961][WARN ][test-runner][GridListenActorSelfTest1] SMTP is not configured - email notifications are off.
[14:14:32,961][WARN ][test-runner][GridListenActorSelfTest1] Cache is not configured - data grid is off.
[14:14:32,964][INFO ][test-runner][GridListenActorSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:32,965][INFO ][test-runner][GridListenActorSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:32,966][INFO ][test-runner][GridListenActorSelfTest1] Enabled local MACs: C8600068582C
[14:14:33,480][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:33,499][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45011, locHost=/192.168.2.14]
[14:14:33,559][INFO ][test-runner][GridListenActorSelfTest1] Security status [authentication=on, secure-session=on]
[14:14:33,565][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:33,566][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55011
[14:14:33,566][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50001
[14:14:33,567][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1f7e8040-8a17-4e14-a513-1709bebe265b, state=READY, lastHeartbeat=1353320073559, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55011, startTime=1353320073559]
[14:14:33,568][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xAB3F3CCB]
[14:14:33,568][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:33,637][INFO ][disco-event-worker-#15%kernal.GridListenActorSelfTest%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=1f7e8040-8a17-4e14-a513-1709bebe265b, state=READY, lastHeartbeat=1353320073570, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55011, startTime=1353320073559]
[14:14:33,637][INFO ][disco-event-worker-#55%kernal.GridListenActorSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=353d63b5-a2f0-41d1-a30e-37016f357233, state=READY, lastHeartbeat=1353320073600, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55010, startTime=1353320063496]
[14:14:33,638][INFO ][disco-event-worker-#15%kernal.GridListenActorSelfTest%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x93B555F6]
[14:14:34,571][INFO ][disco-event-worker-#55%kernal.GridListenActorSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x93B555F6]
[14:14:35,650][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:14:35,651][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:14:35,652][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:35,652][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:35,652][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:35,667][INFO ][test-runner][GridListenActorSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridListenActorSelfTest1
>>> Local node [ID=1F7E8040-8A17-4E14-A513-1709BEBE265B, order=1353320073559]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45011 UDP:50001 TCP:55011
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:36,672][INFO ][test-runner][GridListenActorSelfTest] >>> Stopping grid [name=kernal.GridListenActorSelfTest1, id=1f7e8040-8a17-4e14-a513-1709bebe265b]
[14:14:36,674][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:36,674][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:36,679][INFO ][disco-event-worker-#15%kernal.GridListenActorSelfTest%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=1f7e8040-8a17-4e14-a513-1709bebe265b, state=LEFT, lastHeartbeat=1353320076673, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55011, startTime=1353320073559]
[14:14:36,680][INFO ][disco-event-worker-#15%kernal.GridListenActorSelfTest%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8C20EE0]
[14:14:36,693][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320075676, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e4269281b31-1f7e8040-8a17-4e14-a513-1709bebe265b, userVer=0, loc=true, sampleCls=class java.lang.String, sampleClsName=java.lang.String, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:36,701][INFO ][test-runner][GridListenActorSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridListenActorSelfTest1
>>> Grid uptime: 00:00:01:28
[14:14:36,703][INFO ][main][GridListenActorSelfTest] >>> Stopping test: testRespondToRemote in 3747 ms <<<
[14:14:36,712][INFO ][main][GridListenActorSelfTest] >>> Starting test: testPingPong <<<
[14:14:36,726][INFO ][main][GridListenActorSelfTest] >>> Stopping test: testPingPong in 14 ms <<<
[14:14:36,726][INFO ][main][GridListenActorSelfTest] >>> Stopping grid [name=kernal.GridListenActorSelfTest, id=353d63b5-a2f0-41d1-a30e-37016f357233]
[14:14:37,780][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:37,781][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:37,794][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320064744, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=a2269281b31-353d63b5-a2f0-41d1-a30e-37016f357233, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridListenActorSelfTest$1, sampleClsName=org.gridgain.grid.kernal.GridListenActorSelfTest$1, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:37,799][INFO ][main][GridListenActorSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridListenActorSelfTest
>>> Grid uptime: 00:00:13:57
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] << Enterprise Edition >>
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Config URL: n/a
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Daemon mode: off
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:37,814][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:37,814][WARN ][main][GridSessionCancelSiblingsFromFutureSelfTest] SMTP is not configured - email notifications are off.
[14:14:37,815][WARN ][main][GridSessionCancelSiblingsFromFutureSelfTest] Cache is not configured - data grid is off.
[14:14:37,815][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:37,815][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:37,815][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Enabled local MACs: C8600068582C
[14:14:38,322][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:38,339][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45020, locHost=/192.168.2.14]
[14:14:38,398][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] Security status [authentication=on, secure-session=on]
[14:14:38,403][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:38,404][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55020
[14:14:38,404][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50002
[14:14:38,406][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398]
[14:14:38,407][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x52EFDFF2]
[14:14:38,408][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:39,443][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:39,448][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:39,448][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:39,448][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:39,448][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:39,468][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionCancelSiblingsFromFutureSelfTest
>>> Local node [ID=741AF89C-78C4-453D-83D5-86B9A66DCA08, order=1353320078398]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45020 UDP:50002 TCP:55020
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:39,468][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] >>> Starting test: testCancelSiblings <<<
[14:14:39,478][INFO ][gridgain-#95%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, gridSize=1, arg=0]
[14:14:39,484][INFO ][gridgain-#96%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@54eeabe8, arg=5]
[14:14:39,484][INFO ][gridgain-#97%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@39b1ff47, arg=4]
[14:14:39,485][INFO ][gridgain-#98%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1a0283e, arg=3]
[14:14:39,486][INFO ][gridgain-#99%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@31f9b804, arg=2]
[14:14:39,486][INFO ][gridgain-#100%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3a8bd3bb, arg=1]
[14:14:39,487][INFO ][gridgain-#96%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,488][INFO ][gridgain-#98%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,491][INFO ][gridgain-#100%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,491][INFO ][gridgain-#99%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,492][INFO ][gridgain-#97%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,497][INFO ][gridgain-#106%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@54eeabe8, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063582--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063582--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,498][INFO ][gridgain-#106%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1a0283e, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=26269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063586--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063586--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=26269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,499][INFO ][gridgain-#106%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@31f9b804, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=46269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063588--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063588--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=46269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,500][INFO ][gridgain-#106%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3a8bd3bb, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=66269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063590--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063590--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=66269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,500][INFO ][gridgain-#106%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@39b1ff47, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=06269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063584--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063584--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=06269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,502][INFO ][gridgain-#106%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4b90725e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@54eeabe8, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063582--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063582--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@39b1ff47, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=06269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063584--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063584--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=06269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1a0283e, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=26269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063586--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063586--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=26269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@31f9b804, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=46269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063588--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063588--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=46269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3a8bd3bb, sib=GridJobSiblingImpl [sesId=c5269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=66269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063590--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063590--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=66269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,503][INFO ][gridgain-#111%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, gridSize=1, arg=1]
[14:14:39,505][INFO ][gridgain-#112%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@591bfcbe, arg=1]
[14:14:39,506][INFO ][gridgain-#113%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3c6e4ba6, arg=2]
[14:14:39,507][INFO ][gridgain-#114%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5afc0f5, arg=4]
[14:14:39,507][INFO ][gridgain-#115%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@55a517bd, arg=5]
[14:14:39,508][INFO ][gridgain-#116%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6d289e48, arg=3]
[14:14:39,508][INFO ][gridgain-#112%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,509][INFO ][gridgain-#113%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,511][INFO ][gridgain-#115%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,511][INFO ][gridgain-#114%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,511][INFO ][gridgain-#116%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,512][INFO ][gridgain-#121%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@591bfcbe, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063626--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063626--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,513][INFO ][gridgain-#121%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5afc0f5, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063630--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063630--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,513][INFO ][gridgain-#121%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6d289e48, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=29269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063634--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063634--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=29269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,513][INFO ][gridgain-#121%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@55a517bd, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=09269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063632--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063632--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=09269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,514][INFO ][gridgain-#121%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3c6e4ba6, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063628--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063628--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,515][INFO ][gridgain-#121%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@4e0bd5df, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@591bfcbe, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063626--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063626--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@55a517bd, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=09269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063632--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063632--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=09269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5afc0f5, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063630--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063630--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6d289e48, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=29269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063634--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063634--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=29269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3c6e4ba6, sib=GridJobSiblingImpl [sesId=88269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063628--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063628--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c8269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:39,516][INFO ][gridgain-#127%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, gridSize=1, arg=2]
[14:14:39,518][INFO ][gridgain-#128%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@637644c8, arg=5]
[14:14:39,519][INFO ][gridgain-#129%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3fa9b4a4, arg=3]
[14:14:39,519][INFO ][gridgain-#130%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1e929ba3, arg=4]
[14:14:39,520][INFO ][gridgain-#131%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4fe2fe5d, arg=2]
[14:14:39,521][INFO ][gridgain-#132%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6e659812, arg=1]
[14:14:39,521][INFO ][gridgain-#128%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,521][INFO ][gridgain-#130%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,522][INFO ][gridgain-#129%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,522][INFO ][gridgain-#131%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,523][INFO ][gridgain-#132%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,525][INFO ][gridgain-#138%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1e929ba3, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ab269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063674--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063674--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ab269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,526][INFO ][gridgain-#138%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3fa9b4a4, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063672--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063672--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,527][INFO ][gridgain-#138%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4fe2fe5d, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063676--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063676--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,527][INFO ][gridgain-#138%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@637644c8, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063670--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063670--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,528][INFO ][gridgain-#142%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6e659812, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063678--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063678--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=eb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,530][INFO ][gridgain-#142%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@28c4b5f, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1e929ba3, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ab269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063674--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063674--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ab269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3fa9b4a4, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063672--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063672--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@637644c8, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063670--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063670--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6e659812, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063678--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063678--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=eb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4fe2fe5d, sib=GridJobSiblingImpl [sesId=4b269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063676--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063676--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cb269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,531][INFO ][gridgain-#143%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, gridSize=1, arg=3]
[14:14:39,533][INFO ][gridgain-#144%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@44ec366a, arg=5]
[14:14:39,535][INFO ][gridgain-#145%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@377e4cec, arg=4]
[14:14:39,536][INFO ][gridgain-#146%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@12d91987, arg=2]
[14:14:39,537][INFO ][gridgain-#147%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6b1af7bb, arg=3]
[14:14:39,537][INFO ][gridgain-#148%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@54992725, arg=1]
[14:14:39,538][INFO ][gridgain-#144%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,538][INFO ][gridgain-#147%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,539][INFO ][gridgain-#146%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,539][INFO ][gridgain-#145%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,541][INFO ][gridgain-#148%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,543][INFO ][gridgain-#154%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@44ec366a, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063714--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063714--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,543][INFO ][gridgain-#154%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@12d91987, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063718--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063718--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,544][INFO ][gridgain-#154%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6b1af7bb, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063720--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063720--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,544][INFO ][gridgain-#154%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@54992725, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ae269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063722--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063722--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ae269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,545][INFO ][gridgain-#154%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@377e4cec, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063716--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063716--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,546][INFO ][gridgain-#154%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@f8b7298, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@377e4cec, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063716--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063716--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@12d91987, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063718--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063718--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6b1af7bb, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063720--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063720--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@54992725, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ae269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063722--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063722--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ae269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@44ec366a, sib=GridJobSiblingImpl [sesId=0e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063714--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063714--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2e269281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,547][INFO ][gridgain-#159%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, gridSize=1, arg=4]
[14:14:39,549][INFO ][gridgain-#160%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@742136c6, arg=3]
[14:14:39,550][INFO ][gridgain-#161%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5e8518d4, arg=2]
[14:14:39,550][INFO ][gridgain-#162%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1277f040, arg=5]
[14:14:39,551][INFO ][gridgain-#163%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@30933cba, arg=4]
[14:14:39,551][INFO ][gridgain-#164%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3bbe9a50, arg=1]
[14:14:39,552][INFO ][gridgain-#161%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,552][INFO ][gridgain-#162%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,553][INFO ][gridgain-#160%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,553][INFO ][gridgain-#163%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,553][INFO ][gridgain-#164%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,554][INFO ][gridgain-#103%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5e8518d4, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063760--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063760--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=01369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,554][INFO ][gridgain-#107%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1277f040, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063762--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063762--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=21369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,555][INFO ][gridgain-#107%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@742136c6, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063758--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063758--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,555][INFO ][gridgain-#107%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3bbe9a50, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063766--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063766--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=61369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,555][INFO ][gridgain-#107%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@30933cba, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063764--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063764--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=41369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,557][INFO ][gridgain-#107%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@1330b13c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@30933cba, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063764--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063764--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=41369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3bbe9a50, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063766--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063766--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=61369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1277f040, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063762--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063762--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=21369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@742136c6, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063758--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063758--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5e8518d4, sib=GridJobSiblingImpl [sesId=c0369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063760--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063760--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=01369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,557][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] >>> Stopping test: testCancelSiblings in 89 ms <<<
[14:14:39,560][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] >>> Starting test: testMultiThreaded <<<
[14:14:39,566][INFO ][gridgain-#166%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, gridSize=1, arg=2]
[14:14:39,569][INFO ][gridgain-#168%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, gridSize=1, arg=3]
[14:14:39,568][INFO ][gridgain-#76%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, gridSize=1, arg=1]
[14:14:39,566][INFO ][gridgain-#165%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, gridSize=1, arg=0]
[14:14:39,573][INFO ][gridgain-#166%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3295a253, arg=3]
[14:14:39,568][INFO ][gridgain-#167%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Splitting jobs [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, gridSize=1, arg=4]
[14:14:39,573][INFO ][gridgain-#76%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4e4b35ef, arg=3]
[14:14:39,577][INFO ][gridgain-#168%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1a383244, arg=2]
[14:14:39,577][INFO ][gridgain-#167%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5e26efd3, arg=3]
[14:14:39,577][INFO ][gridgain-#165%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4ac1df71, arg=5]
[14:14:39,577][INFO ][gridgain-#75%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5ebc448b, arg=1]
[14:14:39,577][INFO ][gridgain-#77%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4f1c5c88, arg=4]
[14:14:39,577][INFO ][gridgain-#78%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@11768b0a, arg=3]
[14:14:39,577][INFO ][gridgain-#79%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@7a0adf91, arg=2]
[14:14:39,577][INFO ][gridgain-#96%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6dadfbe3, arg=4]
[14:14:39,577][INFO ][gridgain-#98%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@7dd41116, arg=1]
[14:14:39,577][INFO ][gridgain-#100%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@2bc20611, arg=4]
[14:14:39,577][INFO ][gridgain-#111%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@638e8fbd, arg=5]
[14:14:39,577][INFO ][gridgain-#112%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@71292d12, arg=2]
[14:14:39,578][INFO ][gridgain-#114%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4eff0d4b, arg=5]
[14:14:39,577][INFO ][gridgain-#80%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5fdbe72f, arg=5]
[14:14:39,578][INFO ][gridgain-#79%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException]
[14:14:39,578][INFO ][gridgain-#165%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException]
[14:14:39,578][INFO ][gridgain-#115%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@72ba007e, arg=2]
[14:14:39,578][INFO ][gridgain-#76%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,577][INFO ][gridgain-#97%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@243e8ad1, arg=5]
[14:14:39,577][INFO ][gridgain-#99%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@2f6e4ddd, arg=1]
[14:14:39,580][INFO ][gridgain-#96%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException]
[14:14:39,577][INFO ][gridgain-#95%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@39742c56, arg=2]
[14:14:39,580][INFO ][gridgain-#131%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@464e32c8, arg=3]
[14:14:39,580][INFO ][gridgain-#166%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException]
[14:14:39,578][INFO ][gridgain-#79%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5f6c1bce, arg=1]
[14:14:39,581][INFO ][gridgain-#167%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,578][INFO ][gridgain-#168%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException]
[14:14:39,578][INFO ][gridgain-#75%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException]
[14:14:39,578][INFO ][gridgain-#80%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,578][INFO ][gridgain-#127%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@28c13406, arg=4]
[14:14:39,578][INFO ][gridgain-#116%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@37e80c87, arg=4]
[14:14:39,578][INFO ][gridgain-#98%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,585][INFO ][gridgain-#78%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException]
[14:14:39,578][INFO ][gridgain-#113%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@751201a1, arg=1]
[14:14:39,578][INFO ][gridgain-#77%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException]
[14:14:39,585][INFO ][gridgain-#115%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException]
[14:14:39,585][INFO ][gridgain-#99%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException]
[14:14:39,585][INFO ][gridgain-#127%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,584][INFO ][gridgain-#149%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5e26efd3, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063814--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063814--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=64369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,584][INFO ][gridgain-#136%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6dadfbe3, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063825--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063825--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=15369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,582][INFO ][gridgain-#133%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@7a0adf91, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=65369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063830--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063830--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=65369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,582][INFO ][gridgain-#95%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException]
[14:14:39,582][INFO ][gridgain-#100%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,582][INFO ][gridgain-#79%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,582][INFO ][gridgain-#114%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,587][INFO ][gridgain-#136%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3295a253, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063810--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063810--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=24369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,586][INFO ][gridgain-#111%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,586][INFO ][gridgain-#112%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,586][INFO ][gridgain-#131%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,586][INFO ][gridgain-#116%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,586][INFO ][gridgain-#113%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=1, e=java.lang.InterruptedException: sleep interrupted]
[14:14:39,586][INFO ][gridgain-#105%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@28c13406, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d6369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063853--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063853--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d6369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,585][INFO ][gridgain-#97%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException]
[14:14:39,588][INFO ][gridgain-#133%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4ac1df71, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063824--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063824--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=05369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,588][INFO ][gridgain-#124%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@638e8fbd, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063866--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063866--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,588][INFO ][gridgain-#136%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5ebc448b, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=74369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063815--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063815--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=74369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,588][INFO ][gridgain-#119%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@2bc20611, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063841--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063841--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=16369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,591][INFO ][gridgain-#124%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@71292d12, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063868--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063868--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,590][INFO ][gridgain-#105%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@11768b0a, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063834--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063834--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,590][INFO ][gridgain-#133%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4e4b35ef, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063816--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063816--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=84369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,591][INFO ][gridgain-#105%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@72ba007e, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=06369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063840--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063840--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=06369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,591][INFO ][gridgain-#124%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@464e32c8, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063875--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063875--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=38369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,592][INFO ][gridgain-#119%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5f6c1bce, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=66369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063846--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063846--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=66369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,592][INFO ][gridgain-#105%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@2f6e4ddd, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063836--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063836--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,593][INFO ][gridgain-#124%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@37e80c87, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063873--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063873--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=18369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,592][INFO ][gridgain-#136%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5fdbe72f, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063819--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063819--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,593][INFO ][gridgain-#105%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@243e8ad1, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063838--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063838--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,593][INFO ][gridgain-#124%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@751201a1, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063871--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063871--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,593][INFO ][gridgain-#136%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1a383244, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063812--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063812--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=44369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,593][INFO ][gridgain-#119%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4eff0d4b, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063843--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063843--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=36369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,592][INFO ][gridgain-#133%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@7dd41116, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=85369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063832--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063832--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=85369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,594][INFO ][gridgain-#119%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@39742c56, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063820--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063820--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,594][INFO ][gridgain-#124%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@30e2d858, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@751201a1, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063871--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063871--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@37e80c87, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063873--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063873--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=18369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@638e8fbd, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063866--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063866--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@464e32c8, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063875--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063875--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=38369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@71292d12, sib=GridJobSiblingImpl [sesId=c3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063868--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063868--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c7369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,595][INFO ][gridgain-#133%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Received job result [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, result=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4f1c5c88, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063828--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063828--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=false], jobCtx=GridJobContextImpl [jobId=45369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]
[14:14:39,595][INFO ][gridgain-#136%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@2ac9f93f, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5ebc448b, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=74369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063815--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063815--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=74369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@3295a253, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063810--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063810--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=24369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@6dadfbe3, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063825--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063825--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=15369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5fdbe72f, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063819--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063819--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@1a383244, sib=GridJobSiblingImpl [sesId=93369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063812--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063812--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=44369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:39,595][INFO ][gridgain-#105%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@320aad0b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@11768b0a, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063834--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063834--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@72ba007e, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=06369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063840--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063840--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=06369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@28c13406, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d6369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063853--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063853--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d6369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@243e8ad1, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063838--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063838--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@2f6e4ddd, sib=GridJobSiblingImpl [sesId=83369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063836--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063836--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c5369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,596][INFO ][gridgain-#133%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@7ce9927a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@7dd41116, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=85369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063832--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063832--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=85369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4f1c5c88, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063828--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063828--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=45369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@7a0adf91, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=65369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063830--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063830--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=65369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4ac1df71, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063824--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063824--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=05369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4e4b35ef, sib=GridJobSiblingImpl [sesId=a3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063816--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063816--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,597][INFO ][gridgain-#119%session.GridSessionCancelSiblingsFromFutureSelfTest%][GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask@257ccb2f, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@39742c56, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063820--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063820--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5f6c1bce, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=66369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063846--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063846--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=66369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@2bc20611, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063841--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063841--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@5e26efd3, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063814--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063814--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=64369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask$1@4eff0d4b, sib=GridJobSiblingImpl [sesId=b3369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320063843--8947096952782337528-8366272608718832957, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320063843--8947096952782337528-8366272608718832957, nodeId=741af89c-78c4-453d-83d5-86b9a66dca08, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36369281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=741af89c-78c4-453d-83d5-86b9a66dca08, state=READY, lastHeartbeat=1353320078398, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55020, startTime=1353320078398], p=GridNodePredicate [ids=[741af89c-78c4-453d-83d5-86b9a66dca08]], isLoc=true, hash=694612240, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:39,597][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest] >>> Stopping test: testMultiThreaded in 37 ms <<<
[14:14:40,676][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:40,677][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:40,687][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320079467, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=95269281b31-741af89c-78c4-453d-83d5-86b9a66dca08, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromFutureSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:40,691][INFO ][main][GridSessionCancelSiblingsFromFutureSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionCancelSiblingsFromFutureSelfTest
>>> Grid uptime: 00:00:01:228
[14:14:40,706][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:40,706][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] << Enterprise Edition >>
[14:14:40,706][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Config URL: n/a
[14:14:40,707][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Daemon mode: off
[14:14:40,707][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:40,707][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:40,707][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:40,707][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:40,707][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:40,707][WARN ][main][GridSessionCancelSiblingsFromJobSelfTest] SMTP is not configured - email notifications are off.
[14:14:40,707][WARN ][main][GridSessionCancelSiblingsFromJobSelfTest] Cache is not configured - data grid is off.
[14:14:40,708][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:40,708][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:40,708][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Enabled local MACs: C8600068582C
[14:14:41,212][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:41,224][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45030, locHost=/192.168.2.14]
[14:14:41,256][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] Security status [authentication=on, secure-session=on]
[14:14:41,260][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:41,260][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55030
[14:14:41,260][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50003
[14:14:41,261][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260]
[14:14:41,262][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xD204A7D4]
[14:14:41,263][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:42,295][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:42,296][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:42,296][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:42,296][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:42,296][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:42,301][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionCancelSiblingsFromJobSelfTest
>>> Local node [ID=8993B4E0-A3E8-4C20-A054-CF7C39915903, order=1353320081250]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45030 UDP:50003 TCP:55030
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:42,301][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] >>> Starting test: testCancelSiblings <<<
[14:14:42,304][INFO ][gridgain-#189%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@882dfc, gridSize=1, arg=0]
[14:14:42,309][INFO ][gridgain-#190%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5b8b0b4a, arg=3]
[14:14:42,310][INFO ][gridgain-#191%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@51df3082, arg=1]
[14:14:42,310][INFO ][gridgain-#192%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@4a5afcb1, arg=5]
[14:14:42,311][INFO ][gridgain-#193%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@592563a, arg=4]
[14:14:42,312][INFO ][gridgain-#194%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@13e9d0cc, arg=2]
[14:14:42,312][INFO ][gridgain-#191%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=e1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,312][INFO ][gridgain-#190%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,312][INFO ][gridgain-#192%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,314][INFO ][gridgain-#193%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,314][INFO ][gridgain-#191%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=3], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=a1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082296, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=42469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,314][INFO ][gridgain-#194%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,317][INFO ][gridgain-#203%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@882dfc, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5b8b0b4a, sib=GridJobSiblingImpl [sesId=a1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064028--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064028--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@51df3082, sib=GridJobSiblingImpl [sesId=a1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064030--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064030--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@4a5afcb1, sib=GridJobSiblingImpl [sesId=a1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064032--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064032--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@592563a, sib=GridJobSiblingImpl [sesId=a1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064034--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064034--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@13e9d0cc, sib=GridJobSiblingImpl [sesId=a1469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064036--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064036--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=42469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:42,319][INFO ][gridgain-#204%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@11652e61, gridSize=1, arg=1]
[14:14:42,320][INFO ][gridgain-#205%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@24226649, arg=2]
[14:14:42,321][INFO ][gridgain-#206%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@9c7eb33, arg=1]
[14:14:42,321][INFO ][gridgain-#207%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@575e6691, arg=5]
[14:14:42,322][INFO ][gridgain-#208%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@65559ba8, arg=4]
[14:14:42,323][INFO ][gridgain-#209%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@4e695527, arg=3]
[14:14:42,323][INFO ][gridgain-#206%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=94469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,324][INFO ][gridgain-#205%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,324][INFO ][gridgain-#207%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,325][INFO ][gridgain-#208%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,325][INFO ][gridgain-#206%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=4], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=54469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082316, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=f4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,326][INFO ][gridgain-#209%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,329][INFO ][gridgain-#218%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@11652e61, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@575e6691, sib=GridJobSiblingImpl [sesId=54469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064075--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064075--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@9c7eb33, sib=GridJobSiblingImpl [sesId=54469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=94469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064073--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064073--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=94469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@4e695527, sib=GridJobSiblingImpl [sesId=54469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064079--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064079--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@65559ba8, sib=GridJobSiblingImpl [sesId=54469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064077--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064077--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d4469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@24226649, sib=GridJobSiblingImpl [sesId=54469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=74469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064071--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064071--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=74469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:42,330][INFO ][gridgain-#219%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@11f13b08, gridSize=1, arg=2]
[14:14:42,332][INFO ][gridgain-#220%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@553abee1, arg=4]
[14:14:42,333][INFO ][gridgain-#221%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6684917a, arg=2]
[14:14:42,333][INFO ][gridgain-#222%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3c9d17e, arg=5]
[14:14:42,334][INFO ][gridgain-#223%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@96b152b, arg=3]
[14:14:42,334][INFO ][gridgain-#224%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@745a936b, arg=1]
[14:14:42,335][INFO ][gridgain-#224%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=a7469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,335][INFO ][gridgain-#220%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,335][INFO ][gridgain-#221%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,337][INFO ][gridgain-#224%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=4], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=07469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082326, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=a7469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,338][INFO ][gridgain-#222%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,340][INFO ][gridgain-#223%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,343][INFO ][gridgain-#233%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@11f13b08, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@553abee1, sib=GridJobSiblingImpl [sesId=07469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=27469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064114--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064114--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=27469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@745a936b, sib=GridJobSiblingImpl [sesId=07469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a7469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064122--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064122--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a7469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@96b152b, sib=GridJobSiblingImpl [sesId=07469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=87469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064120--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064120--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=87469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6684917a, sib=GridJobSiblingImpl [sesId=07469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=47469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064116--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064116--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=47469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3c9d17e, sib=GridJobSiblingImpl [sesId=07469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=67469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064118--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064118--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=67469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:42,344][INFO ][gridgain-#234%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@3067e236, gridSize=1, arg=3]
[14:14:42,346][INFO ][gridgain-#235%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6d386751, arg=3]
[14:14:42,346][INFO ][gridgain-#236%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@7434600d, arg=1]
[14:14:42,347][INFO ][gridgain-#237%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@12072edc, arg=4]
[14:14:42,348][INFO ][gridgain-#238%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1a8e3115, arg=2]
[14:14:42,348][INFO ][gridgain-#239%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@159576c3, arg=5]
[14:14:42,349][INFO ][gridgain-#236%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=f9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,349][INFO ][gridgain-#235%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,350][INFO ][gridgain-#237%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,350][INFO ][gridgain-#236%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=5], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=b9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082336, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=5a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,351][INFO ][gridgain-#238%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,351][INFO ][gridgain-#239%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,359][INFO ][gridgain-#248%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@3067e236, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@159576c3, sib=GridJobSiblingImpl [sesId=b9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064165--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064165--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@7434600d, sib=GridJobSiblingImpl [sesId=b9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064159--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064159--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1a8e3115, sib=GridJobSiblingImpl [sesId=b9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064163--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064163--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6d386751, sib=GridJobSiblingImpl [sesId=b9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064157--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064157--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@12072edc, sib=GridJobSiblingImpl [sesId=b9469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064161--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064161--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1a469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:42,361][INFO ][gridgain-#249%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@7615b758, gridSize=1, arg=4]
[14:14:42,363][INFO ][gridgain-#250%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@2b891172, arg=4]
[14:14:42,363][INFO ][gridgain-#251%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6913e371, arg=2]
[14:14:42,364][INFO ][gridgain-#252%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@18b9459c, arg=3]
[14:14:42,364][INFO ][gridgain-#253%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@33d869b2, arg=5]
[14:14:42,365][INFO ][gridgain-#254%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@bb82ef9, arg=1]
[14:14:42,365][INFO ][gridgain-#254%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=0d469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,366][INFO ][gridgain-#250%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,366][INFO ][gridgain-#251%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,367][INFO ][gridgain-#253%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,367][INFO ][gridgain-#252%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,367][INFO ][gridgain-#254%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=4], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=6c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082357, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=0d469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,370][INFO ][gridgain-#258%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@7615b758, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@18b9459c, sib=GridJobSiblingImpl [sesId=6c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cc469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064204--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064204--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cc469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@33d869b2, sib=GridJobSiblingImpl [sesId=6c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ec469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064206--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064206--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ec469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@bb82ef9, sib=GridJobSiblingImpl [sesId=6c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064208--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064208--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0d469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@2b891172, sib=GridJobSiblingImpl [sesId=6c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064200--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064200--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6913e371, sib=GridJobSiblingImpl [sesId=6c469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ac469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064202--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064202--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ac469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:42,371][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] >>> Stopping test: testCancelSiblings in 70 ms <<<
[14:14:42,376][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] >>> Starting test: testMultiThreaded <<<
[14:14:42,379][INFO ][gridgain-#260%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@42b7141a, gridSize=1, arg=1]
[14:14:42,380][INFO ][gridgain-#259%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@655d7752, gridSize=1, arg=0]
[14:14:42,381][INFO ][gridgain-#170%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@24dbf79d, arg=5]
[14:14:42,381][INFO ][gridgain-#169%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@345e6a13, gridSize=1, arg=4]
[14:14:42,381][INFO ][gridgain-#172%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@109aca82, arg=2]
[14:14:42,381][INFO ][gridgain-#261%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@13af9d1c, gridSize=1, arg=2]
[14:14:42,383][INFO ][gridgain-#260%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@188d92e, arg=1]
[14:14:42,383][INFO ][gridgain-#259%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3ff5d699, arg=4]
[14:14:42,383][INFO ][gridgain-#262%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@54ede19e, gridSize=1, arg=3]
[14:14:42,384][INFO ][gridgain-#169%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1e753c22, arg=4]
[14:14:42,384][INFO ][gridgain-#171%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5e73e0d, arg=1]
[14:14:42,384][INFO ][gridgain-#174%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5fb08cf3, arg=3]
[14:14:42,384][INFO ][gridgain-#173%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@b4ef239, arg=3]
[14:14:42,385][INFO ][gridgain-#189%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@22beebcd, arg=5]
[14:14:42,385][INFO ][gridgain-#193%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1555bd22, arg=5]
[14:14:42,385][INFO ][gridgain-#191%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@69ea25aa, arg=2]
[14:14:42,385][INFO ][gridgain-#205%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@669d2f26, arg=4]
[14:14:42,385][INFO ][gridgain-#190%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3f6a5bcb, arg=2]
[14:14:42,385][INFO ][gridgain-#208%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@7bc1a68b, arg=3]
[14:14:42,385][INFO ][gridgain-#209%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1958aeed, arg=3]
[14:14:42,385][INFO ][gridgain-#207%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6c0081fb, arg=4]
[14:14:42,385][INFO ][gridgain-#261%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@22652552, arg=3]
[14:14:42,386][INFO ][gridgain-#224%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@191e0eb, arg=5]
[14:14:42,385][INFO ][gridgain-#194%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@59829c6b, arg=5]
[14:14:42,385][INFO ][gridgain-#204%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6e73a35c, arg=1]
[14:14:42,385][INFO ][gridgain-#192%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3fcb2dd1, arg=2]
[14:14:42,386][INFO ][gridgain-#204%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=b1569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,386][INFO ][gridgain-#171%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=60569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,385][INFO ][gridgain-#206%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@2ff40e1f, arg=1]
[14:14:42,386][INFO ][gridgain-#206%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=a2569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,387][INFO ][gridgain-#204%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=28], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=b0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082377, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=d1569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,385][INFO ][gridgain-#260%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=8f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,388][INFO ][gridgain-#206%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=28], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=3f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082377, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=a2569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,387][INFO ][gridgain-#171%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=28], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=1f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082377, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=a0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,386][INFO ][gridgain-#223%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@4d7777a1, arg=1]
[14:14:42,388][INFO ][gridgain-#260%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=26], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=2f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082377, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=ff469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,390][INFO ][gridgain-#234%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5e4f12c2, arg=2]
[14:14:42,390][INFO ][gridgain-#235%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@d44569b, arg=4]
[14:14:42,390][INFO ][gridgain-#223%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job one is proceeding [jobId=c3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,391][INFO ][gridgain-#223%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=26], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sesId=5f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320082377, endTime=9223372036854775807, taskNodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=14569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:42,391][INFO ][gridgain-#193%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,392][INFO ][gridgain-#191%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,392][INFO ][gridgain-#172%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,392][INFO ][gridgain-#207%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,392][INFO ][gridgain-#169%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,392][INFO ][gridgain-#173%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,392][INFO ][gridgain-#189%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,393][INFO ][gridgain-#192%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException]
[14:14:42,393][INFO ][gridgain-#170%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,393][INFO ][gridgain-#174%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,394][INFO ][gridgain-#209%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,394][INFO ][gridgain-#224%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,394][INFO ][gridgain-#190%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,394][INFO ][gridgain-#234%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,394][INFO ][gridgain-#235%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,395][INFO ][gridgain-#208%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,395][INFO ][gridgain-#194%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,396][INFO ][gridgain-#259%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,396][INFO ][gridgain-#205%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,396][INFO ][gridgain-#261%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:42,398][INFO ][gridgain-#231%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@13af9d1c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3fcb2dd1, sib=GridJobSiblingImpl [sesId=3f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064288--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064288--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@59829c6b, sib=GridJobSiblingImpl [sesId=3f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064291--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064291--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=32569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@2ff40e1f, sib=GridJobSiblingImpl [sesId=3f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a2569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064298--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064298--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a2569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@7bc1a68b, sib=GridJobSiblingImpl [sesId=3f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=82569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064296--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064296--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=82569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@669d2f26, sib=GridJobSiblingImpl [sesId=3f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064294--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064294--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=62569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:42,400][INFO ][gridgain-#211%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@54ede19e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1958aeed, sib=GridJobSiblingImpl [sesId=5f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064311--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064311--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=73569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@4d7777a1, sib=GridJobSiblingImpl [sesId=5f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064316--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064316--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5e4f12c2, sib=GridJobSiblingImpl [sesId=5f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064319--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064319--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@d44569b, sib=GridJobSiblingImpl [sesId=5f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=14569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064321--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064321--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=14569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@191e0eb, sib=GridJobSiblingImpl [sesId=5f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064314--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064314--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a3569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:42,402][INFO ][gridgain-#202%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@345e6a13, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1555bd22, sib=GridJobSiblingImpl [sesId=b0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=71569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064279--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064279--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=71569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6c0081fb, sib=GridJobSiblingImpl [sesId=b0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d1569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064285--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064285--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d1569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@b4ef239, sib=GridJobSiblingImpl [sesId=b0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=31569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064275--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064275--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=31569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@69ea25aa, sib=GridJobSiblingImpl [sesId=b0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=91569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064281--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064281--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=91569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@6e73a35c, sib=GridJobSiblingImpl [sesId=b0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b1569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064283--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064283--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b1569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:42,403][INFO ][gridgain-#200%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@655d7752, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@109aca82, sib=GridJobSiblingImpl [sesId=1f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064258--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064258--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=20569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@1e753c22, sib=GridJobSiblingImpl [sesId=1f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064260--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064260--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=40569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5e73e0d, sib=GridJobSiblingImpl [sesId=1f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064262--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064262--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=60569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@22beebcd, sib=GridJobSiblingImpl [sesId=1f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064264--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064264--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=80569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@22652552, sib=GridJobSiblingImpl [sesId=1f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064266--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064266--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a0569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:42,404][INFO ][gridgain-#255%session.GridSessionCancelSiblingsFromJobSelfTest%][GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask@42b7141a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@188d92e, sib=GridJobSiblingImpl [sesId=2f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064248--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064248--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3f6a5bcb, sib=GridJobSiblingImpl [sesId=2f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064255--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064255--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ff469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@3ff5d699, sib=GridJobSiblingImpl [sesId=2f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064251--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064251--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bf469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@24dbf79d, sib=GridJobSiblingImpl [sesId=2f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064246--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064246--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask$1@5fb08cf3, sib=GridJobSiblingImpl [sesId=2f469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064253--6893656997148665597--8533277992021373920, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064253--6893656997148665597--8533277992021373920, nodeId=8993b4e0-a3e8-4c20-a054-cf7c39915903, isJobDone=true], jobCtx=GridJobContextImpl [jobId=df469281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8993b4e0-a3e8-4c20-a054-cf7c39915903, state=READY, lastHeartbeat=1353320081260, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55030, startTime=1353320081260], p=GridNodePredicate [ids=[8993b4e0-a3e8-4c20-a054-cf7c39915903]], isLoc=true, hash=-1279365441, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:42,404][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest] >>> Stopping test: testMultiThreaded in 28 ms <<<
[14:14:43,460][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:43,461][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:43,469][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320082296, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=71469281b31-8993b4e0-a3e8-4c20-a054-cf7c39915903, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromJobSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:43,473][INFO ][main][GridSessionCancelSiblingsFromJobSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionCancelSiblingsFromJobSelfTest
>>> Grid uptime: 00:00:01:170
[14:14:43,487][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:43,487][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] << Enterprise Edition >>
[14:14:43,487][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Config URL: n/a
[14:14:43,487][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Daemon mode: off
[14:14:43,487][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:43,488][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:43,488][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:43,488][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:43,488][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:43,488][WARN ][main][GridSessionCancelSiblingsFromTaskSelfTest] SMTP is not configured - email notifications are off.
[14:14:43,488][WARN ][main][GridSessionCancelSiblingsFromTaskSelfTest] Cache is not configured - data grid is off.
[14:14:43,488][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:43,489][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:43,489][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Enabled local MACs: C8600068582C
[14:14:43,992][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:44,001][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45040, locHost=/192.168.2.14]
[14:14:44,044][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] Security status [authentication=on, secure-session=on]
[14:14:44,047][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:44,047][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55040
[14:14:44,047][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50004
[14:14:44,048][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041]
[14:14:44,049][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x93C8729E]
[14:14:44,049][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:45,080][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:45,082][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:45,082][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:45,082][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:45,082][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:45,087][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionCancelSiblingsFromTaskSelfTest
>>> Local node [ID=D7B39FFC-59FF-4354-B89A-F9F90A8D786C, order=1353320084041]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45040 UDP:50004 TCP:55040
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:45,087][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] >>> Starting test: testCancelSiblings <<<
[14:14:45,092][INFO ][gridgain-#283%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@58c9e870, gridSize=1, arg=0]
[14:14:45,096][INFO ][gridgain-#284%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@13bde392, arg=4]
[14:14:45,097][INFO ][gridgain-#285%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@67ee75a5, arg=2]
[14:14:45,097][INFO ][gridgain-#286%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@17a7905e, arg=5]
[14:14:45,098][INFO ][gridgain-#287%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@586dd8f1, arg=3]
[14:14:45,099][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@56781dd4, arg=1]
[14:14:45,099][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,099][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=6], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=ec569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085087, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=8d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,101][INFO ][gridgain-#284%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,101][INFO ][gridgain-#285%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,101][INFO ][gridgain-#287%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,102][INFO ][gridgain-#286%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,104][INFO ][gridgain-#296%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@58c9e870, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@56781dd4, sib=GridJobSiblingImpl [sesId=ec569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064472--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064472--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@586dd8f1, sib=GridJobSiblingImpl [sesId=ec569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064470--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064470--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@17a7905e, sib=GridJobSiblingImpl [sesId=ec569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064468--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064468--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@67ee75a5, sib=GridJobSiblingImpl [sesId=ec569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064466--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064466--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@13bde392, sib=GridJobSiblingImpl [sesId=ec569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064464--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064464--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0d569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:45,105][INFO ][gridgain-#298%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@55672313, gridSize=1, arg=1]
[14:14:45,107][INFO ][gridgain-#299%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1a2b2cf8, arg=4]
[14:14:45,108][INFO ][gridgain-#300%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@8955b34, arg=5]
[14:14:45,108][INFO ][gridgain-#301%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@662fe032, arg=1]
[14:14:45,109][INFO ][gridgain-#302%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@231a6631, arg=3]
[14:14:45,109][INFO ][gridgain-#303%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@51282707, arg=2]
[14:14:45,110][INFO ][gridgain-#301%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,110][INFO ][gridgain-#301%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=6], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=9f569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085097, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=30669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,111][INFO ][gridgain-#299%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,111][INFO ][gridgain-#300%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,111][INFO ][gridgain-#302%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,112][INFO ][gridgain-#303%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,115][INFO ][gridgain-#312%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@55672313, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1a2b2cf8, sib=GridJobSiblingImpl [sesId=9f569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064507--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064507--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bf569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@662fe032, sib=GridJobSiblingImpl [sesId=9f569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064511--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064511--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ff569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@51282707, sib=GridJobSiblingImpl [sesId=9f569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064515--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064515--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=30669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@8955b34, sib=GridJobSiblingImpl [sesId=9f569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064509--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064509--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=df569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@231a6631, sib=GridJobSiblingImpl [sesId=9f569281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=10669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064513--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064513--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=10669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:45,116][INFO ][gridgain-#313%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@2bc7510d, gridSize=1, arg=2]
[14:14:45,117][INFO ][gridgain-#314%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@77c7bee2, arg=3]
[14:14:45,118][INFO ][gridgain-#315%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@75a06ec2, arg=2]
[14:14:45,119][INFO ][gridgain-#316%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@44f757b9, arg=5]
[14:14:45,119][INFO ][gridgain-#317%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@5ac524dd, arg=4]
[14:14:45,120][INFO ][gridgain-#318%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2a9a42ef, arg=1]
[14:14:45,120][INFO ][gridgain-#318%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,120][INFO ][gridgain-#318%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=6], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=42669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085108, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=e2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,121][INFO ][gridgain-#314%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,122][INFO ][gridgain-#316%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,122][INFO ][gridgain-#315%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,123][INFO ][gridgain-#317%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,125][INFO ][gridgain-#325%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@2bc7510d, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@75a06ec2, sib=GridJobSiblingImpl [sesId=42669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=82669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064552--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064552--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=82669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@44f757b9, sib=GridJobSiblingImpl [sesId=42669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064554--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064554--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@77c7bee2, sib=GridJobSiblingImpl [sesId=42669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064550--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064550--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=62669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@5ac524dd, sib=GridJobSiblingImpl [sesId=42669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064556--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064556--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2a9a42ef, sib=GridJobSiblingImpl [sesId=42669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064558--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064558--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e2669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:45,127][INFO ][gridgain-#328%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@2a973678, gridSize=1, arg=3]
[14:14:45,128][INFO ][gridgain-#329%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@42bc5245, arg=3]
[14:14:45,129][INFO ][gridgain-#330%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@689ba632, arg=2]
[14:14:45,129][INFO ][gridgain-#331%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1c6250d2, arg=5]
[14:14:45,130][INFO ][gridgain-#332%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@59bd523d, arg=4]
[14:14:45,131][INFO ][gridgain-#333%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2d791620, arg=1]
[14:14:45,131][INFO ][gridgain-#333%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,131][INFO ][gridgain-#333%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=6], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=f4669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085118, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=95669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,132][INFO ][gridgain-#329%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,133][INFO ][gridgain-#330%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,133][INFO ][gridgain-#332%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,133][INFO ][gridgain-#331%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,136][INFO ][gridgain-#342%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@2a973678, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2d791620, sib=GridJobSiblingImpl [sesId=f4669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=95669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064601--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064601--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=95669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@689ba632, sib=GridJobSiblingImpl [sesId=f4669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=35669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064595--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064595--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=35669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@59bd523d, sib=GridJobSiblingImpl [sesId=f4669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=75669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064599--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064599--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=75669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1c6250d2, sib=GridJobSiblingImpl [sesId=f4669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=55669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064597--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064597--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=55669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@42bc5245, sib=GridJobSiblingImpl [sesId=f4669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064593--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064593--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=15669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:45,137][INFO ][gridgain-#343%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@3ca1d92a, gridSize=1, arg=4]
[14:14:45,139][INFO ][gridgain-#344%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@333cb1eb, arg=4]
[14:14:45,139][INFO ][gridgain-#345%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@70a6aa31, arg=2]
[14:14:45,140][INFO ][gridgain-#346%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@55c4d594, arg=5]
[14:14:45,140][INFO ][gridgain-#347%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@25b8737f, arg=1]
[14:14:45,141][INFO ][gridgain-#348%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@4defb0be, arg=3]
[14:14:45,141][INFO ][gridgain-#347%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,142][INFO ][gridgain-#347%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=6], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=a7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085128, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=48669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,143][INFO ][gridgain-#344%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,143][INFO ][gridgain-#346%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,143][INFO ][gridgain-#345%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,144][INFO ][gridgain-#348%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,146][INFO ][gridgain-#293%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@3ca1d92a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@25b8737f, sib=GridJobSiblingImpl [sesId=a7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=28669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064642--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064642--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=28669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@55c4d594, sib=GridJobSiblingImpl [sesId=a7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=08669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064640--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064640--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=08669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@70a6aa31, sib=GridJobSiblingImpl [sesId=a7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064638--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064638--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@4defb0be, sib=GridJobSiblingImpl [sesId=a7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=48669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064644--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064644--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=48669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@333cb1eb, sib=GridJobSiblingImpl [sesId=a7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064636--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064636--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c7669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:45,147][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] >>> Stopping test: testCancelSiblings in 60 ms <<<
[14:14:45,152][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] >>> Starting test: testMultiThreaded <<<
[14:14:45,155][INFO ][gridgain-#354%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@4d885088, gridSize=1, arg=1]
[14:14:45,155][INFO ][gridgain-#353%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@420a52f, gridSize=1, arg=0]
[14:14:45,155][INFO ][gridgain-#355%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@4dfd245f, gridSize=1, arg=2]
[14:14:45,155][INFO ][gridgain-#263%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@2738ef1d, gridSize=1, arg=4]
[14:14:45,156][INFO ][gridgain-#264%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@7b3cb2c6, arg=3]
[14:14:45,157][INFO ][gridgain-#265%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@ada6d09, arg=5]
[14:14:45,157][INFO ][gridgain-#266%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@3e5d9d90, arg=5]
[14:14:45,157][INFO ][gridgain-#268%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@20f5e814, arg=5]
[14:14:45,157][INFO ][gridgain-#267%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2b49a2c8, arg=3]
[14:14:45,157][INFO ][gridgain-#283%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@265f00f9, arg=4]
[14:14:45,157][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2876b359, arg=1]
[14:14:45,158][INFO ][gridgain-#284%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@4e0add57, arg=1]
[14:14:45,159][INFO ][gridgain-#263%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2a68097d, arg=3]
[14:14:45,159][INFO ][gridgain-#353%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@6b482747, arg=2]
[14:14:45,159][INFO ][gridgain-#285%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1447034b, arg=5]
[14:14:45,159][INFO ][gridgain-#287%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@404fe94c, arg=2]
[14:14:45,159][INFO ][gridgain-#298%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@42293b53, arg=4]
[14:14:45,159][INFO ][gridgain-#301%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@741378ec, arg=4]
[14:14:45,159][INFO ][gridgain-#286%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@8f8acd0, arg=4]
[14:14:45,159][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,160][INFO ][gridgain-#356%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@532996d6, gridSize=1, arg=3]
[14:14:45,160][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=24], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=9a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085148, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=3d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,159][INFO ][gridgain-#299%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@a2c6f70, arg=1]
[14:14:45,161][INFO ][gridgain-#299%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,159][INFO ][gridgain-#300%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@7e199049, arg=3]
[14:14:45,161][INFO ][gridgain-#268%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,161][INFO ][gridgain-#299%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=24], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=5a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085148, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=cc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,161][INFO ][gridgain-#287%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,160][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@6f5e0eab, arg=2]
[14:14:45,161][INFO ][gridgain-#263%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,161][INFO ][gridgain-#303%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1a752144, arg=1]
[14:14:45,162][INFO ][gridgain-#284%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,162][INFO ][gridgain-#284%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=20], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=7a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085148, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=6d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,163][INFO ][gridgain-#266%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,164][INFO ][gridgain-#301%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException]
[14:14:45,164][INFO ][gridgain-#288%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,164][INFO ][gridgain-#298%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,164][INFO ][gridgain-#354%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@7fdb04ed, arg=2]
[14:14:45,165][INFO ][gridgain-#285%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException]
[14:14:45,165][INFO ][gridgain-#286%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException]
[14:14:45,166][INFO ][gridgain-#267%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,166][INFO ][gridgain-#316%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@8746d23, arg=4]
[14:14:45,166][INFO ][gridgain-#310%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@2738ef1d, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2876b359, sib=GridJobSiblingImpl [sesId=9a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064712--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064712--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@42293b53, sib=GridJobSiblingImpl [sesId=9a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064723--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064723--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@404fe94c, sib=GridJobSiblingImpl [sesId=9a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064721--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064721--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@20f5e814, sib=GridJobSiblingImpl [sesId=9a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064703--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064703--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fb669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2a68097d, sib=GridJobSiblingImpl [sesId=9a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064717--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064717--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:45,166][INFO ][gridgain-#353%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException]
[14:14:45,167][INFO ][gridgain-#315%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@3033b503, arg=2]
[14:14:45,167][INFO ][gridgain-#303%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,167][INFO ][gridgain-#303%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=13], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=6a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085148, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=6b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,168][INFO ][gridgain-#317%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@13a9192b, arg=5]
[14:14:45,168][INFO ][gridgain-#328%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@43036651, arg=3]
[14:14:45,168][INFO ][gridgain-#333%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@4f6de641, arg=1]
[14:14:45,169][INFO ][gridgain-#333%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job one is proceeding.
[14:14:45,169][INFO ][gridgain-#333%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Completing job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, dep=GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=false, pendingUndeploy=false, usage=15], taskClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sesId=8a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320085148, endTime=9223372036854775807, taskNodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=13769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:14:45,171][INFO ][gridgain-#300%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException]
[14:14:45,172][INFO ][gridgain-#316%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,173][INFO ][gridgain-#315%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,173][INFO ][gridgain-#317%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,173][INFO ][gridgain-#283%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=4, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,173][INFO ][gridgain-#328%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,173][INFO ][gridgain-#265%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=5, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,173][INFO ][gridgain-#340%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@4dfd245f, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1447034b, sib=GridJobSiblingImpl [sesId=7a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eb669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064702--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064702--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=eb669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@7e199049, sib=GridJobSiblingImpl [sesId=7a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064715--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064715--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@6f5e0eab, sib=GridJobSiblingImpl [sesId=7a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064726--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064726--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6d669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@741378ec, sib=GridJobSiblingImpl [sesId=7a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064709--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064709--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@4e0add57, sib=GridJobSiblingImpl [sesId=7a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ab669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064698--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064698--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ab669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:45,173][INFO ][gridgain-#264%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=3, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,174][INFO ][gridgain-#310%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@420a52f, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@8f8acd0, sib=GridJobSiblingImpl [sesId=5a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064710--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064710--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@6b482747, sib=GridJobSiblingImpl [sesId=5a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064704--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064704--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0c669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@3e5d9d90, sib=GridJobSiblingImpl [sesId=5a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064696--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064696--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@a2c6f70, sib=GridJobSiblingImpl [sesId=5a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064716--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064716--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cc669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@2b49a2c8, sib=GridJobSiblingImpl [sesId=5a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064699--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064699--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bb669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false]]]
[14:14:45,175][INFO ][gridgain-#354%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Job got interrupted [arg=2, e=java.lang.InterruptedException: sleep interrupted]
[14:14:45,175][INFO ][gridgain-#350%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@532996d6, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@13a9192b, sib=GridJobSiblingImpl [sesId=8a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c2769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064812--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064812--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c2769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@4f6de641, sib=GridJobSiblingImpl [sesId=8a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064817--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064817--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=13769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@8746d23, sib=GridJobSiblingImpl [sesId=8a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064807--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064807--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=72769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@3033b503, sib=GridJobSiblingImpl [sesId=8a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a2769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064810--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064810--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a2769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@43036651, sib=GridJobSiblingImpl [sesId=8a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064815--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064815--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f2769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:45,177][INFO ][gridgain-#337%session.GridSessionCancelSiblingsFromTaskSelfTest%][GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask] Aggregating job [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask@4d885088, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@265f00f9, sib=GridJobSiblingImpl [sesId=6a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064690--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064690--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@ada6d09, sib=GridJobSiblingImpl [sesId=6a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064688--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064688--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@7b3cb2c6, sib=GridJobSiblingImpl [sesId=6a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ea669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064686--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064686--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ea669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@1a752144, sib=GridJobSiblingImpl [sesId=6a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064692--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064692--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask$1@7fdb04ed, sib=GridJobSiblingImpl [sesId=6a669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064694--5144524776298153876--2903801428533361836, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064694--5144524776298153876--2903801428533361836, nodeId=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6b669281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=d7b39ffc-59ff-4354-b89a-f9f90a8d786c, state=READY, lastHeartbeat=1353320084041, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55040, startTime=1353320084041], p=GridNodePredicate [ids=[d7b39ffc-59ff-4354-b89a-f9f90a8d786c]], isLoc=true, hash=1012620605, daemon=false], ex=null, hasRes=true, isCancelled=true, isOccupied=true]]]
[14:14:45,177][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest] >>> Stopping test: testMultiThreaded in 25 ms <<<
[14:14:46,233][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:46,233][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:46,240][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320085087, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bc569281b31-d7b39ffc-59ff-4354-b89a-f9f90a8d786c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCancelSiblingsFromTaskSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:46,243][INFO ][main][GridSessionCancelSiblingsFromTaskSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionCancelSiblingsFromTaskSelfTest
>>> Grid uptime: 00:00:01:159
[14:14:46,257][INFO ][main][GridSessionSetFutureAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:46,257][INFO ][main][GridSessionSetFutureAttributeSelfTest] << Enterprise Edition >>
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] Config URL: n/a
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] Daemon mode: off
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:46,258][INFO ][main][GridSessionSetFutureAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:46,259][WARN ][main][GridSessionSetFutureAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:14:46,259][WARN ][main][GridSessionSetFutureAttributeSelfTest] Cache is not configured - data grid is off.
[14:14:46,260][INFO ][main][GridSessionSetFutureAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:46,260][INFO ][main][GridSessionSetFutureAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:46,260][INFO ][main][GridSessionSetFutureAttributeSelfTest] Enabled local MACs: C8600068582C
[14:14:46,765][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:46,773][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45050, locHost=/192.168.2.14]
[14:14:46,800][INFO ][main][GridSessionSetFutureAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:14:46,802][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:46,802][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55050
[14:14:46,803][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50005
[14:14:46,803][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800]
[14:14:46,804][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xFFFE1825]
[14:14:46,804][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:47,836][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:47,838][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:47,838][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:47,838][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:47,838][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:47,847][INFO ][main][GridSessionSetFutureAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetFutureAttributeSelfTest
>>> Local node [ID=19A0735F-3E28-48E1-AA00-737D4BBE7953, order=1353320086800]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45050 UDP:50005 TCP:55050
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:47,847][INFO ][main][GridSessionSetFutureAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:14:47,872][INFO ][gridgain-#381%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@5df9aeda, gridSize=1, arg=4]
[14:14:47,873][INFO ][gridgain-#378%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@3cdc904a, gridSize=1, arg=1]
[14:14:47,877][INFO ][gridgain-#380%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@6dc8f3cd, gridSize=1, arg=2]
[14:14:47,877][INFO ][gridgain-#377%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@d38d2fc, gridSize=1, arg=0]
[14:14:47,877][INFO ][gridgain-#383%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@fa5e4e4, arg=2]
[14:14:47,878][INFO ][gridgain-#382%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@69af0fcf, arg=4]
[14:14:47,878][INFO ][gridgain-#384%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4693c5e7, arg=1]
[14:14:47,877][INFO ][gridgain-#379%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@1a07ac6c, gridSize=1, arg=3]
[14:14:47,879][INFO ][gridgain-#387%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@54563cc2, arg=3]
[14:14:47,879][INFO ][gridgain-#388%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@1fff8c2a, arg=1]
[14:14:47,879][INFO ][gridgain-#385%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@66de04cd, arg=3]
[14:14:47,880][INFO ][gridgain-#389%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@3e389405, arg=2]
[14:14:47,880][INFO ][gridgain-#391%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@6437153d, arg=5]
[14:14:47,880][INFO ][grid-session-test-2][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,881][INFO ][gridgain-#390%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7a0d637d, arg=2]
[14:14:47,881][INFO ][gridgain-#386%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@5cd5a2a9, arg=4]
[14:14:47,883][INFO ][gridgain-#393%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@63376afa, arg=4]
[14:14:47,883][INFO ][gridgain-#395%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@a200d0c, arg=1]
[14:14:47,881][INFO ][gridgain-#392%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@61747f59, arg=5]
[14:14:47,881][INFO ][gridgain-#394%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@54a5f709, arg=2]
[14:14:47,883][INFO ][gridgain-#396%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@79b0edb2, arg=3]
[14:14:47,884][INFO ][gridgain-#397%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@6fe99db4, arg=2]
[14:14:47,885][INFO ][gridgain-#402%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@424b29cf, arg=5]
[14:14:47,886][INFO ][gridgain-#399%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4ec57f88, arg=5]
[14:14:47,886][INFO ][gridgain-#405%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@5bfd9b49, arg=1]
[14:14:47,886][INFO ][gridgain-#406%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@6bd8c046, arg=3]
[14:14:47,886][INFO ][gridgain-#407%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@747df42c, arg=3]
[14:14:47,886][INFO ][gridgain-#404%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@3cdc904a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@6437153d, sib=GridJobSiblingImpl [sesId=38769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=49769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064916--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064916--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=49769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@54563cc2, sib=GridJobSiblingImpl [sesId=38769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=29769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064914--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064914--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=29769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@69af0fcf, sib=GridJobSiblingImpl [sesId=38769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c8769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064908--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064908--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c8769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4693c5e7, sib=GridJobSiblingImpl [sesId=38769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=09769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064912--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064912--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=09769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@fa5e4e4, sib=GridJobSiblingImpl [sesId=38769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e8769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064910--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064910--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e8769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,888][INFO ][grid-session-test-1][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,889][INFO ][gridgain-#410%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7929b073, arg=4]
[14:14:47,889][INFO ][gridgain-#409%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4fee225, arg=4]
[14:14:47,889][INFO ][grid-session-test-4][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,889][INFO ][grid-session-test-5][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,889][INFO ][gridgain-#408%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@74b65a68, arg=1]
[14:14:47,889][INFO ][gridgain-#413%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4b5075f9, arg=5]
[14:14:47,889][INFO ][grid-session-test-3][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,897][INFO ][gridgain-#417%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@d38d2fc, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@5cd5a2a9, sib=GridJobSiblingImpl [sesId=28769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064933--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064933--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@5bfd9b49, sib=GridJobSiblingImpl [sesId=28769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064948--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064948--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4b769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7a0d637d, sib=GridJobSiblingImpl [sesId=28769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064938--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064938--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=aa769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@61747f59, sib=GridJobSiblingImpl [sesId=28769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ea769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064942--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064942--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ea769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@79b0edb2, sib=GridJobSiblingImpl [sesId=28769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064946--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064946--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2b769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,901][INFO ][gridgain-#427%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@6dc8f3cd, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4ec57f88, sib=GridJobSiblingImpl [sesId=58769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ba769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064939--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064939--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ba769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@1fff8c2a, sib=GridJobSiblingImpl [sesId=58769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064932--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064932--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4fee225, sib=GridJobSiblingImpl [sesId=58769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064943--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064943--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fa769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@66de04cd, sib=GridJobSiblingImpl [sesId=58769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064929--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064929--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@54a5f709, sib=GridJobSiblingImpl [sesId=58769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064935--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064935--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,902][INFO ][gridgain-#426%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@5df9aeda, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@a200d0c, sib=GridJobSiblingImpl [sesId=78769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=99769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064921--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064921--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=99769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@747df42c, sib=GridJobSiblingImpl [sesId=78769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e9769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064926--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064926--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e9769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@424b29cf, sib=GridJobSiblingImpl [sesId=78769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c9769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064924--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064924--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c9769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7929b073, sib=GridJobSiblingImpl [sesId=78769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064928--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064928--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0a769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@3e389405, sib=GridJobSiblingImpl [sesId=78769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=79769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064919--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064919--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=79769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,904][INFO ][gridgain-#431%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@1a07ac6c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@6bd8c046, sib=GridJobSiblingImpl [sesId=48769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ac769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064970--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064970--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ac769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@63376afa, sib=GridJobSiblingImpl [sesId=48769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064965--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064965--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5c769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@6fe99db4, sib=GridJobSiblingImpl [sesId=48769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064967--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064967--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7c769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4b5075f9, sib=GridJobSiblingImpl [sesId=48769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ec769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064974--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064974--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ec769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@74b65a68, sib=GridJobSiblingImpl [sesId=48769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cc769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320064972--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320064972--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cc769281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,905][INFO ][main][GridSessionSetFutureAttributeSelfTest] >>> Stopping test: testMultiThreaded in 58 ms <<<
[14:14:47,910][INFO ][main][GridSessionSetFutureAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:14:47,911][INFO ][gridgain-#432%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@51de8adb, gridSize=1, arg=0]
[14:14:47,913][INFO ][gridgain-#433%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@696e59da, arg=1]
[14:14:47,913][INFO ][gridgain-#434%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@b583a80, arg=3]
[14:14:47,914][INFO ][gridgain-#435%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@13ce168b, arg=5]
[14:14:47,915][INFO ][gridgain-#357%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4d68af51, arg=4]
[14:14:47,915][INFO ][gridgain-#358%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4bcd2d49, arg=2]
[14:14:47,915][INFO ][test-runner][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,919][INFO ][gridgain-#440%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@51de8adb, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@b583a80, sib=GridJobSiblingImpl [sesId=a4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065102--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065102--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@696e59da, sib=GridJobSiblingImpl [sesId=a4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065100--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065100--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@13ce168b, sib=GridJobSiblingImpl [sesId=a4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065104--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065104--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=05869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4bcd2d49, sib=GridJobSiblingImpl [sesId=a4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065108--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065108--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=45869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4d68af51, sib=GridJobSiblingImpl [sesId=a4869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=25869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065106--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065106--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=25869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,920][INFO ][gridgain-#359%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@780324ff, gridSize=1, arg=1]
[14:14:47,921][INFO ][gridgain-#360%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7b963273, arg=4]
[14:14:47,922][INFO ][gridgain-#361%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@16721ee7, arg=1]
[14:14:47,922][INFO ][gridgain-#362%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@41ca5b68, arg=5]
[14:14:47,923][INFO ][gridgain-#378%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@447d4275, arg=3]
[14:14:47,923][INFO ][gridgain-#391%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@1e4adb34, arg=2]
[14:14:47,924][INFO ][test-runner][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,927][INFO ][gridgain-#445%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@780324ff, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@447d4275, sib=GridJobSiblingImpl [sesId=27869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a7869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065146--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065146--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a7869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@41ca5b68, sib=GridJobSiblingImpl [sesId=27869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=87869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065144--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065144--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=87869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7b963273, sib=GridJobSiblingImpl [sesId=27869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=47869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065140--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065140--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=47869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@16721ee7, sib=GridJobSiblingImpl [sesId=27869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=67869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065142--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065142--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=67869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@1e4adb34, sib=GridJobSiblingImpl [sesId=27869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c7869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065148--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065148--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c7869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,928][INFO ][gridgain-#387%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@1a18c28a, gridSize=1, arg=2]
[14:14:47,929][INFO ][gridgain-#383%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@702d2da4, arg=2]
[14:14:47,930][INFO ][gridgain-#382%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4f8bff68, arg=1]
[14:14:47,930][INFO ][gridgain-#384%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@260fa385, arg=3]
[14:14:47,931][INFO ][gridgain-#377%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4cb88448, arg=4]
[14:14:47,931][INFO ][gridgain-#381%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@65f4ba51, arg=5]
[14:14:47,931][INFO ][test-runner][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,935][INFO ][gridgain-#447%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@1a18c28a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@702d2da4, sib=GridJobSiblingImpl [sesId=a9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065180--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065180--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4f8bff68, sib=GridJobSiblingImpl [sesId=a9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065182--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065182--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@260fa385, sib=GridJobSiblingImpl [sesId=a9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065184--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065184--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0a869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@4cb88448, sib=GridJobSiblingImpl [sesId=a9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065186--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065186--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2a869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@65f4ba51, sib=GridJobSiblingImpl [sesId=a9869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065188--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065188--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4a869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:14:47,936][INFO ][gridgain-#379%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@5c66b06b, gridSize=1, arg=3]
[14:14:47,937][INFO ][gridgain-#380%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@763dcf03, arg=2]
[14:14:47,938][INFO ][gridgain-#392%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@1d262f7c, arg=4]
[14:14:47,938][INFO ][gridgain-#386%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@59c87031, arg=1]
[14:14:47,939][INFO ][gridgain-#390%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@35f784d7, arg=5]
[14:14:47,939][INFO ][gridgain-#396%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@53e20a9a, arg=3]
[14:14:47,939][INFO ][test-runner][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,942][INFO ][gridgain-#398%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@5c66b06b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@763dcf03, sib=GridJobSiblingImpl [sesId=2c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065220--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065220--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@1d262f7c, sib=GridJobSiblingImpl [sesId=2c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065222--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065222--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@59c87031, sib=GridJobSiblingImpl [sesId=2c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065224--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065224--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@35f784d7, sib=GridJobSiblingImpl [sesId=2c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ac869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065226--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065226--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ac869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@53e20a9a, sib=GridJobSiblingImpl [sesId=2c869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cc869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065228--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065228--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cc869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:47,943][INFO ][gridgain-#405%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@72373a9c, gridSize=1, arg=4]
[14:14:47,945][INFO ][gridgain-#410%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@5fa6fb3e, arg=5]
[14:14:47,945][INFO ][gridgain-#402%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@2802cf63, arg=3]
[14:14:47,946][INFO ][gridgain-#408%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7e91259, arg=1]
[14:14:47,946][INFO ][gridgain-#394%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@56b3951d, arg=2]
[14:14:47,947][INFO ][gridgain-#395%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@507d811a, arg=4]
[14:14:47,947][INFO ][test-runner][GridSessionSetFutureAttributeSelfTest] Set attribute 'testName'.
[14:14:47,950][INFO ][gridgain-#415%session.GridSessionSetFutureAttributeSelfTest%][GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask@72373a9c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@56b3951d, sib=GridJobSiblingImpl [sesId=ae869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2f869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065266--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065266--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2f869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@7e91259, sib=GridJobSiblingImpl [sesId=ae869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0f869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065264--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065264--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0f869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@5fa6fb3e, sib=GridJobSiblingImpl [sesId=ae869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ce869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065260--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065260--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ce869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@2802cf63, sib=GridJobSiblingImpl [sesId=ae869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ee869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065262--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065262--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ee869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask$1@507d811a, sib=GridJobSiblingImpl [sesId=ae869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4f869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065268--6196826105282922157-1846602700123818209, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065268--6196826105282922157-1846602700123818209, nodeId=19a0735f-3e28-48e1-aa00-737d4bbe7953, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4f869281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=19a0735f-3e28-48e1-aa00-737d4bbe7953, state=READY, lastHeartbeat=1353320086800, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55050, startTime=1353320086800], p=GridNodePredicate [ids=[19a0735f-3e28-48e1-aa00-737d4bbe7953]], isLoc=true, hash=-969526896, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:14:47,950][INFO ][main][GridSessionSetFutureAttributeSelfTest] >>> Stopping test: testSetAttribute in 40 ms <<<
[14:14:49,005][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:49,006][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:49,013][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320087847, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f7769281b31-19a0735f-3e28-48e1-aa00-737d4bbe7953, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetFutureAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:49,018][INFO ][main][GridSessionSetFutureAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetFutureAttributeSelfTest
>>> Grid uptime: 00:00:01:177
[14:14:49,033][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:49,034][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] << Enterprise Edition >>
[14:14:49,034][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Config URL: n/a
[14:14:49,034][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Daemon mode: off
[14:14:49,034][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:49,034][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:49,035][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:49,035][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:49,035][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:49,035][WARN ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] SMTP is not configured - email notifications are off.
[14:14:49,035][WARN ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Cache is not configured - data grid is off.
[14:14:49,036][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:49,036][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:49,036][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Enabled local MACs: C8600068582C
[14:14:49,539][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:49,548][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45060, locHost=/192.168.2.14]
[14:14:49,572][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] Security status [authentication=on, secure-session=on]
[14:14:49,574][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:49,574][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55060
[14:14:49,574][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50006
[14:14:49,575][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, state=READY, lastHeartbeat=1353320089568, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55060, startTime=1353320089568]
[14:14:49,576][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xF7540313]
[14:14:49,576][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:50,609][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:50,610][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:50,611][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:50,611][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:50,611][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:50,619][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetFutureAttributeWaitListenerSelfTest
>>> Local node [ID=F07B5F6E-FB13-4C51-B228-BE1F37F7ECDB, order=1353320089568]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45060 UDP:50006 TCP:55060
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:50,620][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] >>> Starting test: testSetAttribute <<<
[14:14:50,624][INFO ][gridgain-#471%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask@78214f6b, gridSize=1, arg=null]
[14:14:50,628][INFO ][gridgain-#472%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@302b2c81, arg=3]
[14:14:50,629][INFO ][gridgain-#473%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6276e1db, arg=4]
[14:14:50,629][INFO ][gridgain-#474%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@75da931b, arg=1]
[14:14:50,630][INFO ][gridgain-#475%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@60f00e0f, arg=2]
[14:14:50,630][INFO ][gridgain-#476%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6ae6235d, arg=5]
[14:14:50,631][INFO ][test-runner][GridSessionSetFutureAttributeWaitListenerSelfTest] Setting attribute 'testName'.
[14:14:50,631][INFO ][test-runner][GridSessionSetFutureAttributeWaitListenerSelfTest] Received attribute [name=testName,val=testVal]
[14:14:50,635][INFO ][gridgain-#477%session.GridSessionSetFutureAttributeWaitListenerSelfTest%][GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask@78214f6b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@302b2c81, sib=GridJobSiblingImpl [sesId=81969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a1969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065306--5609024294597694245--1118195152208049071, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065306--5609024294597694245--1118195152208049071, nodeId=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a1969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, state=READY, lastHeartbeat=1353320089568, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55060, startTime=1353320089568], p=GridNodePredicate [ids=[f07b5f6e-fb13-4c51-b228-be1f37f7ecdb]], isLoc=true, hash=-1900592645, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6ae6235d, sib=GridJobSiblingImpl [sesId=81969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065314--5609024294597694245--1118195152208049071, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065314--5609024294597694245--1118195152208049071, nodeId=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, state=READY, lastHeartbeat=1353320089568, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55060, startTime=1353320089568], p=GridNodePredicate [ids=[f07b5f6e-fb13-4c51-b228-be1f37f7ecdb]], isLoc=true, hash=-1900592645, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@60f00e0f, sib=GridJobSiblingImpl [sesId=81969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065312--5609024294597694245--1118195152208049071, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065312--5609024294597694245--1118195152208049071, nodeId=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, state=READY, lastHeartbeat=1353320089568, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55060, startTime=1353320089568], p=GridNodePredicate [ids=[f07b5f6e-fb13-4c51-b228-be1f37f7ecdb]], isLoc=true, hash=-1900592645, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@75da931b, sib=GridJobSiblingImpl [sesId=81969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e1969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065310--5609024294597694245--1118195152208049071, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065310--5609024294597694245--1118195152208049071, nodeId=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e1969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, state=READY, lastHeartbeat=1353320089568, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55060, startTime=1353320089568], p=GridNodePredicate [ids=[f07b5f6e-fb13-4c51-b228-be1f37f7ecdb]], isLoc=true, hash=-1900592645, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6276e1db, sib=GridJobSiblingImpl [sesId=81969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c1969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065308--5609024294597694245--1118195152208049071, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065308--5609024294597694245--1118195152208049071, nodeId=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c1969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, state=READY, lastHeartbeat=1353320089568, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55060, startTime=1353320089568], p=GridNodePredicate [ids=[f07b5f6e-fb13-4c51-b228-be1f37f7ecdb]], isLoc=true, hash=-1900592645, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:14:50,635][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest] >>> Stopping test: testSetAttribute in 15 ms <<<
[14:14:51,692][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:14:51,692][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:14:51,699][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320090615, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=51969281b31-f07b5f6e-fb13-4c51-b228-be1f37f7ecdb, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetFutureAttributeWaitListenerSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:14:51,702][INFO ][main][GridSessionSetFutureAttributeWaitListenerSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetFutureAttributeWaitListenerSelfTest
>>> Grid uptime: 00:00:01:79
[14:14:51,713][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:14:51,713][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] << Enterprise Edition >>
[14:14:51,713][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Config URL: n/a
[14:14:51,713][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Daemon mode: off
[14:14:51,714][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:14:51,714][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:14:51,714][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:14:51,714][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:14:51,714][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:14:51,714][WARN ][main][GridSessionSetJobAttributeWaitListenerSelfTest] SMTP is not configured - email notifications are off.
[14:14:51,714][WARN ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Cache is not configured - data grid is off.
[14:14:51,715][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:14:51,716][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:14:51,716][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Enabled local MACs: C8600068582C
[14:14:52,220][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:14:52,228][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45070, locHost=/192.168.2.14]
[14:14:52,255][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] Security status [authentication=on, secure-session=on]
[14:14:52,258][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:14:52,258][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55070
[14:14:52,258][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50007
[14:14:52,259][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248]
[14:14:52,260][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x62D26EAE]
[14:14:52,261][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:14:53,292][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:14:53,295][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:14:53,295][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:14:53,295][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:14:53,295][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:14:53,300][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetJobAttributeWaitListenerSelfTest
>>> Local node [ID=A31FA636-CFFE-4737-8BE5-A303AA1C4507, order=1353320092248]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45070 UDP:50007 TCP:55070
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:14:53,300][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] >>> Starting test: testSetAttribute <<<
[14:14:53,302][INFO ][gridgain-#502%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@65b1fd9c, gridSize=1, arg=null]
[14:14:53,305][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@29af45f4, arg=4]
[14:14:53,305][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@1cf15b84, arg=3]
[14:14:53,305][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@5d0769dd, arg=1]
[14:14:53,306][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@3219ab8d, arg=5]
[14:14:53,306][INFO ][gridgain-#507%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@11b75be2, arg=2]
[14:14:53,307][INFO ][gridgain-#507%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:14:53,307][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:14:53,307][INFO ][gridgain-#507%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,307][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:14:53,307][INFO ][gridgain-#507%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,307][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:14:53,307][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:14:53,307][INFO ][gridgain-#507%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#505%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#506%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,308][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,309][INFO ][gridgain-#503%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,309][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,309][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,309][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,309][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:14:53,309][INFO ][gridgain-#504%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,310][INFO ][gridgain-#512%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@65b1fd9c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@5d0769dd, sib=GridJobSiblingImpl [sesId=64969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065356--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065356--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@3219ab8d, sib=GridJobSiblingImpl [sesId=64969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065358--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065358--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e4969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@29af45f4, sib=GridJobSiblingImpl [sesId=64969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065352--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065352--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@1cf15b84, sib=GridJobSiblingImpl [sesId=64969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065354--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065354--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@11b75be2, sib=GridJobSiblingImpl [sesId=64969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065360--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065360--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=05969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:15:13,312][INFO ][gridgain-#513%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@19a40cfc, gridSize=1, arg=null]
[14:15:13,313][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@447bd86d, arg=5]
[14:15:13,314][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6c68bcef, arg=2]
[14:15:13,314][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6150818a, arg=1]
[14:15:13,315][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@37748ba4, arg=4]
[14:15:13,315][INFO ][gridgain-#518%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@504c2683, arg=3]
[14:15:13,316][INFO ][gridgain-#518%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:13,316][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:13,316][INFO ][gridgain-#518%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,316][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:13,316][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:13,316][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:13,316][INFO ][gridgain-#518%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#515%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,317][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#516%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#517%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:13,318][INFO ][gridgain-#514%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,320][INFO ][gridgain-#523%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@19a40cfc, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@37748ba4, sib=GridJobSiblingImpl [sesId=58969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065421--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065421--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d8969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@447bd86d, sib=GridJobSiblingImpl [sesId=58969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065415--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065415--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=78969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6150818a, sib=GridJobSiblingImpl [sesId=58969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065419--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065419--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b8969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@504c2683, sib=GridJobSiblingImpl [sesId=58969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065423--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065423--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f8969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6c68bcef, sib=GridJobSiblingImpl [sesId=58969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065417--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065417--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=98969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:15:33,321][INFO ][gridgain-#524%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@6fd7bd04, gridSize=1, arg=null]
[14:15:33,323][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@7afa0094, arg=2]
[14:15:33,324][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@7d05e560, arg=5]
[14:15:33,324][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@35612600, arg=4]
[14:15:33,325][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@3cba8af9, arg=1]
[14:15:33,325][INFO ][gridgain-#529%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@333c339f, arg=3]
[14:15:33,325][INFO ][gridgain-#529%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:33,325][INFO ][gridgain-#529%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,325][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:33,326][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:33,326][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:33,326][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:33,326][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,326][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,326][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,326][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#525%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#526%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#527%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,327][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,328][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,328][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,328][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:33,328][INFO ][gridgain-#528%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,330][INFO ][gridgain-#534%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@6fd7bd04, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@35612600, sib=GridJobSiblingImpl [sesId=5c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065483--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065483--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bc969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@7d05e560, sib=GridJobSiblingImpl [sesId=5c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065481--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065481--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@333c339f, sib=GridJobSiblingImpl [sesId=5c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fc969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065487--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065487--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fc969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@3cba8af9, sib=GridJobSiblingImpl [sesId=5c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dc969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065485--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065485--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dc969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@7afa0094, sib=GridJobSiblingImpl [sesId=5c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065479--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065479--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7c969281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:15:53,331][INFO ][gridgain-#535%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@6b87d20c, gridSize=1, arg=null]
[14:15:53,332][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@21ef48fb, arg=1]
[14:15:53,333][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@5f154718, arg=3]
[14:15:53,333][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@4fb529d6, arg=5]
[14:15:53,334][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@64a06824, arg=2]
[14:15:53,335][INFO ][gridgain-#540%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6deea96c, arg=4]
[14:15:53,335][INFO ][gridgain-#540%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:53,335][INFO ][gridgain-#540%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,335][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:53,335][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:53,335][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:53,335][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:15:53,336][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,336][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,336][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,336][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,337][INFO ][gridgain-#539%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,337][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,337][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,337][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#536%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#537%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:15:53,338][INFO ][gridgain-#538%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,340][INFO ][gridgain-#545%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@6b87d20c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@64a06824, sib=GridJobSiblingImpl [sesId=50a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d0a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065549--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065549--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d0a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@21ef48fb, sib=GridJobSiblingImpl [sesId=50a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065543--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065543--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=70a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@4fb529d6, sib=GridJobSiblingImpl [sesId=50a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065547--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065547--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b0a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@6deea96c, sib=GridJobSiblingImpl [sesId=50a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f0a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065551--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065551--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f0a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@5f154718, sib=GridJobSiblingImpl [sesId=50a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=90a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065545--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065545--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=90a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:13,341][INFO ][gridgain-#546%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@3dffb2eb, gridSize=1, arg=null]
[14:16:13,343][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@2eced18, arg=4]
[14:16:13,343][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@10c1c428, arg=5]
[14:16:13,344][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@eca4aae, arg=3]
[14:16:13,345][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@14da67a4, arg=2]
[14:16:13,345][INFO ][gridgain-#551%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@5e3b8219, arg=1]
[14:16:13,345][INFO ][gridgain-#551%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:13,345][INFO ][gridgain-#551%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,345][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:13,345][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:13,346][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:13,345][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:13,346][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,346][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,346][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#548%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#547%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,347][INFO ][gridgain-#550%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,348][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,348][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,348][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,348][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:13,348][INFO ][gridgain-#549%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Received attribute [name=testName, val=testVal]
[14:16:33,350][INFO ][gridgain-#556%session.GridSessionSetJobAttributeWaitListenerSelfTest%][GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask@3dffb2eb, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@5e3b8219, sib=GridJobSiblingImpl [sesId=54a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f4a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065615--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065615--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f4a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@10c1c428, sib=GridJobSiblingImpl [sesId=54a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=94a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065609--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065609--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=94a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@eca4aae, sib=GridJobSiblingImpl [sesId=54a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b4a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065611--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065611--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b4a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@2eced18, sib=GridJobSiblingImpl [sesId=54a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=74a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065607--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065607--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=74a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask$1@14da67a4, sib=GridJobSiblingImpl [sesId=54a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d4a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065613--8366101496636619513--6692447766901274825, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065613--8366101496636619513--6692447766901274825, nodeId=a31fa636-cffe-4737-8be5-a303aa1c4507, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d4a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a31fa636-cffe-4737-8be5-a303aa1c4507, state=READY, lastHeartbeat=1353320092258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55070, startTime=1353320092248], p=GridNodePredicate [ids=[a31fa636-cffe-4737-8be5-a303aa1c4507]], isLoc=true, hash=1293420293, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:33,350][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest] >>> Stopping test: testSetAttribute in 100050 ms <<<
[14:16:34,407][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:34,408][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:34,416][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320093295, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=34969281b31-a31fa636-cffe-4737-8be5-a303aa1c4507, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetJobAttributeWaitListenerSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:34,419][INFO ][main][GridSessionSetJobAttributeWaitListenerSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetJobAttributeWaitListenerSelfTest
>>> Grid uptime: 00:01:41:116
[14:16:34,433][INFO ][main][GridSessionSetJobAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:34,433][INFO ][main][GridSessionSetJobAttributeSelfTest] << Enterprise Edition >>
[14:16:34,433][INFO ][main][GridSessionSetJobAttributeSelfTest] Config URL: n/a
[14:16:34,433][INFO ][main][GridSessionSetJobAttributeSelfTest] Daemon mode: off
[14:16:34,434][INFO ][main][GridSessionSetJobAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:16:34,434][INFO ][main][GridSessionSetJobAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:34,434][INFO ][main][GridSessionSetJobAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:34,434][INFO ][main][GridSessionSetJobAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:34,434][INFO ][main][GridSessionSetJobAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:34,434][WARN ][main][GridSessionSetJobAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:16:34,434][WARN ][main][GridSessionSetJobAttributeSelfTest] Cache is not configured - data grid is off.
[14:16:34,438][INFO ][main][GridSessionSetJobAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:34,438][INFO ][main][GridSessionSetJobAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:34,438][INFO ][main][GridSessionSetJobAttributeSelfTest] Enabled local MACs: C8600068582C
[14:16:34,941][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:34,948][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45080, locHost=/192.168.2.14]
[14:16:34,969][INFO ][main][GridSessionSetJobAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:16:34,972][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:34,972][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55080
[14:16:34,972][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50008
[14:16:34,973][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964]
[14:16:34,974][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x1A5F0417]
[14:16:34,990][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:36,019][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:36,020][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:36,021][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:36,021][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:36,021][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:36,025][INFO ][main][GridSessionSetJobAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetJobAttributeSelfTest
>>> Local node [ID=46924B92-D354-4A08-87EA-5C8D6271E515, order=1353320194964]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45080 UDP:50008 TCP:55080
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:36,025][INFO ][main][GridSessionSetJobAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:16:36,030][INFO ][gridgain-#580%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@5cb08ba7, gridSize=1, arg=3]
[14:16:36,030][INFO ][gridgain-#579%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@79b7d13e, gridSize=1, arg=1]
[14:16:36,030][INFO ][gridgain-#578%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@4f9bbd86, gridSize=1, arg=2]
[14:16:36,030][INFO ][gridgain-#577%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@130a7be0, gridSize=1, arg=0]
[14:16:36,030][INFO ][gridgain-#581%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@4aa0b07b, gridSize=1, arg=4]
[14:16:36,033][INFO ][gridgain-#582%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@dd41677, arg=1]
[14:16:36,034][INFO ][gridgain-#582%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,034][INFO ][gridgain-#583%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7b220575, arg=4]
[14:16:36,034][INFO ][gridgain-#584%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@11e78461, arg=2]
[14:16:36,034][INFO ][gridgain-#585%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7451b0af, arg=5]
[14:16:36,034][INFO ][gridgain-#588%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5dcba031, arg=3]
[14:16:36,035][INFO ][gridgain-#586%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@1043fb68, arg=5]
[14:16:36,035][INFO ][gridgain-#589%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5f2e712f, arg=5]
[14:16:36,035][INFO ][gridgain-#589%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,035][INFO ][gridgain-#591%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@76a40575, arg=2]
[14:16:36,036][INFO ][gridgain-#590%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7162e79c, arg=1]
[14:16:36,036][INFO ][gridgain-#590%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,036][INFO ][gridgain-#588%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,036][INFO ][gridgain-#595%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@3b4d82e1, arg=3]
[14:16:36,036][INFO ][gridgain-#592%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6a3449a8, arg=3]
[14:16:36,036][INFO ][gridgain-#596%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5bb77832, arg=2]
[14:16:36,036][INFO ][gridgain-#593%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@64fb7efa, arg=3]
[14:16:36,037][INFO ][gridgain-#597%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@490eb6ae, arg=3]
[14:16:36,037][INFO ][gridgain-#597%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,037][INFO ][gridgain-#601%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@3a2c4ede, arg=5]
[14:16:36,037][INFO ][gridgain-#601%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,037][INFO ][gridgain-#598%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@ecfeb11, arg=4]
[14:16:36,037][INFO ][gridgain-#602%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5f0ee5b8, arg=1]
[14:16:36,037][INFO ][gridgain-#602%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,037][INFO ][gridgain-#605%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@4b0bc3c9, arg=1]
[14:16:36,037][INFO ][gridgain-#584%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,037][INFO ][gridgain-#586%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,037][INFO ][gridgain-#593%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,037][INFO ][gridgain-#605%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,038][INFO ][gridgain-#595%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,038][INFO ][gridgain-#591%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,038][INFO ][gridgain-#583%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#606%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@744957c7, arg=4]
[14:16:36,039][INFO ][gridgain-#606%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#607%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@63822112, arg=4]
[14:16:36,039][INFO ][gridgain-#607%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#610%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@665ce0fe, arg=1]
[14:16:36,039][INFO ][gridgain-#610%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,039][INFO ][gridgain-#598%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#592%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#585%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#611%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7694837a, arg=4]
[14:16:36,039][INFO ][gridgain-#611%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,039][INFO ][gridgain-#596%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,041][INFO ][gridgain-#615%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6208f57a, arg=5]
[14:16:36,041][INFO ][gridgain-#615%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,041][INFO ][gridgain-#614%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@1453ecec, arg=2]
[14:16:36,042][INFO ][gridgain-#614%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,042][INFO ][gridgain-#616%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@a62812d, arg=2]
[14:16:36,042][INFO ][gridgain-#616%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,042][INFO ][gridgain-#622%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@4aa0b07b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@3b4d82e1, sib=GridJobSiblingImpl [sesId=29a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065701--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065701--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6208f57a, sib=GridJobSiblingImpl [sesId=29a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065717--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065717--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7b220575, sib=GridJobSiblingImpl [sesId=29a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=79a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065687--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065687--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=79a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@4b0bc3c9, sib=GridJobSiblingImpl [sesId=29a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=daa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065709--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065709--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=daa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@76a40575, sib=GridJobSiblingImpl [sesId=29a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e9a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065694--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065694--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e9a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,044][INFO ][gridgain-#627%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@79b7d13e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@1043fb68, sib=GridJobSiblingImpl [sesId=d8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f9a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065695--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065695--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f9a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@11e78461, sib=GridJobSiblingImpl [sesId=d8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=59a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065685--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065685--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=59a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@63822112, sib=GridJobSiblingImpl [sesId=d8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065718--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065718--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@64fb7efa, sib=GridJobSiblingImpl [sesId=d8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065703--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065703--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5f0ee5b8, sib=GridJobSiblingImpl [sesId=d8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eaa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065710--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065710--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=eaa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,044][INFO ][gridgain-#626%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@4f9bbd86, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@dd41677, sib=GridJobSiblingImpl [sesId=c8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=69a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065686--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065686--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=69a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@490eb6ae, sib=GridJobSiblingImpl [sesId=c8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065702--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065702--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@1453ecec, sib=GridJobSiblingImpl [sesId=c8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065719--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065719--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@744957c7, sib=GridJobSiblingImpl [sesId=c8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065712--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065712--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5f2e712f, sib=GridJobSiblingImpl [sesId=c8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065696--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065696--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,045][INFO ][gridgain-#630%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@130a7be0, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5bb77832, sib=GridJobSiblingImpl [sesId=b8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1ca69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065729--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065729--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1ca69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6a3449a8, sib=GridJobSiblingImpl [sesId=b8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065727--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065727--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@ecfeb11, sib=GridJobSiblingImpl [sesId=b8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3ca69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065731--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065731--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3ca69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@665ce0fe, sib=GridJobSiblingImpl [sesId=b8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5ca69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065733--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065733--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5ca69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7451b0af, sib=GridJobSiblingImpl [sesId=b8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065725--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065725--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:36,045][INFO ][gridgain-#631%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@5cb08ba7, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@a62812d, sib=GridJobSiblingImpl [sesId=f8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065720--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065720--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8ba69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@3a2c4ede, sib=GridJobSiblingImpl [sesId=f8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065704--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065704--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8aa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7694837a, sib=GridJobSiblingImpl [sesId=f8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=faa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065711--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065711--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=faa69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@5dcba031, sib=GridJobSiblingImpl [sesId=f8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=89a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065688--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065688--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=89a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7162e79c, sib=GridJobSiblingImpl [sesId=f8a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d9a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065693--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065693--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d9a69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,046][INFO ][main][GridSessionSetJobAttributeSelfTest] >>> Stopping test: testMultiThreaded in 21 ms <<<
[14:16:36,049][INFO ][main][GridSessionSetJobAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:16:36,050][INFO ][gridgain-#632%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@46cfd22a, gridSize=1, arg=0]
[14:16:36,052][INFO ][gridgain-#633%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@c88a80e, arg=5]
[14:16:36,052][INFO ][gridgain-#634%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@75eee7b7, arg=1]
[14:16:36,052][INFO ][gridgain-#634%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,052][INFO ][gridgain-#633%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,052][INFO ][gridgain-#635%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@181ec6b9, arg=4]
[14:16:36,052][INFO ][gridgain-#635%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,053][INFO ][gridgain-#557%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@17aedbde, arg=2]
[14:16:36,053][INFO ][gridgain-#557%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,053][INFO ][gridgain-#558%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@58e4d7f7, arg=3]
[14:16:36,053][INFO ][gridgain-#558%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,055][INFO ][gridgain-#639%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@46cfd22a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@181ec6b9, sib=GridJobSiblingImpl [sesId=35b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=95b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065881--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065881--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=95b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@17aedbde, sib=GridJobSiblingImpl [sesId=35b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b5b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065883--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065883--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b5b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@75eee7b7, sib=GridJobSiblingImpl [sesId=35b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=75b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065879--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065879--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=75b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@c88a80e, sib=GridJobSiblingImpl [sesId=35b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=55b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065877--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065877--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=55b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@58e4d7f7, sib=GridJobSiblingImpl [sesId=35b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d5b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065885--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065885--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d5b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:36,056][INFO ][gridgain-#559%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@737951b0, gridSize=1, arg=1]
[14:16:36,058][INFO ][gridgain-#560%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@a0834e7, arg=2]
[14:16:36,058][INFO ][gridgain-#562%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7821f46a, arg=4]
[14:16:36,058][INFO ][gridgain-#561%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@20c92ed6, arg=3]
[14:16:36,059][INFO ][gridgain-#582%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7d3598c3, arg=5]
[14:16:36,059][INFO ][gridgain-#589%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@21e2350a, arg=1]
[14:16:36,059][INFO ][gridgain-#589%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,059][INFO ][gridgain-#582%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,059][INFO ][gridgain-#562%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,059][INFO ][gridgain-#560%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,059][INFO ][gridgain-#561%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,061][INFO ][gridgain-#645%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@737951b0, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7821f46a, sib=GridJobSiblingImpl [sesId=b7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065919--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065919--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@20c92ed6, sib=GridJobSiblingImpl [sesId=b7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065921--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065921--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=18b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7d3598c3, sib=GridJobSiblingImpl [sesId=b7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065923--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065923--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=38b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@a0834e7, sib=GridJobSiblingImpl [sesId=b7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065917--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065917--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@21e2350a, sib=GridJobSiblingImpl [sesId=b7b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065925--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065925--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=58b69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,062][INFO ][gridgain-#590%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@64b6be69, gridSize=1, arg=2]
[14:16:36,064][INFO ][gridgain-#588%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@32728d, arg=2]
[14:16:36,064][INFO ][gridgain-#597%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@2f566b7d, arg=4]
[14:16:36,064][INFO ][gridgain-#601%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@52aaf3d2, arg=5]
[14:16:36,065][INFO ][gridgain-#584%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@198f1327, arg=1]
[14:16:36,065][INFO ][gridgain-#584%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,065][INFO ][gridgain-#601%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,065][INFO ][gridgain-#597%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,065][INFO ][gridgain-#590%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6ffe8714, arg=3]
[14:16:36,065][INFO ][gridgain-#590%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,065][INFO ][gridgain-#588%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,067][INFO ][gridgain-#646%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@64b6be69, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6ffe8714, sib=GridJobSiblingImpl [sesId=3ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065965--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065965--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@2f566b7d, sib=GridJobSiblingImpl [sesId=3ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065959--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065959--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@32728d, sib=GridJobSiblingImpl [sesId=3ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065957--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065957--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@198f1327, sib=GridJobSiblingImpl [sesId=3ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065963--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065963--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@52aaf3d2, sib=GridJobSiblingImpl [sesId=3ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065961--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065961--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9ab69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,068][INFO ][gridgain-#577%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@3654919e, gridSize=1, arg=3]
[14:16:36,069][INFO ][gridgain-#586%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6a2437ef, arg=1]
[14:16:36,069][INFO ][gridgain-#586%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,070][INFO ][gridgain-#593%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@3a5476a7, arg=4]
[14:16:36,070][INFO ][gridgain-#593%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,070][INFO ][gridgain-#580%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7f39ebdb, arg=5]
[14:16:36,070][INFO ][gridgain-#580%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,070][INFO ][gridgain-#578%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6084fa6a, arg=3]
[14:16:36,070][INFO ][gridgain-#578%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,071][INFO ][gridgain-#581%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6fd46259, arg=2]
[14:16:36,071][INFO ][gridgain-#581%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,072][INFO ][gridgain-#600%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@3654919e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@7f39ebdb, sib=GridJobSiblingImpl [sesId=bcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1db69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066001--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066001--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1db69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6a2437ef, sib=GridJobSiblingImpl [sesId=bcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065997--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065997--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6084fa6a, sib=GridJobSiblingImpl [sesId=bcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3db69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066003--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066003--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3db69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@3a5476a7, sib=GridJobSiblingImpl [sesId=bcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320065999--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320065999--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6fd46259, sib=GridJobSiblingImpl [sesId=bcb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5db69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066005--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066005--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5db69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:36,073][INFO ][gridgain-#605%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@28084850, gridSize=1, arg=4]
[14:16:36,074][INFO ][gridgain-#611%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6c89db9a, arg=5]
[14:16:36,075][INFO ][gridgain-#596%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@47abfd68, arg=4]
[14:16:36,075][INFO ][gridgain-#595%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@4f0ab3f2, arg=3]
[14:16:36,075][INFO ][gridgain-#615%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@37c390b8, arg=1]
[14:16:36,075][INFO ][gridgain-#615%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:36,075][INFO ][gridgain-#595%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,075][INFO ][gridgain-#596%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,076][INFO ][gridgain-#605%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@8523ca2, arg=2]
[14:16:36,076][INFO ][gridgain-#605%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,076][INFO ][gridgain-#611%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:36,078][INFO ][gridgain-#617%session.GridSessionSetJobAttributeSelfTest%][GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask@28084850, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@47abfd68, sib=GridJobSiblingImpl [sesId=3fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066039--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066039--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@8523ca2, sib=GridJobSiblingImpl [sesId=3fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dfb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066045--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066045--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dfb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@4f0ab3f2, sib=GridJobSiblingImpl [sesId=3fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066041--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066041--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@6c89db9a, sib=GridJobSiblingImpl [sesId=3fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066037--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066037--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask$1@37c390b8, sib=GridJobSiblingImpl [sesId=3fb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066043--8653001971727211243-5085210023237536264, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066043--8653001971727211243-5085210023237536264, nodeId=46924b92-d354-4a08-87ea-5c8d6271e515, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bfb69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=46924b92-d354-4a08-87ea-5c8d6271e515, state=READY, lastHeartbeat=1353320194964, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55080, startTime=1353320194964], p=GridNodePredicate [ids=[46924b92-d354-4a08-87ea-5c8d6271e515]], isLoc=true, hash=1885190146, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:36,078][INFO ][main][GridSessionSetJobAttributeSelfTest] >>> Stopping test: testSetAttribute in 29 ms <<<
[14:16:37,133][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:37,134][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:37,140][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320196025, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=88a69281b31-46924b92-d354-4a08-87ea-5c8d6271e515, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetJobAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:37,143][INFO ][main][GridSessionSetJobAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetJobAttributeSelfTest
>>> Grid uptime: 00:00:01:119
[14:16:37,151][INFO ][main][GridSessionSetJobAttribute2SelfTest] >>> Starting test: testJobSetAttribute <<<
[14:16:37,157][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:37,157][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] << Enterprise Edition >>
[14:16:37,157][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Config URL: n/a
[14:16:37,157][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Daemon mode: off
[14:16:37,157][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:16:37,158][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:37,158][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:37,158][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:37,158][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:37,158][WARN ][test-runner][GridSessionSetJobAttribute2SelfTest1] SMTP is not configured - email notifications are off.
[14:16:37,158][WARN ][test-runner][GridSessionSetJobAttribute2SelfTest1] Cache is not configured - data grid is off.
[14:16:37,159][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:37,159][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:37,160][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Enabled local MACs: C8600068582C
[14:16:37,664][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:37,671][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45090, locHost=/192.168.2.14]
[14:16:37,690][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1] Security status [authentication=on, secure-session=on]
[14:16:37,693][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:37,693][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55090
[14:16:37,693][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50009
[14:16:37,694][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=ef330c54-275e-44c5-bb30-ffd93d498e2f, state=READY, lastHeartbeat=1353320197688, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55090, startTime=1353320197688]
[14:16:37,694][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x68DBC53B]
[14:16:37,695][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:38,722][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:38,723][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:38,723][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:38,723][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:38,723][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:38,728][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetJobAttribute2SelfTest1
>>> Local node [ID=EF330C54-275E-44C5-BB30-FFD93D498E2F, order=1353320197688]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45090 UDP:50009 TCP:55090
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] << Enterprise Edition >>
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Config URL: n/a
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Daemon mode: off
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:38,729][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:38,730][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:38,730][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:38,730][WARN ][test-runner][GridSessionSetJobAttribute2SelfTest2] SMTP is not configured - email notifications are off.
[14:16:38,730][WARN ][test-runner][GridSessionSetJobAttribute2SelfTest2] Cache is not configured - data grid is off.
[14:16:38,730][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:38,731][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:38,731][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Enabled local MACs: C8600068582C
[14:16:39,233][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:39,240][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45091, locHost=/192.168.2.14]
[14:16:39,275][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2] Security status [authentication=on, secure-session=on]
[14:16:39,277][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:39,277][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55091
[14:16:39,278][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50009
[14:16:39,278][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=50a69295-104f-4e04-90b2-f70e331e9a21, state=READY, lastHeartbeat=1353320199270, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55091, startTime=1353320199270]
[14:16:39,279][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x7C68505C]
[14:16:39,279][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:39,296][INFO ][disco-event-worker-#665%session.GridSessionSetJobAttribute2SelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=50a69295-104f-4e04-90b2-f70e331e9a21, state=READY, lastHeartbeat=1353320199280, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55091, startTime=1353320199270]
[14:16:39,296][INFO ][disco-event-worker-#685%session.GridSessionSetJobAttribute2SelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=ef330c54-275e-44c5-bb30-ffd93d498e2f, state=READY, lastHeartbeat=1353320199280, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55090, startTime=1353320197688]
[14:16:39,297][INFO ][disco-event-worker-#665%session.GridSessionSetJobAttribute2SelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xACF580F9]
[14:16:40,282][INFO ][disco-event-worker-#685%session.GridSessionSetJobAttribute2SelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xACF580F9]
[14:16:41,367][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:16:41,368][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:16:41,369][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:41,369][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:41,369][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:41,377][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetJobAttribute2SelfTest2
>>> Local node [ID=50A69295-104F-4E04-90B2-F70E331E9A21, order=1353320199270]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45091 UDP:50009 TCP:55091
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:41,496][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest] >>> Stopping grid [name=session.GridSessionSetJobAttribute2SelfTest1, id=ef330c54-275e-44c5-bb30-ffd93d498e2f]
[14:16:42,552][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:42,553][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:42,555][INFO ][disco-event-worker-#685%session.GridSessionSetJobAttribute2SelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=ef330c54-275e-44c5-bb30-ffd93d498e2f, state=LEFT, lastHeartbeat=1353320202554, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55090, startTime=1353320197688]
[14:16:42,556][INFO ][disco-event-worker-#685%session.GridSessionSetJobAttribute2SelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x7C68505C]
[14:16:42,559][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320201375, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=c2c69281b31-ef330c54-275e-44c5-bb30-ffd93d498e2f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetJobAttribute2SelfTest$SessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetJobAttribute2SelfTest$SessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:42,561][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetJobAttribute2SelfTest1
>>> Grid uptime: 00:00:03:829
[14:16:42,562][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest] >>> Stopping grid [name=session.GridSessionSetJobAttribute2SelfTest2, id=50a69295-104f-4e04-90b2-f70e331e9a21]
[14:16:42,562][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:42,562][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:42,568][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320201385, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=23c69281b31-50a69295-104f-4e04-90b2-f70e331e9a21, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetJobAttribute2SelfTest$SessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetJobAttribute2SelfTest$SessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:42,570][INFO ][test-runner][GridSessionSetJobAttribute2SelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetJobAttribute2SelfTest2
>>> Grid uptime: 00:00:01:189
[14:16:42,571][INFO ][main][GridSessionSetJobAttribute2SelfTest] >>> Stopping test: testJobSetAttribute in 5420 ms <<<
[14:16:42,580][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:42,580][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] << Enterprise Edition >>
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Config URL: n/a
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Daemon mode: off
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:42,581][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:42,582][WARN ][main][GridSessionJobWaitTaskAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:16:42,582][WARN ][main][GridSessionJobWaitTaskAttributeSelfTest] Cache is not configured - data grid is off.
[14:16:42,583][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:42,583][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:42,583][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Enabled local MACs: C8600068582C
[14:16:43,086][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:43,093][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45100, locHost=/192.168.2.14]
[14:16:43,112][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:16:43,114][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:43,114][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55100
[14:16:43,115][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50010
[14:16:43,115][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107]
[14:16:43,116][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xB748E450]
[14:16:43,116][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:44,143][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:44,144][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:44,144][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:44,144][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:44,144][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:44,148][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionJobWaitTaskAttributeSelfTest
>>> Local node [ID=B39CEE3B-7910-40D6-97BF-85D584DA07C8, order=1353320203107]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45100 UDP:50010 TCP:55100
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:44,148][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:16:44,155][INFO ][gridgain-#713%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@5f3306ad, gridSize=1, arg=null]
[14:16:44,155][INFO ][gridgain-#716%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@efb78af, gridSize=1, arg=null]
[14:16:44,155][INFO ][gridgain-#715%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@18a9fa9c, gridSize=1, arg=null]
[14:16:44,155][INFO ][gridgain-#717%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@6856c528, gridSize=1, arg=null]
[14:16:44,155][INFO ][gridgain-#714%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1fb030d8, gridSize=1, arg=null]
[14:16:44,159][INFO ][gridgain-#718%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1dda817b, arg=5]
[14:16:44,160][INFO ][gridgain-#720%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7dabdb8a, arg=4]
[14:16:44,160][INFO ][gridgain-#719%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@746ac18c, arg=5]
[14:16:44,160][INFO ][gridgain-#722%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3a087286, arg=2]
[14:16:44,160][INFO ][gridgain-#721%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1cfb765a, arg=5]
[14:16:44,161][INFO ][gridgain-#723%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@794322d1, arg=1]
[14:16:44,161][INFO ][gridgain-#724%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@26a30589, arg=2]
[14:16:44,161][INFO ][gridgain-#727%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@9ffdf86, arg=4]
[14:16:44,161][INFO ][gridgain-#726%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@62b21d14, arg=5]
[14:16:44,161][INFO ][gridgain-#725%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@18c07930, arg=2]
[14:16:44,176][INFO ][gridgain-#728%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6a50549, arg=1]
[14:16:44,176][INFO ][gridgain-#729%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@27beb7ec, arg=3]
[14:16:44,176][INFO ][gridgain-#730%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2da2d3be, arg=4]
[14:16:44,176][INFO ][gridgain-#731%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@24b8f952, arg=4]
[14:16:44,177][INFO ][gridgain-#732%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6bf88953, arg=4]
[14:16:44,177][INFO ][gridgain-#735%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5a1cfb56, arg=3]
[14:16:44,177][INFO ][gridgain-#736%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@96d92e, arg=3]
[14:16:44,177][INFO ][gridgain-#737%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4544b02, arg=2]
[14:16:44,177][INFO ][gridgain-#717%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@794322d1, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066139--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066139--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,177][INFO ][gridgain-#738%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@20724356, arg=3]
[14:16:44,177][INFO ][gridgain-#735%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,177][INFO ][gridgain-#722%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,178][INFO ][gridgain-#739%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@cc90a0a, arg=5]
[14:16:44,177][INFO ][gridgain-#727%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,178][INFO ][gridgain-#741%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@173e55db, arg=1]
[14:16:44,178][INFO ][gridgain-#740%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7d76a8c8, arg=1]
[14:16:44,178][INFO ][gridgain-#742%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5a1cfb56, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=96c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066153--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066153--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=96c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,178][INFO ][gridgain-#739%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,180][INFO ][gridgain-#744%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@173e55db, arg=1]
[14:16:44,180][INFO ][gridgain-#714%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6a50549, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066171--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066171--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,180][INFO ][gridgain-#745%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3bfdff07, arg=2]
[14:16:44,180][INFO ][gridgain-#745%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,180][INFO ][gridgain-#738%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,180][INFO ][gridgain-#743%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3a087286, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=35c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066131--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066131--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=35c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,180][INFO ][gridgain-#721%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#746%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2f8c5b4f, arg=3]
[14:16:44,181][INFO ][gridgain-#743%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@9ffdf86, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066145--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066145--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=16c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,180][INFO ][gridgain-#730%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#748%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@173e55db, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=37c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066163--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066163--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=37c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,181][INFO ][gridgain-#736%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#724%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#731%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#718%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7d76a8c8, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066154--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066154--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,181][INFO ][gridgain-#751%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@173e55db, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=47c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066164--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066164--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=47c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,181][INFO ][gridgain-#719%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#737%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#726%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#720%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,182][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1cfb765a, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=97c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066169--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066169--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=97c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,181][INFO ][gridgain-#746%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#725%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#732%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,181][INFO ][gridgain-#729%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,182][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@cc90a0a, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=17c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066161--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066161--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=17c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,182][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@20724356, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066175--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066175--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,182][INFO ][gridgain-#754%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@26a30589, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066138--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066138--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,183][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3bfdff07, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066177--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066177--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=18c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,183][INFO ][gridgain-#757%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@96d92e, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066156--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066156--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,183][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2da2d3be, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066173--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066173--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,183][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@6856c528, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@9ffdf86, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066145--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066145--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@cc90a0a, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=17c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066161--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066161--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=17c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3a087286, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=35c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066131--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066131--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=35c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5a1cfb56, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=96c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066153--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066153--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=96c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@794322d1, sib=GridJobSiblingImpl [sesId=a4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066139--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066139--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,183][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,183][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,183][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,183][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,183][INFO ][gridgain-#750%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,184][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1fb030d8, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2da2d3be, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066173--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066173--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@20724356, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066175--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066175--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3bfdff07, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066177--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066177--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=18c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1cfb765a, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=97c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066169--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066169--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=97c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6a50549, sib=GridJobSiblingImpl [sesId=84c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066171--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066171--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b7c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,184][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,184][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,184][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,184][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,184][INFO ][gridgain-#752%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,184][INFO ][gridgain-#758%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@24b8f952, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=26c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066146--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066146--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=26c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,187][INFO ][gridgain-#760%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@746ac18c, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=25c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066130--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066130--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=25c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,188][INFO ][gridgain-#761%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4544b02, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066155--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066155--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,189][INFO ][gridgain-#763%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7dabdb8a, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066132--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066132--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=45c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,189][INFO ][gridgain-#765%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@18c07930, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066140--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066140--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1dda817b, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066129--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066129--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=15c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,190][INFO ][gridgain-#762%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@62b21d14, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=95c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066137--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066137--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=95c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,190][INFO ][gridgain-#766%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6bf88953, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066147--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066147--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=36c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@5f3306ad, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@24b8f952, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=26c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066146--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066146--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=26c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1dda817b, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066129--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066129--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=15c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@173e55db, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=37c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066163--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066163--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=37c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@96d92e, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066156--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066156--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@26a30589, sib=GridJobSiblingImpl [sesId=74c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066138--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066138--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,190][INFO ][gridgain-#759%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@27beb7ec, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=46c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066148--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066148--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=46c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2f8c5b4f, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=27c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066162--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066162--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=27c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@efb78af, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7dabdb8a, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066132--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066132--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=45c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@62b21d14, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=95c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066137--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066137--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=95c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4544b02, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066155--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066155--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@27beb7ec, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=46c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066148--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066148--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=46c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@173e55db, sib=GridJobSiblingImpl [sesId=b4c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=47c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066164--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066164--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=47c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@18a9fa9c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@746ac18c, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=25c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066130--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066130--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=25c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2f8c5b4f, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=27c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066162--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066162--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=27c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6bf88953, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066147--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066147--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@18c07930, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066140--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066140--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c5c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7d76a8c8, sib=GridJobSiblingImpl [sesId=94c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066154--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066154--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a6c69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#767%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,191][INFO ][gridgain-#764%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,192][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] >>> Stopping test: testMultiThreaded in 43 ms <<<
[14:16:44,194][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:16:44,195][INFO ][gridgain-#768%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@3a0078f4, gridSize=1, arg=null]
[14:16:44,196][INFO ][gridgain-#769%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@604e9f7f, arg=5]
[14:16:44,197][INFO ][gridgain-#770%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@19724852, arg=2]
[14:16:44,197][INFO ][gridgain-#771%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70dd8904, arg=4]
[14:16:44,198][INFO ][gridgain-#693%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7504f8eb, arg=1]
[14:16:44,198][INFO ][gridgain-#694%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1dea0c8b, arg=3]
[14:16:44,198][INFO ][gridgain-#772%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7504f8eb, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=71d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066327--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066327--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=71d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,199][INFO ][gridgain-#694%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,199][INFO ][gridgain-#771%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,199][INFO ][gridgain-#769%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,199][INFO ][gridgain-#770%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,199][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1dea0c8b, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=91d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066329--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066329--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=91d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,200][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70dd8904, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=51d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066325--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066325--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=51d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,200][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@604e9f7f, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=11d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066321--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066321--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=11d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,200][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@19724852, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=31d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066323--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066323--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=31d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,201][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@3a0078f4, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7504f8eb, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=71d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066327--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066327--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=71d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@604e9f7f, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=11d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066321--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066321--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=11d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@19724852, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=31d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066323--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066323--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=31d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70dd8904, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=51d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066325--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066325--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=51d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1dea0c8b, sib=GridJobSiblingImpl [sesId=f0d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=91d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066329--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066329--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=91d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,201][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,202][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,202][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,202][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,202][INFO ][gridgain-#773%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,203][INFO ][gridgain-#695%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@5d23fab3, gridSize=1, arg=null]
[14:16:44,204][INFO ][gridgain-#696%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70ee90b1, arg=4]
[14:16:44,204][INFO ][gridgain-#698%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3c4568f8, arg=3]
[14:16:44,204][INFO ][gridgain-#697%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3e5d8e63, arg=5]
[14:16:44,205][INFO ][gridgain-#723%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@238df2e4, arg=2]
[14:16:44,205][INFO ][gridgain-#728%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@65202d8a, arg=1]
[14:16:44,206][INFO ][gridgain-#777%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@65202d8a, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=14d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066369--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066369--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=14d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,206][INFO ][gridgain-#723%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,206][INFO ][gridgain-#697%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,206][INFO ][gridgain-#698%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,206][INFO ][gridgain-#696%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,207][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@238df2e4, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066367--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066367--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,208][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3e5d8e63, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066365--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066365--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,208][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70ee90b1, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=93d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066361--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066361--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=93d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,208][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3c4568f8, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066363--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066363--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,209][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@5d23fab3, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3e5d8e63, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066365--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066365--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@65202d8a, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=14d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066369--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066369--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=14d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70ee90b1, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=93d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066361--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066361--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=93d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@238df2e4, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066367--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066367--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3c4568f8, sib=GridJobSiblingImpl [sesId=73d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066363--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066363--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b3d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:44,209][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,209][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,209][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,209][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,209][INFO ][gridgain-#778%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,210][INFO ][gridgain-#717%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1c727896, gridSize=1, arg=null]
[14:16:44,211][INFO ][gridgain-#735%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@ec5aba9, arg=3]
[14:16:44,212][INFO ][gridgain-#713%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1f4ace71, arg=1]
[14:16:44,212][INFO ][gridgain-#722%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@423252d6, arg=5]
[14:16:44,212][INFO ][gridgain-#713%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5388ebd2, arg=4]
[14:16:44,213][INFO ][gridgain-#716%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@68376cc3, arg=2]
[14:16:44,213][INFO ][gridgain-#717%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1f4ace71, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066403--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066403--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=36d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,213][INFO ][gridgain-#716%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,213][INFO ][gridgain-#713%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,213][INFO ][gridgain-#735%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,213][INFO ][gridgain-#722%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,214][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5388ebd2, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=76d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066407--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066407--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=76d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,215][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@68376cc3, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=96d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066409--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066409--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=96d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,215][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@ec5aba9, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066401--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066401--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=16d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,215][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@423252d6, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=56d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066405--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066405--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=56d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,216][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1c727896, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1f4ace71, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066403--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066403--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5388ebd2, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=76d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066407--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066407--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=76d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@ec5aba9, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066401--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066401--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@423252d6, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=56d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066405--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066405--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=56d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@68376cc3, sib=GridJobSiblingImpl [sesId=f5d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=96d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066409--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066409--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=96d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,216][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,216][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,216][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,216][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,216][INFO ][gridgain-#784%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,217][INFO ][gridgain-#727%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@120f0be, gridSize=1, arg=null]
[14:16:44,218][INFO ][gridgain-#715%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7d8aecf1, arg=4]
[14:16:44,219][INFO ][gridgain-#741%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2587b08d, arg=2]
[14:16:44,219][INFO ][gridgain-#740%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@199d4a86, arg=1]
[14:16:44,219][INFO ][gridgain-#739%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6f580c3a, arg=3]
[14:16:44,220][INFO ][gridgain-#744%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2bca029b, arg=5]
[14:16:44,220][INFO ][gridgain-#727%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@199d4a86, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066445--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066445--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,220][INFO ][gridgain-#744%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,220][INFO ][gridgain-#739%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,220][INFO ][gridgain-#715%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,220][INFO ][gridgain-#741%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,221][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2bca029b, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066449--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066449--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=19d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,221][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6f580c3a, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066447--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066447--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,221][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7d8aecf1, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066441--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066441--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=98d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,222][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2587b08d, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066443--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066443--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,223][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@120f0be, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2587b08d, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066443--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066443--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@7d8aecf1, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066441--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066441--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=98d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6f580c3a, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066447--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066447--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@199d4a86, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066445--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066445--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d8d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2bca029b, sib=GridJobSiblingImpl [sesId=78d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066449--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066449--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=19d69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:44,223][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,223][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,223][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,223][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,223][INFO ][gridgain-#734%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,224][INFO ][gridgain-#721%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@10e71d5e, gridSize=1, arg=null]
[14:16:44,225][INFO ][gridgain-#738%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3281db25, arg=4]
[14:16:44,225][INFO ][gridgain-#724%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@35071f57, arg=2]
[14:16:44,226][INFO ][gridgain-#745%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@35390efd, arg=1]
[14:16:44,226][INFO ][gridgain-#730%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@669aa3f3, arg=3]
[14:16:44,226][INFO ][gridgain-#736%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6b5a740a, arg=5]
[14:16:44,226][INFO ][gridgain-#721%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from setting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@35390efd, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066485--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066485--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,227][INFO ][gridgain-#736%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,227][INFO ][gridgain-#730%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,227][INFO ][gridgain-#738%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,227][INFO ][gridgain-#724%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:44,227][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6b5a740a, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066489--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066489--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,228][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@669aa3f3, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066487--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066487--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,228][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3281db25, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066481--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066481--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,228][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Got result from waiting job: GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@35071f57, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066483--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066483--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]
[14:16:44,229][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask@10e71d5e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6b5a740a, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066489--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066489--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@35390efd, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066485--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066485--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@3281db25, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066481--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066481--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@669aa3f3, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066487--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066487--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@35071f57, sib=GridJobSiblingImpl [sesId=fad69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066483--7512138501327288376--5504262705351999274, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066483--7512138501327288376--5504262705351999274, nodeId=b39cee3b-7910-40d6-97bf-85d584da07c8, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3bd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b39cee3b-7910-40d6-97bf-85d584da07c8, state=READY, lastHeartbeat=1353320203107, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55100, startTime=1353320203107], p=GridNodePredicate [ids=[b39cee3b-7910-40d6-97bf-85d584da07c8]], isLoc=true, hash=-639030032, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:44,229][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,229][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 0
[14:16:44,229][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,229][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,229][INFO ][gridgain-#749%session.GridSessionJobWaitTaskAttributeSelfTest%][GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing result: 1
[14:16:44,230][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest] >>> Stopping test: testSetAttribute in 36 ms <<<
[14:16:45,285][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:45,285][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:45,291][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320204144, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=44c69281b31-b39cee3b-7910-40d6-97bf-85d584da07c8, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionJobWaitTaskAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:45,294][INFO ][main][GridSessionJobWaitTaskAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionJobWaitTaskAttributeSelfTest
>>> Grid uptime: 00:00:01:141
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] << Enterprise Edition >>
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] Config URL: n/a
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] Daemon mode: off
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:45,307][INFO ][main][GridSessionSetTaskAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:45,307][WARN ][main][GridSessionSetTaskAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:16:45,307][WARN ][main][GridSessionSetTaskAttributeSelfTest] Cache is not configured - data grid is off.
[14:16:45,308][INFO ][main][GridSessionSetTaskAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:45,308][INFO ][main][GridSessionSetTaskAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:45,308][INFO ][main][GridSessionSetTaskAttributeSelfTest] Enabled local MACs: C8600068582C
[14:16:45,811][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:45,818][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45110, locHost=/192.168.2.14]
[14:16:45,840][INFO ][main][GridSessionSetTaskAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:16:45,841][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:45,842][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55110
[14:16:45,842][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50011
[14:16:45,843][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839]
[14:16:45,843][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x10B0C818]
[14:16:45,844][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:46,877][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:46,878][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:46,878][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:46,879][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:46,879][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:46,883][INFO ][main][GridSessionSetTaskAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetTaskAttributeSelfTest
>>> Local node [ID=B9710CC2-6190-44C8-9214-43AC2125C016, order=1353320205839]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45110 UDP:50011 TCP:55110
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:46,883][INFO ][main][GridSessionSetTaskAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:16:46,888][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@5b9f1bac, gridSize=1, arg=1]
[14:16:46,888][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@70501e4e, gridSize=1, arg=4]
[14:16:46,888][INFO ][gridgain-#808%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@2ad1e832, gridSize=1, arg=2]
[14:16:46,888][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@3ae34094, gridSize=1, arg=0]
[14:16:46,888][INFO ][gridgain-#810%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@1da4d2c0, gridSize=1, arg=3]
[14:16:46,889][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,889][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,889][INFO ][gridgain-#808%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,889][INFO ][gridgain-#810%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,890][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,892][INFO ][gridgain-#813%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@342cef66, arg=5]
[14:16:46,892][INFO ][gridgain-#812%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7b39ca7e, arg=1]
[14:16:46,892][INFO ][gridgain-#812%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,892][INFO ][gridgain-#813%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,892][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, arg=3]
[14:16:46,892][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,893][INFO ][gridgain-#815%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, arg=3]
[14:16:46,893][INFO ][gridgain-#815%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,893][INFO ][gridgain-#816%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4275b35, arg=5]
[14:16:46,893][INFO ][gridgain-#816%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,894][INFO ][gridgain-#819%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@303b48c8, arg=5]
[14:16:46,894][INFO ][gridgain-#819%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,894][INFO ][gridgain-#821%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, arg=5]
[14:16:46,894][INFO ][gridgain-#821%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,895][INFO ][gridgain-#823%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, arg=5]
[14:16:46,895][INFO ][gridgain-#823%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,896][INFO ][gridgain-#827%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, arg=3]
[14:16:46,896][INFO ][gridgain-#827%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,896][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, arg=2]
[14:16:46,896][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,896][INFO ][gridgain-#828%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, arg=2]
[14:16:46,896][INFO ][gridgain-#828%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,896][INFO ][gridgain-#830%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, arg=2]
[14:16:46,896][INFO ][gridgain-#830%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,896][INFO ][gridgain-#833%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@46af2a50, arg=4]
[14:16:46,897][INFO ][gridgain-#833%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,897][INFO ][gridgain-#839%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@687c3b99, arg=4]
[14:16:46,897][INFO ][gridgain-#839%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,897][INFO ][gridgain-#840%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@399c123d, arg=3]
[14:16:46,897][INFO ][gridgain-#840%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,897][INFO ][gridgain-#835%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, arg=4]
[14:16:46,897][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, arg=1]
[14:16:46,898][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,898][INFO ][gridgain-#835%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,898][INFO ][gridgain-#842%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c939bdb, arg=2]
[14:16:46,898][INFO ][gridgain-#844%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@16030e71, arg=4]
[14:16:46,898][INFO ][gridgain-#842%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,898][INFO ][gridgain-#844%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,898][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,898][INFO ][gridgain-#846%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ea0eb2a, arg=3]
[14:16:46,898][INFO ][gridgain-#846%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,899][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,899][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,899][INFO ][gridgain-#810%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,899][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@46af2a50, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@46af2a50, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,899][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,899][INFO ][gridgain-#810%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,899][INFO ][gridgain-#851%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f1d5566, arg=1]
[14:16:46,899][INFO ][gridgain-#851%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,899][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7b39ca7e, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@46af2a50, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7b39ca7e, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,900][INFO ][gridgain-#845%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@253777b3, arg=1]
[14:16:46,900][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@687c3b99, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@687c3b99, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,900][INFO ][gridgain-#808%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,900][INFO ][gridgain-#845%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,900][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@342cef66, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@687c3b99, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@342cef66, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,900][INFO ][gridgain-#808%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,901][INFO ][gridgain-#808%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4275b35, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4275b35, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,901][INFO ][gridgain-#850%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@16030e71, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@16030e71, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,900][INFO ][gridgain-#849%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@498ab963, arg=1]
[14:16:46,901][INFO ][gridgain-#852%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7556cd93, arg=2]
[14:16:46,902][INFO ][gridgain-#852%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,902][INFO ][gridgain-#853%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f816b6e, arg=4]
[14:16:46,902][INFO ][gridgain-#853%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,902][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,902][INFO ][gridgain-#850%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@399c123d, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@399c123d, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@16030e71, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,902][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,903][INFO ][gridgain-#856%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c939bdb, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066571--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066571--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c939bdb, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066571--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066571--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@46af2a50, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7b39ca7e, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,901][INFO ][gridgain-#849%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,905][INFO ][gridgain-#850%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f1d5566, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066578--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066578--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=21e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@399c123d, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f1d5566, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066578--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066578--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=21e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@16030e71, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,905][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ea0eb2a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ea0eb2a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,905][INFO ][gridgain-#858%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7556cd93, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4275b35, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7556cd93, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,906][INFO ][gridgain-#850%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@1da4d2c0, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@399c123d, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066564--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=40e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5edd7658, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066553--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f1d5566, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066578--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066578--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=21e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@16030e71, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066572--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1b2b2f7f, sib=GridJobSiblingImpl [sesId=1ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066541--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ded69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,906][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@303b48c8, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@303b48c8, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ea0eb2a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,906][INFO ][gridgain-#861%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@498ab963, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066588--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066588--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@687c3b99, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@342cef66, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@498ab963, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066588--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066588--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,907][INFO ][gridgain-#856%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@70501e4e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c939bdb, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066571--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066571--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d2aa14, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066548--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@46af2a50, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066563--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=30e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7b39ca7e, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066540--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ced69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@79b40ab5, sib=GridJobSiblingImpl [sesId=2ed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066556--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,907][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f816b6e, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066570--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066570--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f816b6e, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066570--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066570--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@303b48c8, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ea0eb2a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,909][INFO ][gridgain-#859%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@253777b3, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066567--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066567--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=70e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4275b35, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7556cd93, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@253777b3, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066567--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066567--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=70e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,909][INFO ][gridgain-#809%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@3ae34094, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ed1a34a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066555--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bfd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d84bc10, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066549--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@f816b6e, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066570--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066570--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@303b48c8, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066542--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=eed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ea0eb2a, sib=GridJobSiblingImpl [sesId=ddd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066562--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=20e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,909][INFO ][gridgain-#861%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@5b9f1bac, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@687c3b99, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066586--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@342cef66, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066580--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=41e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3291384d, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066584--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=81e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c07612a, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066582--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=61e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@498ab963, sib=GridJobSiblingImpl [sesId=edd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066588--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066588--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c1e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,909][INFO ][gridgain-#859%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@2ad1e832, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@35718057, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066550--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6fd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@4275b35, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066543--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fed69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@7556cd93, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066574--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e0e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@253777b3, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066567--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066567--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=70e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@22a92801, sib=GridJobSiblingImpl [sesId=fdd69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066560--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=00e69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,910][INFO ][main][GridSessionSetTaskAttributeSelfTest] >>> Stopping test: testMultiThreaded in 27 ms <<<
[14:16:46,912][INFO ][main][GridSessionSetTaskAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:16:46,912][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@ae4cf81, gridSize=1, arg=0]
[14:16:46,912][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,913][INFO ][gridgain-#863%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, arg=2]
[14:16:46,913][INFO ][gridgain-#863%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,913][INFO ][gridgain-#864%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, arg=4]
[14:16:46,913][INFO ][gridgain-#864%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,914][INFO ][gridgain-#866%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@33f323bd, arg=1]
[14:16:46,914][INFO ][gridgain-#787%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@34d0cdd0, arg=3]
[14:16:46,914][INFO ][gridgain-#788%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1a055ff4, arg=5]
[14:16:46,914][INFO ][gridgain-#787%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,914][INFO ][gridgain-#866%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,914][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,914][INFO ][gridgain-#788%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,915][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,915][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@34d0cdd0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@34d0cdd0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,915][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@33f323bd, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@34d0cdd0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@33f323bd, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,916][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1a055ff4, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066734--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066734--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=eae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@34d0cdd0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1a055ff4, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066734--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066734--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=eae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@33f323bd, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,916][INFO ][gridgain-#862%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@ae4cf81, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@34d0cdd0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066736--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0be69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1a055ff4, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=eae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066734--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066734--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=eae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@33f323bd, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066732--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@78782dc6, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066730--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=aae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1faf67f0, sib=GridJobSiblingImpl [sesId=5ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066728--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8ae69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,917][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@2825a5d2, gridSize=1, arg=1]
[14:16:46,917][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,918][INFO ][gridgain-#790%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, arg=5]
[14:16:46,918][INFO ][gridgain-#790%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,918][INFO ][gridgain-#792%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3ac67f69, arg=3]
[14:16:46,918][INFO ][gridgain-#792%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,918][INFO ][gridgain-#790%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, arg=2]
[14:16:46,918][INFO ][gridgain-#790%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,919][INFO ][gridgain-#812%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dd6e4a4, arg=4]
[14:16:46,919][INFO ][gridgain-#812%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,919][INFO ][gridgain-#813%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3fa99295, arg=1]
[14:16:46,919][INFO ][gridgain-#813%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,919][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,919][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,920][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3ac67f69, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3ac67f69, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,921][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dd6e4a4, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dd6e4a4, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3ac67f69, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,921][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3fa99295, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066776--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066776--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dd6e4a4, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3ac67f69, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3fa99295, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066776--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066776--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,922][INFO ][gridgain-#789%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@2825a5d2, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dd6e4a4, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066774--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3ac67f69, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066770--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@15d694da, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066772--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@673ceab3, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066768--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3fa99295, sib=GridJobSiblingImpl [sesId=dce69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066776--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066776--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8de69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,923][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@64964f8e, gridSize=1, arg=2]
[14:16:46,923][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,923][INFO ][gridgain-#815%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, arg=2]
[14:16:46,923][INFO ][gridgain-#815%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,923][INFO ][gridgain-#816%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, arg=4]
[14:16:46,923][INFO ][gridgain-#816%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,924][INFO ][gridgain-#819%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@48412739, arg=1]
[14:16:46,924][INFO ][gridgain-#819%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,924][INFO ][gridgain-#821%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2b5fe9c3, arg=3]
[14:16:46,924][INFO ][gridgain-#821%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,924][INFO ][gridgain-#823%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ef7d41f, arg=5]
[14:16:46,924][INFO ][gridgain-#823%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,924][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,924][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,925][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@48412739, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@48412739, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,925][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2b5fe9c3, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@48412739, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2b5fe9c3, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,926][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ef7d41f, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066816--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066816--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=00f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@48412739, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ef7d41f, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066816--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066816--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=00f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2b5fe9c3, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,926][INFO ][gridgain-#814%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@64964f8e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@48412739, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066812--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cfe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2ef7d41f, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066816--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066816--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=00f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2b5fe9c3, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066814--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=efe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2d76343e, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066808--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@25ec1774, sib=GridJobSiblingImpl [sesId=5fe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066810--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=afe69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,927][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@246fee3a, gridSize=1, arg=3]
[14:16:46,927][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,928][INFO ][gridgain-#827%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@18a60d19, arg=5]
[14:16:46,928][INFO ][gridgain-#827%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,928][INFO ][gridgain-#828%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, arg=3]
[14:16:46,928][INFO ][gridgain-#828%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,928][INFO ][gridgain-#830%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, arg=1]
[14:16:46,928][INFO ][gridgain-#830%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,928][INFO ][gridgain-#833%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5d400f33, arg=4]
[14:16:46,928][INFO ][gridgain-#833%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,928][INFO ][gridgain-#839%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@729f624a, arg=2]
[14:16:46,928][INFO ][gridgain-#839%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,929][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,929][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,929][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@18a60d19, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@18a60d19, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,929][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5d400f33, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@18a60d19, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5d400f33, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,930][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@729f624a, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=82f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066856--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066856--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=82f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@18a60d19, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5d400f33, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@729f624a, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=82f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066856--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066856--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=82f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,930][INFO ][gridgain-#825%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@246fee3a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@18a60d19, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066848--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@3dee2310, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066850--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@30813486, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066852--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=42f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@5d400f33, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066854--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=62f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@729f624a, sib=GridJobSiblingImpl [sesId=d1f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=82f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066856--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066856--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=82f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,931][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@4004c5b3, gridSize=1, arg=4]
[14:16:46,931][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:46,931][INFO ][gridgain-#835%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@794f8b9a, arg=1]
[14:16:46,931][INFO ][gridgain-#835%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,932][INFO ][gridgain-#810%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, arg=5]
[14:16:46,932][INFO ][gridgain-#810%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,932][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, arg=3]
[14:16:46,932][INFO ][gridgain-#811%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,932][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2cf889c8, arg=4]
[14:16:46,932][INFO ][gridgain-#807%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,932][INFO ][gridgain-#844%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@555669ae, arg=2]
[14:16:46,932][INFO ][gridgain-#844%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:46,932][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=1, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,932][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=2, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:46,933][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@794f8b9a, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=3, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@794f8b9a, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,933][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2cf889c8, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=4, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@794f8b9a, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2cf889c8, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,934][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Received result from job [res=GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@555669ae, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066896--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066896--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=05f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], size=5, received=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@555669ae, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066896--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066896--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=false], jobCtx=GridJobContextImpl [jobId=05f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@794f8b9a, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2cf889c8, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,934][INFO ][gridgain-#837%session.GridSessionSetTaskAttributeSelfTest%][GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask@4004c5b3, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@555669ae, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066896--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066896--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=05f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@711dc088, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066890--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@794f8b9a, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066888--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@2cf889c8, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066894--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask$1@1c344a47, sib=GridJobSiblingImpl [sesId=54f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066892--7920631438068301802--5084268475324545848, nodeId=b9710cc2-6190-44c8-9214-43ac2125c016, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=b9710cc2-6190-44c8-9214-43ac2125c016, state=READY, lastHeartbeat=1353320205839, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55110, startTime=1353320205839], p=GridNodePredicate [ids=[b9710cc2-6190-44c8-9214-43ac2125c016]], isLoc=true, hash=1808845744, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:46,934][INFO ][main][GridSessionSetTaskAttributeSelfTest] >>> Stopping test: testSetAttribute in 22 ms <<<
[14:16:47,991][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:47,991][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:47,997][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320206876, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=add69281b31-b9710cc2-6190-44c8-9214-43ac2125c016, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetTaskAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:47,999][INFO ][main][GridSessionSetTaskAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetTaskAttributeSelfTest
>>> Grid uptime: 00:00:01:118
[14:16:48,012][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:48,012][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] << Enterprise Edition >>
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Config URL: n/a
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Daemon mode: off
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:48,013][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:48,013][WARN ][main][GridSessionFutureWaitTaskAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:16:48,014][WARN ][main][GridSessionFutureWaitTaskAttributeSelfTest] Cache is not configured - data grid is off.
[14:16:48,014][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:48,015][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:48,015][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Enabled local MACs: C8600068582C
[14:16:48,519][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:48,526][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45120, locHost=/192.168.2.14]
[14:16:48,549][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:16:48,551][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:48,551][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55120
[14:16:48,551][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50012
[14:16:48,552][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548]
[14:16:48,552][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xB21790A3]
[14:16:48,554][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:49,587][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:49,596][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:49,596][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:49,596][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:49,596][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:49,604][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionFutureWaitTaskAttributeSelfTest
>>> Local node [ID=16566258-770B-4ECF-962F-A6A9D4076A69, order=1353320208548]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45120 UDP:50012 TCP:55120
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:49,604][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:16:49,611][INFO ][gridgain-#905%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@608d116e, gridSize=1, arg=3]
[14:16:49,612][INFO ][gridgain-#902%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1cfbf107, gridSize=1, arg=2]
[14:16:49,612][INFO ][gridgain-#903%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@2d81aed0, gridSize=1, arg=4]
[14:16:49,612][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@57d62a85, gridSize=1, arg=0]
[14:16:49,614][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@4d737e47, gridSize=1, arg=1]
[14:16:49,617][INFO ][gridgain-#906%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1647ad40, arg=2]
[14:16:49,617][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@8191a42, arg=4]
[14:16:49,618][INFO ][gridgain-#910%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@d28d900, arg=3]
[14:16:49,618][INFO ][gridgain-#909%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6c1ef8f5, arg=2]
[14:16:49,619][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@280ae735, arg=5]
[14:16:49,619][INFO ][gridgain-#908%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5bcfa4b2, arg=4]
[14:16:49,619][INFO ][gridgain-#913%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@266286e3, arg=1]
[14:16:49,620][INFO ][gridgain-#915%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@14c55164, arg=1]
[14:16:49,620][INFO ][gridgain-#917%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@9ba3afe, arg=1]
[14:16:49,621][INFO ][gridgain-#921%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@c596a7a, arg=5]
[14:16:49,621][INFO ][gridgain-#920%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@63d15d1c, arg=5]
[14:16:49,621][INFO ][gridgain-#923%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@52a9fd96, arg=1]
[14:16:49,622][INFO ][gridgain-#925%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@e85b4c5, arg=2]
[14:16:49,622][INFO ][gridgain-#902%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,622][INFO ][gridgain-#926%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1e5b04ae, arg=3]
[14:16:49,623][INFO ][gridgain-#928%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@31028a, arg=4]
[14:16:49,623][INFO ][gridgain-#930%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@46380c76, arg=5]
[14:16:49,623][INFO ][grid-session-test-3][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,623][INFO ][gridgain-#902%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,624][INFO ][gridgain-#931%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d45d135, arg=5]
[14:16:49,624][INFO ][gridgain-#934%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@656ad447, arg=2]
[14:16:49,625][INFO ][gridgain-#939%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,625][INFO ][gridgain-#936%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@119db21f, arg=4]
[14:16:49,626][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,626][INFO ][gridgain-#905%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,626][INFO ][grid-session-test-1][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,626][INFO ][grid-session-test-4][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,625][INFO ][gridgain-#940%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4896b555, arg=3]
[14:16:49,626][INFO ][gridgain-#937%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@74be95bf, arg=4]
[14:16:49,626][INFO ][gridgain-#946%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2096ed8b, arg=1]
[14:16:49,626][INFO ][gridgain-#943%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@69904b13, arg=3]
[14:16:49,626][INFO ][gridgain-#905%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,626][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,626][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,627][INFO ][gridgain-#905%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,627][INFO ][gridgain-#945%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,627][INFO ][gridgain-#905%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,627][INFO ][grid-session-test-2][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,627][INFO ][gridgain-#944%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@195dbaab, arg=2]
[14:16:49,627][INFO ][gridgain-#903%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,627][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,627][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#903%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][grid-session-test-5][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,628][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#903%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#951%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,628][INFO ][gridgain-#948%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@588a3d8f, arg=3]
[14:16:49,628][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,629][INFO ][gridgain-#951%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1cfbf107, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@63d15d1c, sib=GridJobSiblingImpl [sesId=57f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066953--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066953--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=98f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@119db21f, sib=GridJobSiblingImpl [sesId=57f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066959--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066959--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f8f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@14c55164, sib=GridJobSiblingImpl [sesId=57f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066949--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066949--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=58f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6c1ef8f5, sib=GridJobSiblingImpl [sesId=57f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e7f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066942--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066942--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e7f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1e5b04ae, sib=GridJobSiblingImpl [sesId=57f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=59f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066965--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066965--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=59f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,629][INFO ][gridgain-#901%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@57d62a85, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@46380c76, sib=GridJobSiblingImpl [sesId=37f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a8f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066954--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066954--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a8f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@69904b13, sib=GridJobSiblingImpl [sesId=37f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=69f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066966--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066966--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=69f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@266286e3, sib=GridJobSiblingImpl [sesId=37f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=48f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066948--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066948--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=48f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@8191a42, sib=GridJobSiblingImpl [sesId=37f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066943--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066943--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f7f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@656ad447, sib=GridJobSiblingImpl [sesId=37f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066961--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066961--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=19f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,629][INFO ][gridgain-#904%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@4d737e47, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@52a9fd96, sib=GridJobSiblingImpl [sesId=47f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=baf69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066987--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066987--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=baf69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1647ad40, sib=GridJobSiblingImpl [sesId=47f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066981--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066981--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@c596a7a, sib=GridJobSiblingImpl [sesId=47f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066985--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066985--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@74be95bf, sib=GridJobSiblingImpl [sesId=47f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=daf69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066989--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066989--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=daf69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@d28d900, sib=GridJobSiblingImpl [sesId=47f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066983--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066983--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,629][INFO ][gridgain-#953%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,631][INFO ][gridgain-#954%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,631][INFO ][gridgain-#954%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,632][INFO ][gridgain-#953%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@608d116e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@280ae735, sib=GridJobSiblingImpl [sesId=67f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066941--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066941--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d7f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@31028a, sib=GridJobSiblingImpl [sesId=67f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066955--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066955--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b8f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2096ed8b, sib=GridJobSiblingImpl [sesId=67f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=79f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066967--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066967--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=79f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4896b555, sib=GridJobSiblingImpl [sesId=67f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=09f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066960--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066960--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=09f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@e85b4c5, sib=GridJobSiblingImpl [sesId=67f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066947--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066947--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=38f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,632][INFO ][gridgain-#954%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@2d81aed0, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5bcfa4b2, sib=GridJobSiblingImpl [sesId=77f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b9f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066971--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066971--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b9f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1d45d135, sib=GridJobSiblingImpl [sesId=77f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f9f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066975--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066975--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f9f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@588a3d8f, sib=GridJobSiblingImpl [sesId=77f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066979--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066979--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@9ba3afe, sib=GridJobSiblingImpl [sesId=77f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d9f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066973--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066973--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d9f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@195dbaab, sib=GridJobSiblingImpl [sesId=77f69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320066977--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320066977--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1af69281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,632][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] >>> Stopping test: testMultiThreaded in 28 ms <<<
[14:16:49,637][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:16:49,638][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@70d5fcfe, gridSize=1, arg=0]
[14:16:49,639][INFO ][gridgain-#957%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2a4df9a0, arg=4]
[14:16:49,639][INFO ][gridgain-#958%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1ff05076, arg=2]
[14:16:49,640][INFO ][gridgain-#960%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70d4c191, arg=1]
[14:16:49,640][INFO ][gridgain-#882%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@653f8d12, arg=5]
[14:16:49,641][INFO ][gridgain-#881%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5a32835b, arg=3]
[14:16:49,641][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,641][INFO ][test-runner][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,641][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,641][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,642][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,642][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,643][INFO ][gridgain-#956%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@70d5fcfe, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5a32835b, sib=GridJobSiblingImpl [sesId=f4079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=95079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067161--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067161--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=95079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2a4df9a0, sib=GridJobSiblingImpl [sesId=f4079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067153--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067153--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=15079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@653f8d12, sib=GridJobSiblingImpl [sesId=f4079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=75079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067159--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067159--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=75079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@70d4c191, sib=GridJobSiblingImpl [sesId=f4079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=55079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067157--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067157--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=55079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1ff05076, sib=GridJobSiblingImpl [sesId=f4079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=35079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067155--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067155--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=35079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,644][INFO ][gridgain-#883%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@249b7336, gridSize=1, arg=1]
[14:16:49,645][INFO ][gridgain-#884%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@59a8f100, arg=1]
[14:16:49,645][INFO ][gridgain-#886%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@cdfa65c, arg=4]
[14:16:49,645][INFO ][gridgain-#885%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@30700edc, arg=3]
[14:16:49,646][INFO ][gridgain-#906%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2f22e89e, arg=5]
[14:16:49,646][INFO ][gridgain-#967%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,646][INFO ][gridgain-#909%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@626664fc, arg=2]
[14:16:49,646][INFO ][test-runner][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,646][INFO ][gridgain-#967%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,647][INFO ][gridgain-#967%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,647][INFO ][gridgain-#967%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,647][INFO ][gridgain-#967%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,648][INFO ][gridgain-#967%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@249b7336, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@cdfa65c, sib=GridJobSiblingImpl [sesId=b7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067199--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067199--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@30700edc, sib=GridJobSiblingImpl [sesId=b7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067201--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067201--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=18079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@2f22e89e, sib=GridJobSiblingImpl [sesId=b7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067203--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067203--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=38079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@626664fc, sib=GridJobSiblingImpl [sesId=b7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067205--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067205--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=58079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@59a8f100, sib=GridJobSiblingImpl [sesId=b7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067197--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067197--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d7079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,649][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1ff335bb, gridSize=1, arg=2]
[14:16:49,650][INFO ][gridgain-#908%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ca7d316, arg=2]
[14:16:49,650][INFO ][gridgain-#915%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@e49f9fa, arg=4]
[14:16:49,651][INFO ][gridgain-#913%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1e1370ab, arg=3]
[14:16:49,651][INFO ][gridgain-#923%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1aba936a, arg=5]
[14:16:49,651][INFO ][gridgain-#910%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@184c9860, arg=1]
[14:16:49,651][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,651][INFO ][test-runner][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,652][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,652][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,652][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,652][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,653][INFO ][gridgain-#907%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@1ff335bb, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1e1370ab, sib=GridJobSiblingImpl [sesId=7a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=da079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067245--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067245--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=da079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@184c9860, sib=GridJobSiblingImpl [sesId=7a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1b079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067249--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067249--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1b079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@e49f9fa, sib=GridJobSiblingImpl [sesId=7a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ba079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067243--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067243--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ba079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4ca7d316, sib=GridJobSiblingImpl [sesId=7a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067241--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067241--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@1aba936a, sib=GridJobSiblingImpl [sesId=7a079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067247--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067247--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fa079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,654][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@4d91e365, gridSize=1, arg=3]
[14:16:49,655][INFO ][gridgain-#917%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6d41567b, arg=3]
[14:16:49,655][INFO ][gridgain-#902%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@24e823ac, arg=1]
[14:16:49,656][INFO ][gridgain-#921%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@47e0422, arg=2]
[14:16:49,656][INFO ][gridgain-#925%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@314b4e26, arg=5]
[14:16:49,656][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,656][INFO ][gridgain-#928%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c94dd46, arg=4]
[14:16:49,656][INFO ][test-runner][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,656][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,657][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,657][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,657][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,658][INFO ][gridgain-#912%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@4d91e365, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@6d41567b, sib=GridJobSiblingImpl [sesId=3d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067285--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067285--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@24e823ac, sib=GridJobSiblingImpl [sesId=3d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067287--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067287--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5c94dd46, sib=GridJobSiblingImpl [sesId=3d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dd079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067293--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067293--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dd079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@47e0422, sib=GridJobSiblingImpl [sesId=3d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067289--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067289--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@314b4e26, sib=GridJobSiblingImpl [sesId=3d079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bd079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067291--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067291--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bd079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,659][INFO ][gridgain-#926%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@49f2afad, gridSize=1, arg=4]
[14:16:49,660][INFO ][gridgain-#930%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@44548719, arg=5]
[14:16:49,660][INFO ][gridgain-#931%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@694a4639, arg=3]
[14:16:49,661][INFO ][gridgain-#920%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@b487e30, arg=4]
[14:16:49,661][INFO ][gridgain-#940%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4d9cad9d, arg=2]
[14:16:49,661][INFO ][gridgain-#926%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,661][INFO ][gridgain-#905%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5bebacc8, arg=1]
[14:16:49,661][INFO ][test-runner][GridSessionFutureWaitTaskAttributeSelfTest] Received attribute 'testName': testVal
[14:16:49,661][INFO ][gridgain-#926%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,662][INFO ][gridgain-#932%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,662][INFO ][gridgain-#932%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,662][INFO ][gridgain-#932%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:49,663][INFO ][gridgain-#932%session.GridSessionFutureWaitTaskAttributeSelfTest%][GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask@49f2afad, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@b487e30, sib=GridJobSiblingImpl [sesId=ff079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=50179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067333--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067333--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=50179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@5bebacc8, sib=GridJobSiblingImpl [sesId=ff079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=90179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067337--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067337--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=90179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@694a4639, sib=GridJobSiblingImpl [sesId=ff079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067331--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067331--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=30179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@44548719, sib=GridJobSiblingImpl [sesId=ff079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=10179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067329--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067329--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=10179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask$1@4d9cad9d, sib=GridJobSiblingImpl [sesId=ff079281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067335--7624692395778020759-1609582048925404879, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067335--7624692395778020759-1609582048925404879, nodeId=16566258-770b-4ecf-962f-a6a9d4076a69, isJobDone=true], jobCtx=GridJobContextImpl [jobId=70179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=16566258-770b-4ecf-962f-a6a9d4076a69, state=READY, lastHeartbeat=1353320208548, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55120, startTime=1353320208548], p=GridNodePredicate [ids=[16566258-770b-4ecf-962f-a6a9d4076a69]], isLoc=true, hash=594927703, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:49,664][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest] >>> Stopping test: testSetAttribute in 27 ms <<<
[14:16:50,720][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:50,721][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:50,726][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320209606, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=07f69281b31-16566258-770b-4ecf-962f-a6a9d4076a69, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionFutureWaitTaskAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:50,729][INFO ][main][GridSessionFutureWaitTaskAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionFutureWaitTaskAttributeSelfTest
>>> Grid uptime: 00:00:01:129
[14:16:50,744][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:50,744][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] << Enterprise Edition >>
[14:16:50,744][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Config URL: n/a
[14:16:50,744][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Daemon mode: off
[14:16:50,744][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:16:50,745][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:50,745][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:50,745][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:50,745][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:50,745][WARN ][main][GridSessionFutureWaitJobAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:16:50,745][WARN ][main][GridSessionFutureWaitJobAttributeSelfTest] Cache is not configured - data grid is off.
[14:16:50,746][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:50,746][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:50,746][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Enabled local MACs: C8600068582C
[14:16:51,251][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:51,258][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45130, locHost=/192.168.2.14]
[14:16:51,280][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:16:51,282][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:51,282][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55130
[14:16:51,282][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50013
[14:16:51,283][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278]
[14:16:51,283][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x78270D91]
[14:16:51,284][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:52,312][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:52,313][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:52,314][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:52,314][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:52,314][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:52,322][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionFutureWaitJobAttributeSelfTest
>>> Local node [ID=6CB9A71D-90AF-4C65-B212-2D3AE90802F4, order=1353320211278]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45130 UDP:50013 TCP:55130
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:52,322][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:16:52,328][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1a83cf00, gridSize=1, arg=1]
[14:16:52,330][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@64ba3b30, gridSize=1, arg=4]
[14:16:52,331][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1d28b30e, gridSize=1, arg=12]
[14:16:52,333][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@7069b861, gridSize=1, arg=7]
[14:16:52,333][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@3af4aa7a, gridSize=1, arg=2]
[14:16:52,335][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@15194a34, gridSize=1, arg=3]
[14:16:52,336][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@30fc45da, arg=5]
[14:16:52,336][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,337][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3a4346cd, arg=3]
[14:16:52,337][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,337][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@175beef, gridSize=1, arg=5]
[14:16:52,337][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@594a3da8, gridSize=1, arg=0]
[14:16:52,337][INFO ][grid-session-test-2][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,337][INFO ][grid-session-test-14][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,339][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@76bc3ed6, gridSize=1, arg=6]
[14:16:52,341][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@7dc5a30b, gridSize=1, arg=8]
[14:16:52,342][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@5f0e0edb, gridSize=1, arg=9]
[14:16:52,342][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@13f17c9e, gridSize=1, arg=11]
[14:16:52,343][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@18d5e26b, gridSize=1, arg=10]
[14:16:52,343][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@37263a93, gridSize=1, arg=13]
[14:16:52,343][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@178339aa, gridSize=1, arg=14]
[14:16:52,345][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@329c393d, gridSize=1, arg=15]
[14:16:52,345][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1edb587, arg=5]
[14:16:52,345][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,345][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@72be8e1, arg=1]
[14:16:52,345][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,345][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@6e5da364, gridSize=1, arg=16]
[14:16:52,345][INFO ][grid-session-test-6][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,345][INFO ][grid-session-test-8][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,345][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7edea8b3, arg=3]
[14:16:52,345][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,346][INFO ][grid-session-test-4][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,347][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@779cc1e3, gridSize=1, arg=17]
[14:16:52,347][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@746076c4, gridSize=1, arg=18]
[14:16:52,348][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@6d62f58e, gridSize=1, arg=19]
[14:16:52,348][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@2919d975, gridSize=1, arg=20]
[14:16:52,349][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1e2aabf8, gridSize=1, arg=22]
[14:16:52,349][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@5669e732, gridSize=1, arg=21]
[14:16:52,349][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@4ca7f8a4, gridSize=1, arg=23]
[14:16:52,350][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1d44d9b2, gridSize=1, arg=24]
[14:16:52,351][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6ccadbd, arg=4]
[14:16:52,351][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,351][INFO ][grid-session-test-3][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,351][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5746b158, arg=3]
[14:16:52,351][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,352][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1d0ca25a, arg=2]
[14:16:52,352][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,354][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67eaf25d, arg=1]
[14:16:52,354][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,354][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@16dd5a9d, arg=4]
[14:16:52,354][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,354][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2f5e8a8f, arg=3]
[14:16:52,354][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,354][INFO ][grid-session-test-1][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,354][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6f609af9, arg=5]
[14:16:52,354][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,354][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2d52912f, arg=3]
[14:16:52,354][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,354][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7c3f6843, arg=5]
[14:16:52,355][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,355][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7b9bbe8, arg=4]
[14:16:52,355][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,355][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7e83fff9, arg=1]
[14:16:52,356][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,356][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4e0dddff, arg=5]
[14:16:52,356][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,356][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@32df804e, arg=2]
[14:16:52,356][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5ffe40d5, arg=1]
[14:16:52,356][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,356][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,356][INFO ][grid-session-test-5][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,356][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6d97950e, arg=3]
[14:16:52,356][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,356][INFO ][grid-session-test-7][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,356][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6808680, arg=2]
[14:16:52,356][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,356][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67daca94, arg=4]
[14:16:52,356][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@b96dcb4, arg=5]
[14:16:52,357][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,357][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7abb0257, arg=4]
[14:16:52,357][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,357][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,357][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@247a9bff, arg=2]
[14:16:52,357][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,357][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@40c19080, arg=1]
[14:16:52,357][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,358][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@36536500, arg=3]
[14:16:52,358][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,358][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@799ac2e3, arg=5]
[14:16:52,358][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,358][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@71f84d01, arg=1]
[14:16:52,358][INFO ][grid-session-test-10][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,358][INFO ][grid-session-test-9][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,358][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,360][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@b708593, arg=2]
[14:16:52,360][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,361][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@310ab67f, arg=2]
[14:16:52,361][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@532c734c, arg=1]
[14:16:52,361][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,361][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,361][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@545532da, arg=5]
[14:16:52,361][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,362][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1d944379, arg=3]
[14:16:52,362][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,362][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70991d56, arg=4]
[14:16:52,362][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,362][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6ae6f8d7, arg=4]
[14:16:52,362][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,362][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@8517bc3, arg=1]
[14:16:52,362][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,363][INFO ][grid-session-test-11][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,363][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1f710374, arg=4]
[14:16:52,363][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,363][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@61db2215, arg=3]
[14:16:52,363][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@11da1f99, arg=2]
[14:16:52,363][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,363][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3499c4cc, arg=5]
[14:16:52,363][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,363][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,363][INFO ][grid-session-test-12][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,364][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70d9cc1a, arg=2]
[14:16:52,364][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,365][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7507ef7, arg=3]
[14:16:52,365][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,365][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2745240a, arg=3]
[14:16:52,365][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,365][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2ecfa52e, arg=4]
[14:16:52,365][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,366][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@357b7c1, arg=3]
[14:16:52,366][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,365][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@14c1c7c4, arg=4]
[14:16:52,365][INFO ][grid-session-test-15][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,367][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,367][INFO ][grid-session-test-13][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,367][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@563625d0, arg=3]
[14:16:52,367][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,368][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4f5cb20e, arg=1]
[14:16:52,368][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,368][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3e221f81, arg=2]
[14:16:52,368][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,368][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@64d78cb8, arg=2]
[14:16:52,368][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,368][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@32426e05, arg=5]
[14:16:52,368][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,369][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@42658704, arg=5]
[14:16:52,369][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,369][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7ceca6e7, arg=1]
[14:16:52,369][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,369][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5b036b16, arg=1]
[14:16:52,369][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,369][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@34cd8e77, arg=2]
[14:16:52,369][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,370][INFO ][gridgain-#1044%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1a83cf00, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3a4346cd, sib=GridJobSiblingImpl [sesId=23179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b5179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067419--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067419--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b5179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@16dd5a9d, sib=GridJobSiblingImpl [sesId=23179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f5179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067423--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067423--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f5179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4e0dddff, sib=GridJobSiblingImpl [sesId=23179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067427--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067427--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1d0ca25a, sib=GridJobSiblingImpl [sesId=23179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d5179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067421--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067421--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d5179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7e83fff9, sib=GridJobSiblingImpl [sesId=23179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067425--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067425--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,371][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67c78f98, arg=5]
[14:16:52,371][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@607dcb35, arg=5]
[14:16:52,371][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,372][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,372][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@73e0e19d, arg=4]
[14:16:52,372][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,372][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@283ed3f5, arg=1]
[14:16:52,372][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,373][INFO ][gridgain-#1048%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@594a3da8, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6f609af9, sib=GridJobSiblingImpl [sesId=13179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067489--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067489--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67eaf25d, sib=GridJobSiblingImpl [sesId=13179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d9179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067485--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067485--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d9179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6808680, sib=GridJobSiblingImpl [sesId=13179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067496--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067496--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7b9bbe8, sib=GridJobSiblingImpl [sesId=13179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a9179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067482--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067482--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a9179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2d52912f, sib=GridJobSiblingImpl [sesId=13179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067492--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067492--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,373][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2c4120aa, arg=4]
[14:16:52,373][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,373][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@72f1cbd7, arg=4]
[14:16:52,373][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,385][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7020b3a3, arg=3]
[14:16:52,385][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,385][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4dba4b54, arg=2]
[14:16:52,385][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,385][INFO ][grid-session-test-16][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,385][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@28278a47, arg=5]
[14:16:52,385][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,385][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@53c60f74, arg=2]
[14:16:52,385][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,386][INFO ][gridgain-#1053%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@175beef, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67daca94, sib=GridJobSiblingImpl [sesId=73179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067495--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067495--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7c3f6843, sib=GridJobSiblingImpl [sesId=73179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067491--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067491--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3a179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5ffe40d5, sib=GridJobSiblingImpl [sesId=73179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=da179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067501--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067501--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=da179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2f5e8a8f, sib=GridJobSiblingImpl [sesId=73179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f9179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067487--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067487--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f9179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@32df804e, sib=GridJobSiblingImpl [sesId=73179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ba179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067499--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067499--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ba179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,386][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@39aff012, arg=1]
[14:16:52,386][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,387][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4c15c0d7, arg=4]
[14:16:52,387][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,387][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@62ad4bb0, arg=5]
[14:16:52,387][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,389][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25b092ae, arg=1]
[14:16:52,389][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,389][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6a22a6bb, arg=4]
[14:16:52,389][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,389][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6b6df0d6, arg=2]
[14:16:52,389][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,389][INFO ][gridgain-#1059%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@76bc3ed6, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@40c19080, sib=GridJobSiblingImpl [sesId=83179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cb179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067516--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067516--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cb179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@247a9bff, sib=GridJobSiblingImpl [sesId=83179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ab179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067514--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067514--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ab179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7abb0257, sib=GridJobSiblingImpl [sesId=83179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8b179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067512--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067512--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8b179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6d97950e, sib=GridJobSiblingImpl [sesId=83179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067508--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067508--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4b179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@b96dcb4, sib=GridJobSiblingImpl [sesId=83179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6b179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067510--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067510--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6b179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,390][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1a79faa, arg=3]
[14:16:52,390][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,390][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@459232d7, arg=1]
[14:16:52,390][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,390][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@e65b778, arg=4]
[14:16:52,390][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,390][INFO ][grid-session-test-17][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,390][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1766de66, arg=4]
[14:16:52,390][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,390][INFO ][grid-session-test-18][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,391][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4037c7ee, arg=3]
[14:16:52,391][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,391][INFO ][grid-session-test-19][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,391][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@147e4f0, arg=2]
[14:16:52,391][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,391][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@df0c3a, arg=2]
[14:16:52,391][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3358fd70, arg=1]
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#1067%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@5f0e0edb, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@532c734c, sib=GridJobSiblingImpl [sesId=b3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067539--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067539--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1d944379, sib=GridJobSiblingImpl [sesId=b3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067543--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067543--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@b708593, sib=GridJobSiblingImpl [sesId=b3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067536--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067536--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6ae6f8d7, sib=GridJobSiblingImpl [sesId=b3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bd179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067547--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067547--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bd179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@799ac2e3, sib=GridJobSiblingImpl [sesId=b3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dc179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067533--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067533--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dc179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@57070723, arg=3]
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6293068a, arg=5]
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@22928095, arg=2]
[14:16:52,392][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6915798c, arg=1]
[14:16:52,392][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@e26fb32, arg=4]
[14:16:52,393][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,393][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@339bb448, arg=3]
[14:16:52,393][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,393][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@29d03e78, arg=5]
[14:16:52,393][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,392][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@37f02eaa, arg=5]
[14:16:52,393][INFO ][grid-session-test-20][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,393][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6013a567, arg=4]
[14:16:52,393][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,393][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1bb24442, arg=2]
[14:16:52,393][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,393][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@26b54dba, arg=1]
[14:16:52,393][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@549f5742, arg=3]
[14:16:52,394][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@49020230, arg=2]
[14:16:52,394][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@115080e5, arg=1]
[14:16:52,392][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@213596e0, arg=5]
[14:16:52,394][INFO ][grid-session-test-21][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,394][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@a530461, arg=2]
[14:16:52,394][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@365aad2a, arg=4]
[14:16:52,394][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@314d0183, arg=5]
[14:16:52,394][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1046%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@13f17c9e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1f710374, sib=GridJobSiblingImpl [sesId=d3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067542--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067542--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70d9cc1a, sib=GridJobSiblingImpl [sesId=d3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1e179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067553--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067553--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1e179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@8517bc3, sib=GridJobSiblingImpl [sesId=d3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067538--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067538--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2d179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3499c4cc, sib=GridJobSiblingImpl [sesId=d3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fd179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067551--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067551--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fd179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@61db2215, sib=GridJobSiblingImpl [sesId=d3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ad179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067546--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067546--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ad179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,394][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3a65fca, arg=4]
[14:16:52,394][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5fbc31d, arg=3]
[14:16:52,394][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@13304421, arg=1]
[14:16:52,394][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fdac8a5, arg=5]
[14:16:52,395][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,395][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@53c6a7fc, arg=4]
[14:16:52,395][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,393][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@d1d6070, arg=3]
[14:16:52,393][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,396][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,395][INFO ][grid-session-test-22][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,395][INFO ][grid-session-test-23][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,395][INFO ][gridgain-#1046%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@6d62f58e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@29d03e78, sib=GridJobSiblingImpl [sesId=18179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067656--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067656--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6013a567, sib=GridJobSiblingImpl [sesId=18179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067658--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067658--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@115080e5, sib=GridJobSiblingImpl [sesId=18179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067664--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067664--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=05279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1bb24442, sib=GridJobSiblingImpl [sesId=18179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067660--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067660--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@549f5742, sib=GridJobSiblingImpl [sesId=18179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067662--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067662--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e4279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,396][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@27b4fe4d, arg=1]
[14:16:52,396][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,396][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6e11e9eb, arg=1]
[14:16:52,396][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,396][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7b1ebc46, arg=5]
[14:16:52,396][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,396][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6225352b, arg=4]
[14:16:52,397][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,395][INFO ][gridgain-#1068%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@7dc5a30b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70991d56, sib=GridJobSiblingImpl [sesId=a3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067531--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067531--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bc179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@71f84d01, sib=GridJobSiblingImpl [sesId=a3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067525--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067525--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@545532da, sib=GridJobSiblingImpl [sesId=a3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067529--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067529--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@310ab67f, sib=GridJobSiblingImpl [sesId=a3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067527--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067527--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@36536500, sib=GridJobSiblingImpl [sesId=a3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067522--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067522--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2c179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,395][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@173ebc5c, arg=5]
[14:16:52,397][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,397][INFO ][gridgain-#1059%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@18d5e26b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4f5cb20e, sib=GridJobSiblingImpl [sesId=c3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067565--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067565--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=de179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@11da1f99, sib=GridJobSiblingImpl [sesId=c3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7e179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067559--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067559--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7e179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2ecfa52e, sib=GridJobSiblingImpl [sesId=c3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067563--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067563--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=be179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@42658704, sib=GridJobSiblingImpl [sesId=c3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067567--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067567--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fe179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7507ef7, sib=GridJobSiblingImpl [sesId=c3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9e179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067561--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067561--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9e179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,395][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@55d43df5, arg=4]
[14:16:52,397][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@369e58be, arg=3]
[14:16:52,397][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,397][INFO ][grid-session-test-25][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,394][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2d247c45, arg=1]
[14:16:52,398][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,398][INFO ][gridgain-#1059%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@37263a93, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@283ed3f5, sib=GridJobSiblingImpl [sesId=04179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067581--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067581--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=df179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@563625d0, sib=GridJobSiblingImpl [sesId=04179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067571--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067571--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@14c1c7c4, sib=GridJobSiblingImpl [sesId=04179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067569--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067569--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@32426e05, sib=GridJobSiblingImpl [sesId=04179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067574--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067574--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@34cd8e77, sib=GridJobSiblingImpl [sesId=04179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067577--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067577--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,394][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1edad6d0, arg=2]
[14:16:52,398][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,399][INFO ][gridgain-#1050%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@7069b861, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@72f1cbd7, sib=GridJobSiblingImpl [sesId=93179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067435--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067435--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@72be8e1, sib=GridJobSiblingImpl [sesId=93179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=66179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067430--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067430--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=66179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@607dcb35, sib=GridJobSiblingImpl [sesId=93179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=86179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067432--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067432--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=86179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7020b3a3, sib=GridJobSiblingImpl [sesId=93179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067438--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067438--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@53c60f74, sib=GridJobSiblingImpl [sesId=93179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=07179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067440--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067440--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=07179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,394][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@612fcbd8, arg=5]
[14:16:52,394][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5ba38598, arg=1]
[14:16:52,400][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,394][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4196c169, arg=3]
[14:16:52,394][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,400][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,400][INFO ][gridgain-#1050%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@329c393d, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4dba4b54, sib=GridJobSiblingImpl [sesId=74179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067596--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067596--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c0279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@62ad4bb0, sib=GridJobSiblingImpl [sesId=74179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067600--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067600--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=01279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@39aff012, sib=GridJobSiblingImpl [sesId=74179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067598--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067598--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e0279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6a22a6bb, sib=GridJobSiblingImpl [sesId=74179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=31279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067603--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067603--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=31279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1a79faa, sib=GridJobSiblingImpl [sesId=74179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=51279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067605--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067605--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=51279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,400][INFO ][gridgain-#1048%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@6e5da364, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@e65b778, sib=GridJobSiblingImpl [sesId=d6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=22279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067618--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067618--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=22279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@459232d7, sib=GridJobSiblingImpl [sesId=d6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=02279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067616--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067616--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=02279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@37f02eaa, sib=GridJobSiblingImpl [sesId=d6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=82279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067624--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067624--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=82279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@57070723, sib=GridJobSiblingImpl [sesId=d6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=62279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067622--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067622--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=62279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@147e4f0, sib=GridJobSiblingImpl [sesId=d6179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=42279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067620--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067620--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=42279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,400][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,400][INFO ][gridgain-#1051%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@779cc1e3, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@df0c3a, sib=GridJobSiblingImpl [sesId=e7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=03279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067632--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067632--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=03279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@339bb448, sib=GridJobSiblingImpl [sesId=e7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067639--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067639--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=73279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6293068a, sib=GridJobSiblingImpl [sesId=e7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=23279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067634--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067634--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=23279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1766de66, sib=GridJobSiblingImpl [sesId=e7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e2279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067630--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067630--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e2279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6915798c, sib=GridJobSiblingImpl [sesId=e7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=43279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067636--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067636--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=43279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,401][INFO ][gridgain-#1050%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@746076c4, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@22928095, sib=GridJobSiblingImpl [sesId=08179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067644--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067644--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c3279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@213596e0, sib=GridJobSiblingImpl [sesId=08179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067646--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067646--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e3279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@e26fb32, sib=GridJobSiblingImpl [sesId=08179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067648--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067648--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=04279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3358fd70, sib=GridJobSiblingImpl [sesId=08179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067642--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067642--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a3279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4037c7ee, sib=GridJobSiblingImpl [sesId=08179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=53279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067637--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067637--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=53279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,400][INFO ][gridgain-#1052%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@3af4aa7a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@28278a47, sib=GridJobSiblingImpl [sesId=33179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=57179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067445--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067445--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=57179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6b6df0d6, sib=GridJobSiblingImpl [sesId=33179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067451--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067451--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b7179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25b092ae, sib=GridJobSiblingImpl [sesId=33179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=97179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067449--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067449--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=97179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7edea8b3, sib=GridJobSiblingImpl [sesId=33179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=37179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067443--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067443--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=37179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4c15c0d7, sib=GridJobSiblingImpl [sesId=33179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=77179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067447--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067447--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=77179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,398][INFO ][gridgain-#1038%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@178339aa, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3e221f81, sib=GridJobSiblingImpl [sesId=34179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cf179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067580--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067580--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cf179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7ceca6e7, sib=GridJobSiblingImpl [sesId=34179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=00279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067584--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067584--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=00279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67c78f98, sib=GridJobSiblingImpl [sesId=34179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=20279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067586--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067586--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=20279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2c4120aa, sib=GridJobSiblingImpl [sesId=34179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067588--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067588--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=40279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2745240a, sib=GridJobSiblingImpl [sesId=34179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067576--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067576--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8f179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,397][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@76c8ea1a, arg=2]
[14:16:52,397][INFO ][gridgain-#1061%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1d28b30e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@30fc45da, sib=GridJobSiblingImpl [sesId=f3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e4179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067406--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067406--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e4179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@73e0e19d, sib=GridJobSiblingImpl [sesId=f3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=65179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067414--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067414--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=65179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@357b7c1, sib=GridJobSiblingImpl [sesId=f3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=05179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067408--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067408--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=05179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5b036b16, sib=GridJobSiblingImpl [sesId=f3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067412--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067412--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=45179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@64d78cb8, sib=GridJobSiblingImpl [sesId=f3179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=25179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067410--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067410--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=25179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,397][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4c97ed28, arg=2]
[14:16:52,401][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,401][INFO ][gridgain-#1051%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@4ca7f8a4, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@55d43df5, sib=GridJobSiblingImpl [sesId=78179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067709--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067709--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d7279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@612fcbd8, sib=GridJobSiblingImpl [sesId=78179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=07279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067696--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067696--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=07279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1edad6d0, sib=GridJobSiblingImpl [sesId=78179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=77279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067703--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067703--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=77279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@369e58be, sib=GridJobSiblingImpl [sesId=78179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067707--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067707--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b7279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2d247c45, sib=GridJobSiblingImpl [sesId=78179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=97279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067705--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067705--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=97279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,397][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@50448192, arg=3]
[14:16:52,402][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,397][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fef0b44, arg=3]
[14:16:52,397][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4e78b73f, arg=2]
[14:16:52,402][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,396][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1073f623, arg=4]
[14:16:52,402][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,396][INFO ][gridgain-#1046%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@2919d975, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@d1d6070, sib=GridJobSiblingImpl [sesId=28179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=45279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067668--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067668--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=45279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fdac8a5, sib=GridJobSiblingImpl [sesId=28179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=25279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067666--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067666--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=25279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@26b54dba, sib=GridJobSiblingImpl [sesId=28179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=75279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067671--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067671--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=75279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3a65fca, sib=GridJobSiblingImpl [sesId=28179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b5279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067675--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067675--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b5279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@49020230, sib=GridJobSiblingImpl [sesId=28179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=95279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067673--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067673--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=95279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,396][INFO ][grid-session-test-24][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,396][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67a256c7, arg=5]
[14:16:52,396][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@532cc66f, arg=1]
[14:16:52,396][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@45c8dc5e, arg=2]
[14:16:52,403][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,403][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,403][INFO ][gridgain-#1009%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@64ba3b30, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1edb587, sib=GridJobSiblingImpl [sesId=63179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067394--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067394--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=24179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4e78b73f, sib=GridJobSiblingImpl [sesId=63179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c4179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067404--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067404--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c4179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6225352b, sib=GridJobSiblingImpl [sesId=63179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067402--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067402--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a4179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@532cc66f, sib=GridJobSiblingImpl [sesId=63179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067400--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067400--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=84179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5746b158, sib=GridJobSiblingImpl [sesId=63179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=54179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067397--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067397--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=54179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,404][INFO ][gridgain-#1007%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1e2aabf8, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@50448192, sib=GridJobSiblingImpl [sesId=48179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d6279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067693--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067693--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d6279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@27b4fe4d, sib=GridJobSiblingImpl [sesId=48179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=26279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067682--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067682--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=26279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4c97ed28, sib=GridJobSiblingImpl [sesId=48179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=27279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067698--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067698--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=27279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7b1ebc46, sib=GridJobSiblingImpl [sesId=48179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=56279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067685--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067685--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=56279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1073f623, sib=GridJobSiblingImpl [sesId=48179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=96279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067689--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067689--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=96279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,402][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,401][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,401][INFO ][gridgain-#1048%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@5669e732, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4196c169, sib=GridJobSiblingImpl [sesId=38179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c6279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067692--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067692--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c6279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@314d0183, sib=GridJobSiblingImpl [sesId=38179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=17279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067697--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067697--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=17279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5ba38598, sib=GridJobSiblingImpl [sesId=38179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=57279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067701--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067701--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=57279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@a530461, sib=GridJobSiblingImpl [sesId=38179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=46279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067684--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067684--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=46279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@365aad2a, sib=GridJobSiblingImpl [sesId=38179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=86279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067688--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067688--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=86279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,403][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,404][INFO ][gridgain-#1034%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@15194a34, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@76c8ea1a, sib=GridJobSiblingImpl [sesId=43179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067468--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067468--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6ccadbd, sib=GridJobSiblingImpl [sesId=43179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067461--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067461--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=58179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67a256c7, sib=GridJobSiblingImpl [sesId=43179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067466--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067466--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6e11e9eb, sib=GridJobSiblingImpl [sesId=43179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=88179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067464--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067464--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=88179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fef0b44, sib=GridJobSiblingImpl [sesId=43179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067471--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067471--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,405][INFO ][gridgain-#1036%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1d44d9b2, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@13304421, sib=GridJobSiblingImpl [sesId=d8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=48279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067716--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067716--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=48279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@173ebc5c, sib=GridJobSiblingImpl [sesId=d8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=68279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067718--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067718--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=68279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@53c6a7fc, sib=GridJobSiblingImpl [sesId=d8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=88279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067720--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067720--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=88279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@45c8dc5e, sib=GridJobSiblingImpl [sesId=d8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a8279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067722--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067722--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a8279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5fbc31d, sib=GridJobSiblingImpl [sesId=d8179281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=28279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320067714--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320067714--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=28279281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,405][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] >>> Stopping test: testMultiThreaded in 82 ms <<<
[14:16:52,407][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:16:52,407][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@669b824, gridSize=1, arg=0]
[14:16:52,408][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6b846c6, arg=1]
[14:16:52,408][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,408][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@269fe5c5, arg=5]
[14:16:52,408][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,408][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,408][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5e5edf72, arg=4]
[14:16:52,408][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,408][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1de9c46d, arg=3]
[14:16:52,409][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,409][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2c2e749c, arg=2]
[14:16:52,409][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,409][INFO ][gridgain-#1042%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@669b824, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1de9c46d, sib=GridJobSiblingImpl [sesId=d7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068485--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068485--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=58579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5e5edf72, sib=GridJobSiblingImpl [sesId=d7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068483--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068483--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=38579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@269fe5c5, sib=GridJobSiblingImpl [sesId=d7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068481--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068481--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=18579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2c2e749c, sib=GridJobSiblingImpl [sesId=d7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068487--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068487--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=78579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6b846c6, sib=GridJobSiblingImpl [sesId=d7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068479--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068479--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f7579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,410][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@65075056, gridSize=1, arg=1]
[14:16:52,410][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@766d65fd, arg=5]
[14:16:52,410][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,410][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,410][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@621b6c74, arg=4]
[14:16:52,410][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,410][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6fd5609, arg=3]
[14:16:52,411][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,411][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@59441dc0, arg=2]
[14:16:52,411][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,411][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@432b71eb, arg=1]
[14:16:52,411][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,411][INFO ][gridgain-#1059%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@65075056, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6fd5609, sib=GridJobSiblingImpl [sesId=9a579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068527--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068527--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fa579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@766d65fd, sib=GridJobSiblingImpl [sesId=9a579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ba579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068523--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068523--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ba579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@59441dc0, sib=GridJobSiblingImpl [sesId=9a579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1b579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068529--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068529--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1b579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@432b71eb, sib=GridJobSiblingImpl [sesId=9a579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3b579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068531--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068531--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3b579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@621b6c74, sib=GridJobSiblingImpl [sesId=9a579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=da579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068525--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068525--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=da579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,412][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@c63a8af, gridSize=1, arg=2]
[14:16:52,412][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@23ab8f3f, arg=4]
[14:16:52,412][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,412][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@31f4a427, arg=2]
[14:16:52,412][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,413][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,413][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@62d77f83, arg=1]
[14:16:52,413][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,413][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@54498364, arg=5]
[14:16:52,413][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,413][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@34451610, arg=3]
[14:16:52,413][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,414][INFO ][gridgain-#1055%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@c63a8af, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@62d77f83, sib=GridJobSiblingImpl [sesId=5d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bd579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068571--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068571--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bd579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@34451610, sib=GridJobSiblingImpl [sesId=5d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fd579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068575--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068575--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fd579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@31f4a427, sib=GridJobSiblingImpl [sesId=5d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068569--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068569--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@54498364, sib=GridJobSiblingImpl [sesId=5d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dd579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068573--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068573--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dd579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@23ab8f3f, sib=GridJobSiblingImpl [sesId=5d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068567--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068567--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7d579281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,414][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@51d36f77, gridSize=1, arg=3]
[14:16:52,415][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@103b1799, arg=1]
[14:16:52,415][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,415][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,415][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4f6bc6e5, arg=5]
[14:16:52,415][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,415][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@77026e40, arg=3]
[14:16:52,415][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,415][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@409468ca, arg=4]
[14:16:52,415][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,416][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@178a4622, arg=2]
[14:16:52,416][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,416][INFO ][gridgain-#1062%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@51d36f77, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@178a4622, sib=GridJobSiblingImpl [sesId=10679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068619--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068619--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b0679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4f6bc6e5, sib=GridJobSiblingImpl [sesId=10679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=50679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068613--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068613--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=50679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@409468ca, sib=GridJobSiblingImpl [sesId=10679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=90679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068617--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068617--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=90679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@103b1799, sib=GridJobSiblingImpl [sesId=10679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=30679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068611--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068611--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=30679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@77026e40, sib=GridJobSiblingImpl [sesId=10679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068615--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068615--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=70679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,417][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@f785762, gridSize=1, arg=4]
[14:16:52,417][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@20b6680, arg=2]
[14:16:52,417][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,418][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,418][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@31395750, arg=4]
[14:16:52,418][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,418][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2b935e6f, arg=5]
[14:16:52,418][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,418][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3a765e8c, arg=3]
[14:16:52,418][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,418][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25b0eadd, arg=1]
[14:16:52,418][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,419][INFO ][gridgain-#1052%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@f785762, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@20b6680, sib=GridJobSiblingImpl [sesId=d2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068655--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068655--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3a765e8c, sib=GridJobSiblingImpl [sesId=d2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=53679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068661--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068661--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=53679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25b0eadd, sib=GridJobSiblingImpl [sesId=d2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068663--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068663--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=73679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@31395750, sib=GridJobSiblingImpl [sesId=d2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068657--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068657--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=13679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2b935e6f, sib=GridJobSiblingImpl [sesId=d2679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=33679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068659--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068659--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=33679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,420][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@76f10c77, gridSize=1, arg=5]
[14:16:52,420][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@29a3fb76, arg=3]
[14:16:52,420][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,420][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,420][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4b6995a2, arg=1]
[14:16:52,420][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,420][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4cd21555, arg=4]
[14:16:52,420][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,421][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@dee55c, arg=2]
[14:16:52,421][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,421][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7476a6d9, arg=5]
[14:16:52,421][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,422][INFO ][gridgain-#1009%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@76f10c77, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@29a3fb76, sib=GridJobSiblingImpl [sesId=95679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b5679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068699--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068699--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b5679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4cd21555, sib=GridJobSiblingImpl [sesId=95679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f5679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068703--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068703--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f5679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4b6995a2, sib=GridJobSiblingImpl [sesId=95679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d5679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068701--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068701--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d5679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7476a6d9, sib=GridJobSiblingImpl [sesId=95679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068707--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068707--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@dee55c, sib=GridJobSiblingImpl [sesId=95679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068705--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068705--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,423][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@7260c384, gridSize=1, arg=6]
[14:16:52,423][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25d3e3f3, arg=4]
[14:16:52,423][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,423][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,423][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7a1a79eb, arg=5]
[14:16:52,423][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,424][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@112b1e53, arg=3]
[14:16:52,424][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,424][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2ec449c6, arg=1]
[14:16:52,424][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,424][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@58c77e26, arg=2]
[14:16:52,424][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,425][INFO ][gridgain-#1025%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@7260c384, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2ec449c6, sib=GridJobSiblingImpl [sesId=58679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068749--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068749--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d8679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25d3e3f3, sib=GridJobSiblingImpl [sesId=58679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068743--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068743--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=78679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@112b1e53, sib=GridJobSiblingImpl [sesId=58679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068747--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068747--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b8679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@58c77e26, sib=GridJobSiblingImpl [sesId=58679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068751--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068751--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f8679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7a1a79eb, sib=GridJobSiblingImpl [sesId=58679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068745--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068745--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=98679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,425][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1f4cc34b, gridSize=1, arg=7]
[14:16:52,426][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@229db918, arg=5]
[14:16:52,426][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,426][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,426][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6d8b6b0e, arg=3]
[14:16:52,426][INFO ][gridgain-#977%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,427][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5c219c51, arg=4]
[14:16:52,427][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,427][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5052d2c4, arg=2]
[14:16:52,427][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,427][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@68a980fa, arg=1]
[14:16:52,427][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,428][INFO ][gridgain-#1068%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1f4cc34b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5c219c51, sib=GridJobSiblingImpl [sesId=1b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068791--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068791--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@229db918, sib=GridJobSiblingImpl [sesId=1b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068787--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068787--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5052d2c4, sib=GridJobSiblingImpl [sesId=1b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068793--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068793--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@68a980fa, sib=GridJobSiblingImpl [sesId=1b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068795--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068795--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bb679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6d8b6b0e, sib=GridJobSiblingImpl [sesId=1b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068789--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068789--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5b679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,429][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@60d861b7, gridSize=1, arg=8]
[14:16:52,430][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@40e2a37b, arg=4]
[14:16:52,430][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,430][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3c10098b, arg=3]
[14:16:52,430][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,430][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,430][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1df7670d, arg=1]
[14:16:52,430][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,430][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5f5b0184, arg=5]
[14:16:52,430][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,430][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5d8e95d9, arg=2]
[14:16:52,431][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,431][INFO ][gridgain-#1042%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@60d861b7, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1df7670d, sib=GridJobSiblingImpl [sesId=dd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068835--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068835--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3c10098b, sib=GridJobSiblingImpl [sesId=dd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068833--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068833--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5d8e95d9, sib=GridJobSiblingImpl [sesId=dd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068839--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068839--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5f5b0184, sib=GridJobSiblingImpl [sesId=dd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068837--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068837--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5e679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@40e2a37b, sib=GridJobSiblingImpl [sesId=dd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068831--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068831--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fd679281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,432][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@13b0e76a, gridSize=1, arg=9]
[14:16:52,433][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@30d8f246, arg=4]
[14:16:52,433][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,433][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7309eab7, arg=5]
[14:16:52,433][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,433][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@48164feb, arg=3]
[14:16:52,433][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,433][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4328ea3f, arg=1]
[14:16:52,434][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,434][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,434][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@332af08b, arg=2]
[14:16:52,434][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,435][INFO ][gridgain-#1040%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@13b0e76a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@332af08b, sib=GridJobSiblingImpl [sesId=90779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=31779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068883--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068883--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=31779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7309eab7, sib=GridJobSiblingImpl [sesId=90779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d0779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068877--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068877--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d0779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4328ea3f, sib=GridJobSiblingImpl [sesId=90779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=11779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068881--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068881--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=11779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@48164feb, sib=GridJobSiblingImpl [sesId=90779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f0779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068879--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068879--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f0779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@30d8f246, sib=GridJobSiblingImpl [sesId=90779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068875--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068875--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b0779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,435][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@3ae2d2fe, gridSize=1, arg=10]
[14:16:52,436][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@10181f5b, arg=3]
[14:16:52,436][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,437][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,437][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1b6915d4, arg=2]
[14:16:52,437][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,437][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6001654, arg=5]
[14:16:52,437][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,437][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fb2979e, arg=4]
[14:16:52,437][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,437][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@18a3fe6, arg=1]
[14:16:52,437][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,438][INFO ][gridgain-#1055%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@3ae2d2fe, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fb2979e, sib=GridJobSiblingImpl [sesId=53779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d3779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068925--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068925--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d3779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@10181f5b, sib=GridJobSiblingImpl [sesId=53779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068919--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068919--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=73779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6001654, sib=GridJobSiblingImpl [sesId=53779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b3779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068923--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068923--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b3779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1b6915d4, sib=GridJobSiblingImpl [sesId=53779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=93779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068921--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068921--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=93779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@18a3fe6, sib=GridJobSiblingImpl [sesId=53779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f3779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068927--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068927--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f3779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,439][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@461b29f, gridSize=1, arg=11]
[14:16:52,440][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1ed43997, arg=4]
[14:16:52,440][INFO ][gridgain-#1005%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,440][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,440][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7f10f850, arg=5]
[14:16:52,440][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,441][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2dcbcc56, arg=3]
[14:16:52,441][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,441][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3eeb95e, arg=2]
[14:16:52,441][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,441][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2a15e6f8, arg=1]
[14:16:52,441][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,442][INFO ][gridgain-#1062%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@461b29f, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2dcbcc56, sib=GridJobSiblingImpl [sesId=16779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=76779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068967--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068967--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=76779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1ed43997, sib=GridJobSiblingImpl [sesId=16779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068963--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068963--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3eeb95e, sib=GridJobSiblingImpl [sesId=16779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=96779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068969--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068969--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=96779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2a15e6f8, sib=GridJobSiblingImpl [sesId=16779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b6779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068971--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068971--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b6779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7f10f850, sib=GridJobSiblingImpl [sesId=16779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=56779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320068965--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320068965--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=56779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,443][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@5f98339a, gridSize=1, arg=12]
[14:16:52,444][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@360088ee, arg=3]
[14:16:52,444][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,444][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,444][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@49487ce8, arg=2]
[14:16:52,444][INFO ][gridgain-#1027%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,445][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@539546ee, arg=5]
[14:16:52,445][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,445][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5d1ddcf4, arg=4]
[14:16:52,445][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,445][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@163f47e, arg=1]
[14:16:52,445][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,446][INFO ][gridgain-#1052%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@5f98339a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@360088ee, sib=GridJobSiblingImpl [sesId=d8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069007--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069007--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5d1ddcf4, sib=GridJobSiblingImpl [sesId=d8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=59779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069013--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069013--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=59779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@539546ee, sib=GridJobSiblingImpl [sesId=d8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069011--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069011--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=39779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@163f47e, sib=GridJobSiblingImpl [sesId=d8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=79779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069015--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069015--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=79779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@49487ce8, sib=GridJobSiblingImpl [sesId=d8779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069009--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069009--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=19779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,447][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@4de07d3e, gridSize=1, arg=13]
[14:16:52,448][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5999ef99, arg=3]
[14:16:52,448][INFO ][gridgain-#979%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,448][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,448][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4d3e9963, arg=1]
[14:16:52,448][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,449][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fe26d9b, arg=5]
[14:16:52,449][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,449][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@48c85a33, arg=2]
[14:16:52,449][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,449][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@94153c4, arg=4]
[14:16:52,449][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,450][INFO ][gridgain-#1009%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@4de07d3e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5999ef99, sib=GridJobSiblingImpl [sesId=9b779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069051--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069051--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bb779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1fe26d9b, sib=GridJobSiblingImpl [sesId=9b779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069055--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069055--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fb779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4d3e9963, sib=GridJobSiblingImpl [sesId=9b779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069053--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069053--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=db779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@48c85a33, sib=GridJobSiblingImpl [sesId=9b779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069057--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069057--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1c779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@94153c4, sib=GridJobSiblingImpl [sesId=9b779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069059--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069059--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3c779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,451][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@475f7458, gridSize=1, arg=14]
[14:16:52,452][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2eac0b4, arg=3]
[14:16:52,452][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,452][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,452][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4bcf6203, arg=1]
[14:16:52,452][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,452][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@45826b5c, arg=5]
[14:16:52,452][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,453][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2116aeb, arg=4]
[14:16:52,453][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,453][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1c2bd9d7, arg=2]
[14:16:52,453][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,454][INFO ][gridgain-#1025%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@475f7458, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1c2bd9d7, sib=GridJobSiblingImpl [sesId=5e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069103--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069103--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fe779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4bcf6203, sib=GridJobSiblingImpl [sesId=5e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069097--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069097--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@45826b5c, sib=GridJobSiblingImpl [sesId=5e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069099--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069099--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=be779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2eac0b4, sib=GridJobSiblingImpl [sesId=5e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069095--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069095--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2116aeb, sib=GridJobSiblingImpl [sesId=5e779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069101--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069101--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=de779281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,455][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@41a8bf52, gridSize=1, arg=15]
[14:16:52,456][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@221ec03, arg=5]
[14:16:52,456][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,456][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25be9101, arg=4]
[14:16:52,456][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,456][INFO ][gridgain-#1008%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,456][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2263ac78, arg=2]
[14:16:52,456][INFO ][gridgain-#980%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,456][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2da8c22b, arg=1]
[14:16:52,457][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,457][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3dd00beb, arg=3]
[14:16:52,457][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,458][INFO ][gridgain-#1068%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@41a8bf52, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3dd00beb, sib=GridJobSiblingImpl [sesId=11879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b1879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069147--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069147--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b1879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2da8c22b, sib=GridJobSiblingImpl [sesId=11879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=91879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069145--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069145--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=91879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25be9101, sib=GridJobSiblingImpl [sesId=11879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=51879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069141--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069141--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=51879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@221ec03, sib=GridJobSiblingImpl [sesId=11879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=31879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069139--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069139--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=31879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2263ac78, sib=GridJobSiblingImpl [sesId=11879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=71879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069143--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069143--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=71879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,459][INFO ][gridgain-#1004%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@4bb17b4c, gridSize=1, arg=16]
[14:16:52,459][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4123a08e, arg=5]
[14:16:52,460][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,460][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,460][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@44594680, arg=4]
[14:16:52,460][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,460][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5381298a, arg=2]
[14:16:52,460][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,460][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7115e166, arg=1]
[14:16:52,460][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,461][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@44ce4dda, arg=3]
[14:16:52,461][INFO ][gridgain-#1032%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,462][INFO ][gridgain-#1042%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@4bb17b4c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5381298a, sib=GridJobSiblingImpl [sesId=d3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=34879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069187--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069187--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=34879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@44ce4dda, sib=GridJobSiblingImpl [sesId=d3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=74879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069191--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069191--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=74879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4123a08e, sib=GridJobSiblingImpl [sesId=d3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069183--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069183--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@44594680, sib=GridJobSiblingImpl [sesId=d3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=14879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069185--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069185--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=14879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7115e166, sib=GridJobSiblingImpl [sesId=d3879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=54879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069189--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069189--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=54879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,463][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@32f4bb6c, gridSize=1, arg=17]
[14:16:52,463][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67aac78d, arg=4]
[14:16:52,463][INFO ][gridgain-#975%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,464][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,464][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@401419d0, arg=3]
[14:16:52,464][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,464][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5dd6c8b9, arg=2]
[14:16:52,464][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,464][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7d132f26, arg=5]
[14:16:52,464][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,464][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@613cc996, arg=1]
[14:16:52,464][INFO ][gridgain-#1013%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,465][INFO ][gridgain-#1040%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@32f4bb6c, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5dd6c8b9, sib=GridJobSiblingImpl [sesId=96879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f6879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069231--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069231--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f6879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@67aac78d, sib=GridJobSiblingImpl [sesId=96879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b6879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069227--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069227--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b6879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7d132f26, sib=GridJobSiblingImpl [sesId=96879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=17879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069233--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069233--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=17879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@401419d0, sib=GridJobSiblingImpl [sesId=96879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d6879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069229--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069229--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d6879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@613cc996, sib=GridJobSiblingImpl [sesId=96879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=37879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069235--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069235--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=37879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,466][INFO ][gridgain-#998%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1f7309a, gridSize=1, arg=18]
[14:16:52,467][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@b97cf78, arg=1]
[14:16:52,467][INFO ][gridgain-#996%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,467][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,467][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@69cad977, arg=5]
[14:16:52,468][INFO ][gridgain-#1016%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,468][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3ec1e10c, arg=3]
[14:16:52,468][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,468][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2a9dfb04, arg=4]
[14:16:52,468][INFO ][gridgain-#1000%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,468][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1bb5d53a, arg=2]
[14:16:52,468][INFO ][gridgain-#1021%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,469][INFO ][gridgain-#1055%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1f7309a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2a9dfb04, sib=GridJobSiblingImpl [sesId=59879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d9879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069277--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069277--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d9879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@b97cf78, sib=GridJobSiblingImpl [sesId=59879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=79879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069271--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069271--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=79879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3ec1e10c, sib=GridJobSiblingImpl [sesId=59879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b9879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069275--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069275--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b9879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@69cad977, sib=GridJobSiblingImpl [sesId=59879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=99879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069273--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069273--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=99879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1bb5d53a, sib=GridJobSiblingImpl [sesId=59879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f9879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069279--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069279--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f9879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,470][INFO ][gridgain-#999%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@56149895, gridSize=1, arg=19]
[14:16:52,471][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1bd60b6a, arg=2]
[14:16:52,471][INFO ][gridgain-#1011%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,471][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,471][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@65e95f04, arg=5]
[14:16:52,471][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,472][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@622d8a59, arg=1]
[14:16:52,472][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,472][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@615c1ae3, arg=4]
[14:16:52,472][INFO ][gridgain-#1033%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,472][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1876a6d, arg=3]
[14:16:52,472][INFO ][gridgain-#1014%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,473][INFO ][gridgain-#1062%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@56149895, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@65e95f04, sib=GridJobSiblingImpl [sesId=1c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069317--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069317--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1876a6d, sib=GridJobSiblingImpl [sesId=1c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069323--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069323--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bc879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@615c1ae3, sib=GridJobSiblingImpl [sesId=1c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069321--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069321--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1bd60b6a, sib=GridJobSiblingImpl [sesId=1c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069315--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069315--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@622d8a59, sib=GridJobSiblingImpl [sesId=1c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069319--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069319--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7c879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,474][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@677bc0ac, gridSize=1, arg=20]
[14:16:52,475][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4ba0bb6f, arg=5]
[14:16:52,475][INFO ][gridgain-#1030%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,475][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,475][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@667f30f8, arg=3]
[14:16:52,476][INFO ][gridgain-#1029%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,476][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6da69147, arg=1]
[14:16:52,476][INFO ][gridgain-#1028%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,476][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@528c048e, arg=2]
[14:16:52,476][INFO ][gridgain-#1001%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,476][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@28681e5a, arg=4]
[14:16:52,476][INFO ][gridgain-#995%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,477][INFO ][gridgain-#1010%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@677bc0ac, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@28681e5a, sib=GridJobSiblingImpl [sesId=de879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069367--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069367--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@667f30f8, sib=GridJobSiblingImpl [sesId=de879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069361--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069361--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6da69147, sib=GridJobSiblingImpl [sesId=de879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069363--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069363--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4ba0bb6f, sib=GridJobSiblingImpl [sesId=de879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069359--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069359--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fe879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@528c048e, sib=GridJobSiblingImpl [sesId=de879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069365--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069365--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5f879281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,478][INFO ][gridgain-#1019%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@57b33087, gridSize=1, arg=21]
[14:16:52,479][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@753f67a9, arg=5]
[14:16:52,479][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,479][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,479][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@575887db, arg=4]
[14:16:52,479][INFO ][gridgain-#997%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,480][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@35371c0c, arg=1]
[14:16:52,480][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,480][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3512731f, arg=2]
[14:16:52,480][INFO ][gridgain-#1012%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,480][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4e441371, arg=3]
[14:16:52,480][INFO ][gridgain-#1031%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,481][INFO ][gridgain-#1009%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@57b33087, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@35371c0c, sib=GridJobSiblingImpl [sesId=91979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069407--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069407--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f1979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@753f67a9, sib=GridJobSiblingImpl [sesId=91979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b1979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069403--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069403--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b1979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3512731f, sib=GridJobSiblingImpl [sesId=91979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069409--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069409--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=12979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4e441371, sib=GridJobSiblingImpl [sesId=91979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069411--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069411--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=32979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@575887db, sib=GridJobSiblingImpl [sesId=91979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d1979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069405--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069405--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d1979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,482][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1ad044c6, gridSize=1, arg=22]
[14:16:52,483][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4f1b8540, arg=5]
[14:16:52,483][INFO ][gridgain-#978%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,483][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@268c0162, arg=3]
[14:16:52,483][INFO ][gridgain-#1006%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,484][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@31aedcb3, arg=4]
[14:16:52,484][INFO ][gridgain-#1017%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,484][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,484][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5f5330ea, arg=1]
[14:16:52,484][INFO ][gridgain-#1003%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,484][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4eb0838a, arg=2]
[14:16:52,484][INFO ][gridgain-#1002%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,485][INFO ][gridgain-#1020%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@1ad044c6, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4f1b8540, sib=GridJobSiblingImpl [sesId=54979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=74979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069447--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069447--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=74979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5f5330ea, sib=GridJobSiblingImpl [sesId=54979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d4979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069453--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069453--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d4979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@268c0162, sib=GridJobSiblingImpl [sesId=54979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=94979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069449--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069449--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=94979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4eb0838a, sib=GridJobSiblingImpl [sesId=54979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f4979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069455--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069455--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f4979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@31aedcb3, sib=GridJobSiblingImpl [sesId=54979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b4979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069451--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069451--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b4979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:52,486][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@211aa79a, gridSize=1, arg=23]
[14:16:52,487][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5cf18070, arg=1]
[14:16:52,487][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,487][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,487][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@204d080d, arg=3]
[14:16:52,487][INFO ][gridgain-#1018%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,488][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@214b9e0c, arg=4]
[14:16:52,488][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,488][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@732768bb, arg=2]
[14:16:52,488][INFO ][gridgain-#1015%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,488][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6b7536e7, arg=5]
[14:16:52,488][INFO ][gridgain-#976%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,489][INFO ][gridgain-#1036%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@211aa79a, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@204d080d, sib=GridJobSiblingImpl [sesId=17979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=57979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069493--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069493--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=57979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6b7536e7, sib=GridJobSiblingImpl [sesId=17979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069499--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069499--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b7979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@732768bb, sib=GridJobSiblingImpl [sesId=17979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=97979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069497--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069497--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=97979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5cf18070, sib=GridJobSiblingImpl [sesId=17979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=37979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069491--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069491--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=37979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@214b9e0c, sib=GridJobSiblingImpl [sesId=17979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=77979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069495--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069495--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=77979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,490][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [task=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@30eb9dfa, gridSize=1, arg=24]
[14:16:52,491][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@47e1b36, arg=5]
[14:16:52,491][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,491][INFO ][test-runner][GridSessionFutureWaitJobAttributeSelfTest] Received attribute 'testName': testVal
[14:16:52,492][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2505b08c, arg=2]
[14:16:52,492][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,492][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3cd0a12d, arg=1]
[14:16:52,492][INFO ][gridgain-#1023%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,492][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7e41986c, arg=4]
[14:16:52,493][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1889ca51, arg=3]
[14:16:52,493][INFO ][gridgain-#1024%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,493][INFO ][gridgain-#1026%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:52,494][INFO ][gridgain-#1042%session.GridSessionFutureWaitJobAttributeSelfTest%][GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask@30eb9dfa, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1889ca51, sib=GridJobSiblingImpl [sesId=d9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069543--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069543--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2505b08c, sib=GridJobSiblingImpl [sesId=d9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069537--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069537--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3cd0a12d, sib=GridJobSiblingImpl [sesId=d9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069539--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069539--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@47e1b36, sib=GridJobSiblingImpl [sesId=d9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069535--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069535--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7e41986c, sib=GridJobSiblingImpl [sesId=d9979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069541--5615376054336617740-7834476772210986085, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069541--5615376054336617740-7834476772210986085, nodeId=6cb9a71d-90af-4c65-b212-2d3ae90802f4, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5a979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=6cb9a71d-90af-4c65-b212-2d3ae90802f4, state=READY, lastHeartbeat=1353320211278, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55130, startTime=1353320211278], p=GridNodePredicate [ids=[6cb9a71d-90af-4c65-b212-2d3ae90802f4]], isLoc=true, hash=-1492335434, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:52,494][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest] >>> Stopping test: testSetAttribute in 87 ms <<<
[14:16:53,553][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:53,553][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:53,558][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320212315, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e2179281b31-6cb9a71d-90af-4c65-b212-2d3ae90802f4, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionFutureWaitJobAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:53,561][INFO ][main][GridSessionFutureWaitJobAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionFutureWaitJobAttributeSelfTest
>>> Grid uptime: 00:00:01:238
[14:16:53,575][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:53,575][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] << Enterprise Edition >>
[14:16:53,575][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Config URL: n/a
[14:16:53,575][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Daemon mode: off
[14:16:53,575][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:16:53,575][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:53,576][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:53,576][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:53,576][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:53,576][WARN ][main][GridSessionTaskWaitJobAttributeSelfTest] SMTP is not configured - email notifications are off.
[14:16:53,576][WARN ][main][GridSessionTaskWaitJobAttributeSelfTest] Cache is not configured - data grid is off.
[14:16:53,577][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:53,577][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:53,577][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Enabled local MACs: C8600068582C
[14:16:54,083][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:54,091][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45140, locHost=/192.168.2.14]
[14:16:54,123][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] Security status [authentication=on, secure-session=on]
[14:16:54,126][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:54,126][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55140
[14:16:54,127][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50014
[14:16:54,127][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117]
[14:16:54,128][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x315289BB]
[14:16:54,129][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:55,162][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:55,164][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:55,164][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:55,164][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:55,164][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:55,168][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionTaskWaitJobAttributeSelfTest
>>> Local node [ID=7DDF2AED-4B95-4046-9DA8-550D93BF2E73, order=1353320214117]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45140 UDP:50014 TCP:55140
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:55,168][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] >>> Starting test: testMultiThreaded <<<
[14:16:55,174][INFO ][gridgain-#1092%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@2964a05d, gridSize=1, arg=2]
[14:16:55,174][INFO ][gridgain-#1090%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@3abd6b1e, gridSize=1, arg=1]
[14:16:55,175][INFO ][gridgain-#1093%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@53cc48dd, gridSize=1, arg=4]
[14:16:55,175][INFO ][gridgain-#1089%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@d5c4ee6, gridSize=1, arg=0]
[14:16:55,174][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@69c39cb2, gridSize=1, arg=3]
[14:16:55,189][INFO ][gridgain-#1094%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3253be7c, arg=4]
[14:16:55,189][INFO ][gridgain-#1095%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25c78000, arg=4]
[14:16:55,189][INFO ][gridgain-#1094%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,189][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@fdfacc4, arg=3]
[14:16:55,190][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,189][INFO ][gridgain-#1097%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@17fed8b4, arg=5]
[14:16:55,190][INFO ][gridgain-#1097%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,189][INFO ][gridgain-#1098%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@77d4433f, arg=1]
[14:16:55,190][INFO ][gridgain-#1098%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,189][INFO ][gridgain-#1095%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,189][INFO ][gridgain-#1096%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@251970e2, arg=5]
[14:16:55,190][INFO ][gridgain-#1099%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7dabf7cb, arg=4]
[14:16:55,190][INFO ][gridgain-#1101%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@29421875, arg=4]
[14:16:55,190][INFO ][gridgain-#1101%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,190][INFO ][gridgain-#1096%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,190][INFO ][gridgain-#1099%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,191][INFO ][gridgain-#1102%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5c451dba, arg=5]
[14:16:55,191][INFO ][gridgain-#1102%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,191][INFO ][gridgain-#1105%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@230a4761, arg=1]
[14:16:55,191][INFO ][gridgain-#1105%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,192][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4ca49360, arg=5]
[14:16:55,192][INFO ][gridgain-#1110%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@247aa859, arg=2]
[14:16:55,192][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,192][INFO ][gridgain-#1107%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@108b1a8f, arg=2]
[14:16:55,192][INFO ][gridgain-#1110%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,192][INFO ][gridgain-#1107%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,193][INFO ][gridgain-#1113%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@612c4b66, arg=1]
[14:16:55,193][INFO ][gridgain-#1113%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,193][INFO ][gridgain-#1111%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@d1b9cfd, arg=2]
[14:16:55,193][INFO ][gridgain-#1111%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,193][INFO ][gridgain-#1114%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2843d653, arg=3]
[14:16:55,193][INFO ][gridgain-#1114%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,195][INFO ][gridgain-#1116%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@328c3770, arg=4]
[14:16:55,195][INFO ][gridgain-#1116%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,195][INFO ][gridgain-#1092%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,195][INFO ][gridgain-#1118%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70c27dc4, arg=3]
[14:16:55,195][INFO ][gridgain-#1118%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,195][INFO ][gridgain-#1092%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,195][INFO ][gridgain-#1122%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70cf08b1, arg=3]
[14:16:55,195][INFO ][gridgain-#1122%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,196][INFO ][gridgain-#1093%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,196][INFO ][gridgain-#1093%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,196][INFO ][gridgain-#1126%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1c7caac5, arg=2]
[14:16:55,196][INFO ][gridgain-#1126%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,196][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,196][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1123%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@338f6c7d, arg=1]
[14:16:55,197][INFO ][gridgain-#1121%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1123%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,197][INFO ][gridgain-#1128%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1127%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@138bb3fd, arg=5]
[14:16:55,197][INFO ][gridgain-#1127%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,197][INFO ][gridgain-#1089%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1089%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1089%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,197][INFO ][gridgain-#1130%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@612c4b66, arg=1]
[14:16:55,197][INFO ][gridgain-#1130%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,199][INFO ][gridgain-#1131%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3caf7a1f, arg=2]
[14:16:55,199][INFO ][gridgain-#1131%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,199][INFO ][gridgain-#1129%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,199][INFO ][gridgain-#1090%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,199][INFO ][gridgain-#1133%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1f51c9a0, arg=3]
[14:16:55,199][INFO ][gridgain-#1133%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,199][INFO ][gridgain-#1132%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,199][INFO ][gridgain-#1134%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,199][INFO ][gridgain-#1135%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,200][INFO ][gridgain-#1137%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,200][INFO ][gridgain-#1138%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,200][INFO ][gridgain-#1136%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,200][INFO ][gridgain-#1137%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@2964a05d, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70cf08b1, sib=GridJobSiblingImpl [sesId=2d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069619--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069619--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@612c4b66, sib=GridJobSiblingImpl [sesId=2d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069613--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069613--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=de979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@247aa859, sib=GridJobSiblingImpl [sesId=2d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069607--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069607--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@29421875, sib=GridJobSiblingImpl [sesId=2d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069601--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069601--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@17fed8b4, sib=GridJobSiblingImpl [sesId=2d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bd979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069595--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069595--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bd979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,200][INFO ][gridgain-#1138%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@53cc48dd, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@77d4433f, sib=GridJobSiblingImpl [sesId=3d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069603--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069603--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3253be7c, sib=GridJobSiblingImpl [sesId=3d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cd979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069596--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069596--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cd979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1c7caac5, sib=GridJobSiblingImpl [sesId=3d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069620--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069620--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2843d653, sib=GridJobSiblingImpl [sesId=3d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069615--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069615--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fe979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@5c451dba, sib=GridJobSiblingImpl [sesId=3d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069609--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069609--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,202][INFO ][gridgain-#1139%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,202][INFO ][gridgain-#1140%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,202][INFO ][gridgain-#1141%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,202][INFO ][gridgain-#1142%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,202][INFO ][gridgain-#1139%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@69c39cb2, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@d1b9cfd, sib=GridJobSiblingImpl [sesId=1d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069629--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069629--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=df979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@25c78000, sib=GridJobSiblingImpl [sesId=1d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069623--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069623--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4ca49360, sib=GridJobSiblingImpl [sesId=1d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069627--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069627--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bf979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@fdfacc4, sib=GridJobSiblingImpl [sesId=1d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069625--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069625--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9f979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@338f6c7d, sib=GridJobSiblingImpl [sesId=1d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069631--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069631--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ff979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:55,202][INFO ][gridgain-#1143%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,202][INFO ][gridgain-#1141%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@d5c4ee6, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@612c4b66, sib=GridJobSiblingImpl [sesId=fc979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ee979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069614--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069614--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ee979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7dabf7cb, sib=GridJobSiblingImpl [sesId=fc979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ed979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069598--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069598--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ed979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@108b1a8f, sib=GridJobSiblingImpl [sesId=fc979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069602--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069602--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@70c27dc4, sib=GridJobSiblingImpl [sesId=fc979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069608--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069608--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8e979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@251970e2, sib=GridJobSiblingImpl [sesId=fc979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069593--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069593--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,203][INFO ][gridgain-#1143%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@3abd6b1e, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1f51c9a0, sib=GridJobSiblingImpl [sesId=0d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069650--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069650--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=21a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@138bb3fd, sib=GridJobSiblingImpl [sesId=0d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069646--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069646--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e0a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3caf7a1f, sib=GridJobSiblingImpl [sesId=0d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069648--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069648--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=01a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@230a4761, sib=GridJobSiblingImpl [sesId=0d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069640--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069640--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=80a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@328c3770, sib=GridJobSiblingImpl [sesId=0d979281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069642--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069642--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a0a79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,203][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] >>> Stopping test: testMultiThreaded in 35 ms <<<
[14:16:55,205][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] >>> Starting test: testSetAttribute <<<
[14:16:55,206][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@698a2d7d, gridSize=1, arg=0]
[14:16:55,206][INFO ][gridgain-#1145%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7696368a, arg=4]
[14:16:55,206][INFO ][gridgain-#1145%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,206][INFO ][gridgain-#1146%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7fd6dad8, arg=5]
[14:16:55,206][INFO ][gridgain-#1146%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,207][INFO ][gridgain-#1148%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@dc30dfa, arg=2]
[14:16:55,207][INFO ][gridgain-#1148%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,207][INFO ][gridgain-#1070%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6eb09fac, arg=1]
[14:16:55,207][INFO ][gridgain-#1070%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,207][INFO ][gridgain-#1148%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@ca9f25, arg=3]
[14:16:55,208][INFO ][gridgain-#1148%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,207][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,208][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,208][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,208][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,208][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,209][INFO ][gridgain-#1144%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@698a2d7d, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7fd6dad8, sib=GridJobSiblingImpl [sesId=baa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=faa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069807--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069807--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=faa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@ca9f25, sib=GridJobSiblingImpl [sesId=baa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5ba79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069813--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069813--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5ba79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@dc30dfa, sib=GridJobSiblingImpl [sesId=baa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1ba79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069809--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069809--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1ba79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7696368a, sib=GridJobSiblingImpl [sesId=baa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=daa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069805--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069805--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=daa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@6eb09fac, sib=GridJobSiblingImpl [sesId=baa79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3ba79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069811--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069811--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3ba79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,209][INFO ][gridgain-#1071%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@5b7d1b24, gridSize=1, arg=1]
[14:16:55,210][INFO ][gridgain-#1072%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@62363bce, arg=4]
[14:16:55,210][INFO ][gridgain-#1072%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,210][INFO ][gridgain-#1074%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@750d7792, arg=2]
[14:16:55,210][INFO ][gridgain-#1074%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,210][INFO ][gridgain-#1073%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@569083c1, arg=5]
[14:16:55,210][INFO ][gridgain-#1073%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,210][INFO ][gridgain-#1074%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@72810768, arg=1]
[14:16:55,210][INFO ][gridgain-#1074%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,210][INFO ][gridgain-#1071%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,210][INFO ][gridgain-#1094%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@47254e47, arg=3]
[14:16:55,210][INFO ][gridgain-#1094%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,210][INFO ][gridgain-#1154%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,210][INFO ][gridgain-#1154%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,211][INFO ][gridgain-#1155%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,211][INFO ][gridgain-#1157%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,211][INFO ][gridgain-#1157%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@5b7d1b24, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@750d7792, sib=GridJobSiblingImpl [sesId=7da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bda79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069851--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069851--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bda79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@62363bce, sib=GridJobSiblingImpl [sesId=7da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069849--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069849--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@72810768, sib=GridJobSiblingImpl [sesId=7da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fda79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069855--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069855--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fda79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@569083c1, sib=GridJobSiblingImpl [sesId=7da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dda79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069853--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069853--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dda79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@47254e47, sib=GridJobSiblingImpl [sesId=7da79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1ea79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069857--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069857--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1ea79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:55,212][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@3f15676d, gridSize=1, arg=2]
[14:16:55,213][INFO ][gridgain-#1097%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@37464fee, arg=5]
[14:16:55,213][INFO ][gridgain-#1097%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,213][INFO ][gridgain-#1095%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@495c0102, arg=4]
[14:16:55,213][INFO ][gridgain-#1095%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,213][INFO ][gridgain-#1098%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@59377ac0, arg=3]
[14:16:55,213][INFO ][gridgain-#1098%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,213][INFO ][gridgain-#1111%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@9ff5160, arg=2]
[14:16:55,213][INFO ][gridgain-#1111%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,213][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,213][INFO ][gridgain-#1098%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@16394576, arg=1]
[14:16:55,213][INFO ][gridgain-#1098%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,213][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,213][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,213][INFO ][gridgain-#1100%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,213][INFO ][gridgain-#1162%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,214][INFO ][gridgain-#1162%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@3f15676d, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@59377ac0, sib=GridJobSiblingImpl [sesId=30b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=90b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069897--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069897--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=90b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@37464fee, sib=GridJobSiblingImpl [sesId=30b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=50b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069893--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069893--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=50b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@9ff5160, sib=GridJobSiblingImpl [sesId=30b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b0b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069899--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069899--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b0b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@495c0102, sib=GridJobSiblingImpl [sesId=30b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=70b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069895--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069895--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=70b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@16394576, sib=GridJobSiblingImpl [sesId=30b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d0b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069901--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069901--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d0b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true]]]
[14:16:55,214][INFO ][gridgain-#1092%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@72be552b, gridSize=1, arg=3]
[14:16:55,215][INFO ][gridgain-#1099%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@693f87b1, arg=4]
[14:16:55,215][INFO ][gridgain-#1099%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,215][INFO ][gridgain-#1118%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1583c12d, arg=2]
[14:16:55,215][INFO ][gridgain-#1118%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,215][INFO ][gridgain-#1102%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@49e5ab72, arg=5]
[14:16:55,215][INFO ][gridgain-#1102%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,215][INFO ][gridgain-#1102%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7cff7c63, arg=3]
[14:16:55,215][INFO ][gridgain-#1102%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,215][INFO ][gridgain-#1103%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,215][INFO ][gridgain-#1092%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2dc9b4e7, arg=1]
[14:16:55,215][INFO ][gridgain-#1092%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,216][INFO ][gridgain-#1103%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,216][INFO ][gridgain-#1103%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,216][INFO ][gridgain-#1103%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,216][INFO ][gridgain-#1103%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,216][INFO ][gridgain-#1103%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@72be552b, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@49e5ab72, sib=GridJobSiblingImpl [sesId=f2b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=53b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069941--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069941--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=53b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@2dc9b4e7, sib=GridJobSiblingImpl [sesId=f2b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=93b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069945--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069945--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=93b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@1583c12d, sib=GridJobSiblingImpl [sesId=f2b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=33b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069939--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069939--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=33b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@693f87b1, sib=GridJobSiblingImpl [sesId=f2b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069937--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069937--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=13b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@7cff7c63, sib=GridJobSiblingImpl [sesId=f2b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069943--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069943--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=73b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,217][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Splitting job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@400ba6f6, gridSize=1, arg=4]
[14:16:55,217][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3cfe8153, arg=1]
[14:16:55,217][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,217][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@68dc8f6d, arg=2]
[14:16:55,217][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,217][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@684c72e3, arg=3]
[14:16:55,217][INFO ][gridgain-#1108%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,218][INFO ][gridgain-#1089%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@730aca93, arg=4]
[14:16:55,218][INFO ][gridgain-#1089%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,218][INFO ][gridgain-#1112%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,218][INFO ][gridgain-#1117%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,218][INFO ][gridgain-#1117%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,218][INFO ][gridgain-#1117%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,217][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Computing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4979b3e6, arg=5]
[14:16:55,218][INFO ][gridgain-#1091%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Set attribute 'testName'.
[14:16:55,218][INFO ][gridgain-#1124%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Received attribute 'testName': testVal
[14:16:55,219][INFO ][gridgain-#1124%session.GridSessionTaskWaitJobAttributeSelfTest%][GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask] Reducing job [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask@400ba6f6, results=[GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@68dc8f6d, sib=GridJobSiblingImpl [sesId=b5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069983--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069983--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@730aca93, sib=GridJobSiblingImpl [sesId=b5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=56b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069989--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069989--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=56b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@684c72e3, sib=GridJobSiblingImpl [sesId=b5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069985--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069985--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@4979b3e6, sib=GridJobSiblingImpl [sesId=b5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=36b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069987--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069987--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=36b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask$1@3cfe8153, sib=GridJobSiblingImpl [sesId=b5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320069981--7086320496865759629-9070015373211156550, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320069981--7086320496865759629-9070015373211156550, nodeId=7ddf2aed-4b95-4046-9da8-550d93bf2e73, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d5b79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=7ddf2aed-4b95-4046-9da8-550d93bf2e73, state=READY, lastHeartbeat=1353320214117, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55140, startTime=1353320214117], p=GridNodePredicate [ids=[7ddf2aed-4b95-4046-9da8-550d93bf2e73]], isLoc=true, hash=945623509, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:16:55,219][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest] >>> Stopping test: testSetAttribute in 14 ms <<<
[14:16:56,275][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:16:56,276][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:16:56,281][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320215164, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=cc979281b31-7ddf2aed-4b95-4046-9da8-550d93bf2e73, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionTaskWaitJobAttributeSelfTest$GridTaskSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:16:56,283][INFO ][main][GridSessionTaskWaitJobAttributeSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionTaskWaitJobAttributeSelfTest
>>> Grid uptime: 00:00:01:112
[14:16:56,291][INFO ][main][GridSessionSetJobAttributeOrderSelfTest] >>> Starting test: testJobSetAttribute <<<
[14:16:56,296][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] << Enterprise Edition >>
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Config URL: n/a
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Daemon mode: off
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:56,297][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:56,297][WARN ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] SMTP is not configured - email notifications are off.
[14:16:56,297][WARN ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Cache is not configured - data grid is off.
[14:16:56,298][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:56,299][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:56,299][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Enabled local MACs: C8600068582C
[14:16:56,803][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:56,809][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45150, locHost=/192.168.2.14]
[14:16:56,828][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1] Security status [authentication=on, secure-session=on]
[14:16:56,830][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:56,830][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55150
[14:16:56,830][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50015
[14:16:56,831][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=9a344e1e-1d8e-4789-8585-c13ecf2a5e74, state=READY, lastHeartbeat=1353320216830, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55150, startTime=1353320216820]
[14:16:56,832][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x626CBFB7]
[14:16:56,832][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:57,859][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:16:57,861][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:16:57,861][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:16:57,861][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:16:57,861][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:16:57,867][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetJobAttributeOrderSelfTest1
>>> Local node [ID=9A344E1E-1D8E-4789-8585-C13ECF2A5E74, order=1353320216820]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45150 UDP:50015 TCP:55150
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] << Enterprise Edition >>
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Config URL: n/a
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Daemon mode: off
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:16:57,869][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:16:57,869][WARN ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] SMTP is not configured - email notifications are off.
[14:16:57,869][WARN ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Cache is not configured - data grid is off.
[14:16:57,870][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:16:57,870][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:16:57,870][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Enabled local MACs: C8600068582C
[14:16:58,373][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:16:58,379][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45151, locHost=/192.168.2.14]
[14:16:58,398][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2] Security status [authentication=on, secure-session=on]
[14:16:58,400][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:16:58,400][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55151
[14:16:58,400][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50015
[14:16:58,401][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=fc7b929d-47ea-4297-b987-627dec9bb923, state=READY, lastHeartbeat=1353320218391, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55151, startTime=1353320218391]
[14:16:58,401][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x66F881C2]
[14:16:58,402][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:16:58,411][INFO ][disco-event-worker-#1177%session.GridSessionSetJobAttributeOrderSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=fc7b929d-47ea-4297-b987-627dec9bb923, state=READY, lastHeartbeat=1353320218401, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55151, startTime=1353320218391]
[14:16:58,411][INFO ][disco-event-worker-#1177%session.GridSessionSetJobAttributeOrderSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xCA649D78]
[14:16:58,413][INFO ][disco-event-worker-#1197%session.GridSessionSetJobAttributeOrderSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9a344e1e-1d8e-4789-8585-c13ecf2a5e74, state=READY, lastHeartbeat=1353320218401, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55150, startTime=1353320216820]
[14:16:59,405][INFO ][disco-event-worker-#1197%session.GridSessionSetJobAttributeOrderSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xCA649D78]
[14:17:00,488][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:00,489][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:00,489][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:00,489][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:00,489][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:00,497][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionSetJobAttributeOrderSelfTest2
>>> Local node [ID=FC7B929D-47EA-4297-B987-627DEC9BB923, order=1353320218391]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45151 UDP:50015 TCP:55151
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:00,507][INFO ][gridgain-#1202%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,509][INFO ][gridgain-#1203%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,510][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,512][INFO ][gridgain-#1207%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,514][INFO ][gridgain-#1208%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,514][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,516][INFO ][gridgain-#1212%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,518][INFO ][gridgain-#1213%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,518][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,521][INFO ][gridgain-#1217%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,522][INFO ][gridgain-#1218%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,522][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,524][INFO ][gridgain-#1222%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,525][INFO ][gridgain-#1223%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,526][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,528][INFO ][gridgain-#1227%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,529][INFO ][gridgain-#1228%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,529][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,532][INFO ][gridgain-#1232%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,533][INFO ][gridgain-#1233%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,533][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,535][INFO ][gridgain-#1237%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,537][INFO ][gridgain-#1238%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,537][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,539][INFO ][gridgain-#1242%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,540][INFO ][gridgain-#1243%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,541][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,543][INFO ][gridgain-#1247%session.GridSessionSetJobAttributeOrderSelfTest2%][GridSessionSetJobAttributeOrderSelfTest$SessionTestJob] Session attribute order was correct for job [res=100, expected=100]
[14:17:00,544][INFO ][gridgain-#1248%session.GridSessionSetJobAttributeOrderSelfTest1%][GridSessionSetJobAttributeOrderSelfTest$SessionTestTask] Successfully waited for attribute [key=grid.task.session.test.attr, val=100]
[14:17:00,544][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] Session attribute value was correct for test [res=100, expected=100]
[14:17:00,544][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] >>> Stopping grid [name=session.GridSessionSetJobAttributeOrderSelfTest1, id=9a344e1e-1d8e-4789-8585-c13ecf2a5e74]
[14:17:01,599][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:01,599][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:01,602][INFO ][disco-event-worker-#1197%session.GridSessionSetJobAttributeOrderSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=9a344e1e-1d8e-4789-8585-c13ecf2a5e74, state=LEFT, lastHeartbeat=1353320221594, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55150, startTime=1353320216820]
[14:17:01,602][INFO ][disco-event-worker-#1197%session.GridSessionSetJobAttributeOrderSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x66F881C2]
[14:17:01,605][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320220496, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=89b79281b31-9a344e1e-1d8e-4789-8585-c13ecf2a5e74, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetJobAttributeOrderSelfTest$SessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetJobAttributeOrderSelfTest$SessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:01,607][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetJobAttributeOrderSelfTest1
>>> Grid uptime: 00:00:03:747
[14:17:01,609][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest] >>> Stopping grid [name=session.GridSessionSetJobAttributeOrderSelfTest2, id=fc7b929d-47ea-4297-b987-627dec9bb923]
[14:17:01,610][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:01,610][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:01,614][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320220496, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f9b79281b31-fc7b929d-47ea-4297-b987-627dec9bb923, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionSetJobAttributeOrderSelfTest$SessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionSetJobAttributeOrderSelfTest$SessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:01,617][INFO ][test-runner][GridSessionSetJobAttributeOrderSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionSetJobAttributeOrderSelfTest2
>>> Grid uptime: 00:00:01:128
[14:17:01,618][INFO ][main][GridSessionSetJobAttributeOrderSelfTest] >>> Stopping test: testJobSetAttribute in 5327 ms <<<
[14:17:01,627][INFO ][main][GridSessionWaitAttributeSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:01,627][INFO ][main][GridSessionWaitAttributeSelfTest1] << Enterprise Edition >>
[14:17:01,627][INFO ][main][GridSessionWaitAttributeSelfTest1] Config URL: n/a
[14:17:01,627][INFO ][main][GridSessionWaitAttributeSelfTest1] Daemon mode: off
[14:17:01,628][INFO ][main][GridSessionWaitAttributeSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:01,628][INFO ][main][GridSessionWaitAttributeSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:01,628][INFO ][main][GridSessionWaitAttributeSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:01,628][INFO ][main][GridSessionWaitAttributeSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:01,628][INFO ][main][GridSessionWaitAttributeSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:01,628][WARN ][main][GridSessionWaitAttributeSelfTest1] SMTP is not configured - email notifications are off.
[14:17:01,628][WARN ][main][GridSessionWaitAttributeSelfTest1] Cache is not configured - data grid is off.
[14:17:01,629][INFO ][main][GridSessionWaitAttributeSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:01,629][INFO ][main][GridSessionWaitAttributeSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:01,629][INFO ][main][GridSessionWaitAttributeSelfTest1] Enabled local MACs: C8600068582C
[14:17:02,133][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:02,140][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45160, locHost=/192.168.2.14]
[14:17:02,160][INFO ][main][GridSessionWaitAttributeSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:02,161][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:02,162][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55160
[14:17:02,162][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50016
[14:17:02,163][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=c79e224d-91a7-4b1b-ad35-07569a941306, state=READY, lastHeartbeat=1353320222158, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55160, startTime=1353320222158]
[14:17:02,163][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xEEAB93E8]
[14:17:02,163][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:03,195][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:03,196][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:03,197][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:03,197][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:03,197][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:03,200][INFO ][main][GridSessionWaitAttributeSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionWaitAttributeSelfTest1
>>> Local node [ID=C79E224D-91A7-4B1B-AD35-07569A941306, order=1353320222158]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45160 UDP:50016 TCP:55160
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] << Enterprise Edition >>
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] Config URL: n/a
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] Daemon mode: off
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:03,202][INFO ][main][GridSessionWaitAttributeSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:03,202][WARN ][main][GridSessionWaitAttributeSelfTest2] SMTP is not configured - email notifications are off.
[14:17:03,202][WARN ][main][GridSessionWaitAttributeSelfTest2] Cache is not configured - data grid is off.
[14:17:03,203][INFO ][main][GridSessionWaitAttributeSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:03,203][INFO ][main][GridSessionWaitAttributeSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:03,203][INFO ][main][GridSessionWaitAttributeSelfTest2] Enabled local MACs: C8600068582C
[14:17:03,706][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:03,713][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45161, locHost=/192.168.2.14]
[14:17:03,732][INFO ][main][GridSessionWaitAttributeSelfTest2] Security status [authentication=on, secure-session=on]
[14:17:03,733][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:03,733][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55161
[14:17:03,734][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50016
[14:17:03,734][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=9c484ccc-607f-476b-93fa-96ab8d462cd9, state=READY, lastHeartbeat=1353320223728, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55161, startTime=1353320223728]
[14:17:03,735][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x12DCDEE2]
[14:17:03,736][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:04,184][INFO ][disco-event-worker-#1284%session.GridSessionWaitAttributeSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=c79e224d-91a7-4b1b-ad35-07569a941306, state=READY, lastHeartbeat=1353320224167, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55160, startTime=1353320222158]
[14:17:04,184][INFO ][disco-event-worker-#1264%session.GridSessionWaitAttributeSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9c484ccc-607f-476b-93fa-96ab8d462cd9, state=READY, lastHeartbeat=1353320223728, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55161, startTime=1353320223728]
[14:17:04,185][INFO ][disco-event-worker-#1264%session.GridSessionWaitAttributeSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x71BA8DAC]
[14:17:04,738][INFO ][disco-event-worker-#1284%session.GridSessionWaitAttributeSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x71BA8DAC]
[14:17:05,814][WARN ][main][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:05,815][WARN ][main][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:05,816][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:05,816][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:05,816][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:05,823][INFO ][main][GridSessionWaitAttributeSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionWaitAttributeSelfTest2
>>> Local node [ID=9C484CCC-607F-476B-93FA-96AB8D462CD9, order=1353320223728]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45161 UDP:50016 TCP:55161
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:05,824][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttribute <<<
[14:17:05,829][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:05,853][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:05,872][INFO ][gridgain-#1291%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:05,883][INFO ][gridgain-#1290%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:05,886][INFO ][gridgain-#1296%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:05,886][INFO ][gridgain-#1293%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:05,878][INFO ][gridgain-#1292%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:05,890][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:05,890][INFO ][gridgain-#1288%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070200--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070202--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:05,906][INFO ][gridgain-#1316%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:05,909][INFO ][gridgain-#1315%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:05,909][INFO ][gridgain-#1325%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:05,914][INFO ][gridgain-#1309%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=83c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:05,976][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070204--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:05,976][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e3c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070206--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:05,977][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=04c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070208--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:05,977][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=24c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070210--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,003][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=44c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070212--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,003][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070214--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,003][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=84c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070216--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,004][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=63c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a4c79281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320070218--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,006][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttribute in 182 ms <<<
[14:17:06,009][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributeWithTimeout <<<
[14:17:06,010][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,021][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,033][INFO ][gridgain-#1379%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,033][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,036][INFO ][gridgain-#1383%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,045][INFO ][gridgain-#1380%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,061][INFO ][gridgain-#1382%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,062][INFO ][gridgain-#1385%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,063][INFO ][gridgain-#1381%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,066][INFO ][gridgain-#1384%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,076][INFO ][gridgain-#1387%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072479--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072481--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,084][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072483--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,084][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072485--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,084][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072487--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,104][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072489--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,107][INFO ][gridgain-#1388%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,114][INFO ][gridgain-#1386%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=12589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=32589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=52589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=92589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,149][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072491--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,149][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072493--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,150][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f2589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072495--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,150][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=d1589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=13589281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320072497--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,158][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributeWithTimeout in 149 ms <<<
[14:17:06,160][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributeValue <<<
[14:17:06,162][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,173][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,190][INFO ][gridgain-#1392%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,196][INFO ][gridgain-#1394%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,209][INFO ][gridgain-#1391%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,211][INFO ][gridgain-#1393%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,212][INFO ][gridgain-#1397%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,212][INFO ][gridgain-#1390%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,218][INFO ][gridgain-#1396%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074756--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,220][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074758--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,235][INFO ][gridgain-#1398%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,237][INFO ][gridgain-#1395%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,238][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074760--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,239][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074762--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,239][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074764--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,247][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074766--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,247][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074768--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,248][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074770--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,248][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074772--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,248][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320074774--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,287][INFO ][gridgain-#1399%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=40e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=60e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=80e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e0e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=01e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=21e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=41e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=20e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=61e89281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,326][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributeValue in 166 ms <<<
[14:17:06,329][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributeValueWithTimeout <<<
[14:17:06,330][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,345][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,360][INFO ][gridgain-#1401%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,361][INFO ][gridgain-#1402%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,362][INFO ][gridgain-#1403%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,372][INFO ][gridgain-#1405%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,386][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,396][INFO ][gridgain-#1406%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,399][INFO ][gridgain-#1404%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,413][INFO ][gridgain-#1407%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,417][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,417][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,418][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,418][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,419][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,421][INFO ][gridgain-#1408%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077035--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077037--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077039--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077041--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077043--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077045--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077047--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,429][INFO ][gridgain-#1410%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,433][INFO ][gridgain-#1409%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,443][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9f699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077049--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,444][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bf699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077051--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,447][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=9e699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=df699281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320077053--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,468][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributeValueWithTimeout in 139 ms <<<
[14:17:06,470][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributeValues <<<
[14:17:06,471][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,502][INFO ][gridgain-#1415%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,502][INFO ][gridgain-#1416%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,509][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,510][INFO ][gridgain-#1417%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,519][INFO ][gridgain-#1419%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,528][INFO ][gridgain-#1414%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,536][INFO ][gridgain-#1418%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,537][INFO ][gridgain-#1420%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,538][INFO ][gridgain-#1413%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,543][INFO ][gridgain-#1421%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,552][INFO ][gridgain-#1412%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079312--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,552][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079314--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,564][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079316--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,567][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079318--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,567][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8df99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079320--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,567][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=adf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079322--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,568][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cdf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079324--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,568][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079326--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,599][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079328--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,599][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=ecf99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2ef99281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320079330--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,630][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributeValues in 160 ms <<<
[14:17:06,632][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributeValuesWithTimeout <<<
[14:17:06,633][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,643][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,655][INFO ][gridgain-#1426%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,657][INFO ][gridgain-#1422%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,662][INFO ][gridgain-#1423%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,666][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,667][INFO ][gridgain-#1424%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,671][INFO ][gridgain-#1427%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,672][INFO ][gridgain-#1425%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,680][INFO ][gridgain-#1429%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,688][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,688][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,689][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,689][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,697][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,699][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,700][INFO ][gridgain-#1250%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081589--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081591--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081593--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081595--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081597--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081599--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081601--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081603--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,710][INFO ][gridgain-#1428%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,712][INFO ][gridgain-#1430%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,716][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081605--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,717][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=3b8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7c8a9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320081607--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,734][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributeValuesWithTimeout in 102 ms <<<
[14:17:06,737][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributes <<<
[14:17:06,738][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,748][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,760][INFO ][gridgain-#1253%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,761][INFO ][gridgain-#1254%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,763][INFO ][gridgain-#1255%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,767][INFO ][gridgain-#1287%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,768][INFO ][gridgain-#1252%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083866--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]]]
[14:17:06,775][INFO ][gridgain-#1431%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,781][INFO ][gridgain-#1434%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,781][INFO ][gridgain-#1433%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,782][INFO ][gridgain-#1271%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,783][INFO ][gridgain-#1432%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,810][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083868--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,810][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e91b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083870--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,810][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083872--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,822][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083874--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,822][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083876--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,822][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083878--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,822][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083880--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,823][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=aa1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083882--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,823][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=891b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ca1b9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320083884--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,847][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributes in 110 ms <<<
[14:17:06,849][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Starting test: testWaitAttributesWithTimeout <<<
[14:17:06,850][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Task job siblings [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,870][INFO ][gridgain-#1378%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,877][INFO ][gridgain-#1291%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,870][INFO ][gridgain-#1288%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,878][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,878][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,882][INFO ][gridgain-#1293%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,888][INFO ][gridgain-#1290%session.GridSessionWaitAttributeSelfTest1%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086145--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086147--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]]]
[14:17:06,892][INFO ][gridgain-#1274%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,897][INFO ][gridgain-#1273%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,901][INFO ][gridgain-#1275%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,897][INFO ][gridgain-#1272%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,903][INFO ][gridgain-#1270%session.GridSessionWaitAttributeSelfTest2%][GridSessionWaitAttributeSelfTest$TestSessionJob] Got siblings from job [size=10, siblings=[GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=18ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=38ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false], GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=null, jobTopic=null, nodeId=null, isJobDone=false]]]
[14:17:06,918][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=58ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086149--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,918][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=78ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086151--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,918][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086153--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,918][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086155--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,919][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086157--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,920][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f8ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086159--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,940][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=19ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086161--5965854062840376570--4062772097290122469, nodeId=c79e224d-91a7-4b1b-ad35-07569a941306, isJobDone=false]
[14:17:06,940][INFO ][test-runner][GridSessionWaitAttributeSelfTest] Checking session attributes for sibling: GridJobSiblingImpl [sesId=f7ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=39ab9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320086163--7783743342402720551--7185408764793632917, nodeId=9c484ccc-607f-476b-93fa-96ab8d462cd9, isJobDone=false]
[14:17:06,947][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping test: testWaitAttributesWithTimeout in 98 ms <<<
[14:17:06,947][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping grid [name=session.GridSessionWaitAttributeSelfTest1, id=c79e224d-91a7-4b1b-ad35-07569a941306]
[14:17:08,020][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:08,020][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:08,024][INFO ][disco-event-worker-#1284%session.GridSessionWaitAttributeSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=c79e224d-91a7-4b1b-ad35-07569a941306, state=LEFT, lastHeartbeat=1353320228019, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55160, startTime=1353320222158]
[14:17:08,024][INFO ][disco-event-worker-#1284%session.GridSessionWaitAttributeSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x12DCDEE2]
[14:17:08,026][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320225818, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=33c79281b31-c79e224d-91a7-4b1b-ad35-07569a941306, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionWaitAttributeSelfTest$TestSessionTask, sampleClsName=org.gridgain.grid.session.GridSessionWaitAttributeSelfTest$TestSessionTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:08,033][INFO ][main][GridSessionWaitAttributeSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionWaitAttributeSelfTest1
>>> Grid uptime: 00:00:04:834
[14:17:08,036][INFO ][main][GridSessionWaitAttributeSelfTest] >>> Stopping grid [name=session.GridSessionWaitAttributeSelfTest2, id=9c484ccc-607f-476b-93fa-96ab8d462cd9]
[14:17:08,037][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:08,037][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:08,043][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320225828, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=86c79281b31-9c484ccc-607f-476b-93fa-96ab8d462cd9, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionWaitAttributeSelfTest$TestSessionTask, sampleClsName=org.gridgain.grid.session.GridSessionWaitAttributeSelfTest$TestSessionTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:08,046][INFO ][main][GridSessionWaitAttributeSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionWaitAttributeSelfTest2
>>> Grid uptime: 00:00:02:222
[14:17:08,052][INFO ][main][GridSessionJobFailoverSelfTest] >>> Starting test: testFailoverJobSession <<<
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] << Enterprise Edition >>
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Config URL: n/a
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Daemon mode: off
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:08,058][INFO ][test-runner][GridSessionJobFailoverSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:08,058][WARN ][test-runner][GridSessionJobFailoverSelfTest1] SMTP is not configured - email notifications are off.
[14:17:08,058][WARN ][test-runner][GridSessionJobFailoverSelfTest1] Cache is not configured - data grid is off.
[14:17:08,059][INFO ][test-runner][GridSessionJobFailoverSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:08,060][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:08,060][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Enabled local MACs: C8600068582C
[14:17:08,564][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:08,570][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45170, locHost=/192.168.2.14]
[14:17:08,590][INFO ][test-runner][GridSessionJobFailoverSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:08,592][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:08,592][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55170
[14:17:08,592][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50017
[14:17:08,593][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b5ced7b1-caf4-4839-9a73-b6b3cca8034b, state=READY, lastHeartbeat=1353320228584, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55170, startTime=1353320228584]
[14:17:08,594][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x32D3F46B]
[14:17:08,595][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:09,626][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:09,627][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:09,627][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:09,627][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:09,627][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:09,634][INFO ][test-runner][GridSessionJobFailoverSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionJobFailoverSelfTest1
>>> Local node [ID=B5CED7B1-CAF4-4839-9A73-B6B3CCA8034B, order=1353320228584]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45170 UDP:50017 TCP:55170
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] << Enterprise Edition >>
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Config URL: n/a
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Daemon mode: off
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:09,637][INFO ][test-runner][GridSessionJobFailoverSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:09,637][WARN ][test-runner][GridSessionJobFailoverSelfTest2] SMTP is not configured - email notifications are off.
[14:17:09,637][WARN ][test-runner][GridSessionJobFailoverSelfTest2] Cache is not configured - data grid is off.
[14:17:09,638][INFO ][test-runner][GridSessionJobFailoverSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:09,638][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:09,638][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Enabled local MACs: C8600068582C
[14:17:10,141][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:10,147][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45171, locHost=/192.168.2.14]
[14:17:10,186][INFO ][test-runner][GridSessionJobFailoverSelfTest2] Security status [authentication=on, secure-session=on]
[14:17:10,189][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:10,189][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55171
[14:17:10,190][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50017
[14:17:10,191][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=6fda4bb2-66b5-407f-baad-71b8e587ee82, state=READY, lastHeartbeat=1353320230185, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55171, startTime=1353320230185]
[14:17:10,192][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xEEF19EA1]
[14:17:10,193][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:10,198][INFO ][disco-event-worker-#1449%session.GridSessionJobFailoverSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=6fda4bb2-66b5-407f-baad-71b8e587ee82, state=READY, lastHeartbeat=1353320230185, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55171, startTime=1353320230185]
[14:17:10,199][INFO ][disco-event-worker-#1469%session.GridSessionJobFailoverSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=b5ced7b1-caf4-4839-9a73-b6b3cca8034b, state=READY, lastHeartbeat=1353320230195, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55170, startTime=1353320228584]
[14:17:10,199][INFO ][disco-event-worker-#1449%session.GridSessionJobFailoverSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xB3F96A0A]
[14:17:11,195][INFO ][disco-event-worker-#1469%session.GridSessionJobFailoverSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xB3F96A0A]
[14:17:12,276][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:12,277][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:12,277][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:12,277][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:12,277][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:12,284][INFO ][test-runner][GridSessionJobFailoverSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionJobFailoverSelfTest2
>>> Local node [ID=6FDA4BB2-66B5-407F-BAAD-71B8E587EE82, order=1353320230185]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45171 UDP:50017 TCP:55171
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:12,293][ERROR][gridgain-#1473%session.GridSessionJobFailoverSelfTest1%][GridJobWorker] Failed to execute job [jobId=3e3c9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, ses=GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=o.g.g.session.GridSessionJobFailoverSelfTest$SessionTestTask, dep=GridDeployment [ts=1353320232279, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=973c9281b31-b5ced7b1-caf4-4839-9a73-b6b3cca8034b, userVer=0, loc=true, sampleCls=class o.g.g.session.GridSessionJobFailoverSelfTest$SessionTestTask, sampleClsName=o.g.g.session.GridSessionJobFailoverSelfTest$SessionTestTask, undeployed=false, pendingUndeploy=false, usage=2], taskClsName=o.g.g.session.GridSessionJobFailoverSelfTest$SessionTestTask, sesId=c73c9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320232279, endTime=9223372036854775807, taskNodeId=b5ced7b1-caf4-4839-9a73-b6b3cca8034b, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=3e3c9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]]
class org.gridgain.grid.GridException: Job exception.
at org.gridgain.grid.session.GridSessionJobFailoverSelfTest$SessionTestTask$1.execute(GridSessionJobFailoverSelfTest.java:106)
at org.gridgain.grid.session.GridSessionJobFailoverSelfTest$SessionTestTask$1.execute(GridSessionJobFailoverSelfTest.java:82)
at org.gridgain.grid.kernal.processors.job.GridJobWorker$2.call(GridJobWorker.java:473)
at org.gridgain.grid.util.GridUtils.wrapThreadLoader(GridUtils.java:5182)
at org.gridgain.grid.kernal.processors.job.GridJobWorker.execute0(GridJobWorker.java:467)
at org.gridgain.grid.kernal.processors.job.GridJobWorker.body(GridJobWorker.java:420)
at org.gridgain.grid.util.worker.GridWorker$1.run(GridWorker.java:145)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at org.gridgain.grid.util.worker.GridWorker.run(GridWorker.java:192)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
[14:17:12,297][WARN ][gridgain-#1474%session.GridSessionJobFailoverSelfTest1%][GridAlwaysFailoverSpi] Failed over job to a new node [newNode=6fda4bb2-66b5-407f-baad-71b8e587ee82, oldNode=b5ced7b1-caf4-4839-9a73-b6b3cca8034b, sesId=c73c9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, job=o.g.g.session.GridSessionJobFailoverSelfTest$SessionTestTask$1@3bfa2596, jobCtx=GridJobContextImpl [jobId=3e3c9281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={gg:failover:failednodelist=[b5ced7b1-caf4-4839-9a73-b6b3cca8034b]}], task=o.g.g.session.GridSessionJobFailoverSelfTest$SessionTestTask]
[14:17:12,307][INFO ][test-runner][GridSessionJobFailoverSelfTest] >>> Stopping grid [name=session.GridSessionJobFailoverSelfTest1, id=b5ced7b1-caf4-4839-9a73-b6b3cca8034b]
[14:17:13,362][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:13,362][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:13,365][INFO ][disco-event-worker-#1469%session.GridSessionJobFailoverSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=b5ced7b1-caf4-4839-9a73-b6b3cca8034b, state=LEFT, lastHeartbeat=1353320233357, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55170, startTime=1353320228584]
[14:17:13,366][INFO ][disco-event-worker-#1469%session.GridSessionJobFailoverSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xEEF19EA1]
[14:17:13,369][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320232279, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=973c9281b31-b5ced7b1-caf4-4839-9a73-b6b3cca8034b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionJobFailoverSelfTest$SessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionJobFailoverSelfTest$SessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:13,372][INFO ][test-runner][GridSessionJobFailoverSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionJobFailoverSelfTest1
>>> Grid uptime: 00:00:03:736
[14:17:13,373][INFO ][test-runner][GridSessionJobFailoverSelfTest] >>> Stopping grid [name=session.GridSessionJobFailoverSelfTest2, id=6fda4bb2-66b5-407f-baad-71b8e587ee82]
[14:17:13,373][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:13,373][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:13,378][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320232299, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f44c9281b31-6fda4bb2-66b5-407f-baad-71b8e587ee82, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionJobFailoverSelfTest$SessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionJobFailoverSelfTest$SessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:13,381][INFO ][test-runner][GridSessionJobFailoverSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionJobFailoverSelfTest2
>>> Grid uptime: 00:00:01:98
[14:17:13,381][INFO ][main][GridSessionJobFailoverSelfTest] >>> Stopping test: testFailoverJobSession in 5329 ms <<<
[14:17:13,386][INFO ][main][GridSessionLoadSelfTest] >>> Starting test: testSessionLoad <<<
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] << Enterprise Edition >>
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] Config URL: n/a
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] Daemon mode: off
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:13,391][INFO ][main][GridSessionLoadSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:13,391][WARN ][main][GridSessionLoadSelfTest0] SMTP is not configured - email notifications are off.
[14:17:13,391][WARN ][main][GridSessionLoadSelfTest0] Cache is not configured - data grid is off.
[14:17:13,392][WARN ][main][GridSessionLoadSelfTest0] P2P class loading is disabled. Visor monitoring will not work. In most cases you should enabled P2P class loading but limit the classes that are P2P loaded using 'peerClassLoadingClassPathExclude' configuration property, if necessary.
[14:17:13,392][INFO ][main][GridSessionLoadSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:13,393][INFO ][main][GridSessionLoadSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:13,393][INFO ][main][GridSessionLoadSelfTest0] Enabled local MACs: C8600068582C
[14:17:13,897][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:13,903][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45180, locHost=/192.168.2.14]
[14:17:13,948][INFO ][main][GridSessionLoadSelfTest0] Security status [authentication=on, secure-session=on]
[14:17:13,951][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:13,952][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55180
[14:17:13,952][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50018
[14:17:13,953][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=7fd460e8-2968-4feb-95c7-b269cda0695e, state=READY, lastHeartbeat=1353320233951, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55180, startTime=1353320233941]
[14:17:13,954][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x5AF7E055]
[14:17:13,955][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:14,986][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:14,987][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:14,987][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:14,987][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:14,987][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:14,991][INFO ][main][GridSessionLoadSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionLoadSelfTest0
>>> Local node [ID=7FD460E8-2968-4FEB-95C7-B269CDA0695E, order=1353320233941]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45180 UDP:50018 TCP:55180
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] << Enterprise Edition >>
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] Config URL: n/a
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] Daemon mode: off
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:14,992][INFO ][main][GridSessionLoadSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:14,993][WARN ][main][GridSessionLoadSelfTest1] SMTP is not configured - email notifications are off.
[14:17:14,993][WARN ][main][GridSessionLoadSelfTest1] Cache is not configured - data grid is off.
[14:17:14,993][WARN ][main][GridSessionLoadSelfTest1] P2P class loading is disabled. Visor monitoring will not work. In most cases you should enabled P2P class loading but limit the classes that are P2P loaded using 'peerClassLoadingClassPathExclude' configuration property, if necessary.
[14:17:14,993][INFO ][main][GridSessionLoadSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:14,993][INFO ][main][GridSessionLoadSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:14,993][INFO ][main][GridSessionLoadSelfTest1] Enabled local MACs: C8600068582C
[14:17:15,496][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:15,502][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45181, locHost=/192.168.2.14]
[14:17:15,520][INFO ][main][GridSessionLoadSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:15,521][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:15,521][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55181
[14:17:15,522][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50018
[14:17:15,522][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=501f17fe-315a-4e0f-9f60-70288ef68609, state=READY, lastHeartbeat=1353320235512, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55181, startTime=1353320235512]
[14:17:15,522][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x69BC10BA]
[14:17:15,523][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:15,973][INFO ][disco-event-worker-#1512%session.GridSessionLoadSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=7fd460e8-2968-4feb-95c7-b269cda0695e, state=READY, lastHeartbeat=1353320235965, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55180, startTime=1353320233941]
[14:17:15,973][INFO ][disco-event-worker-#1492%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=501f17fe-315a-4e0f-9f60-70288ef68609, state=READY, lastHeartbeat=1353320235522, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55181, startTime=1353320235512]
[14:17:15,974][INFO ][disco-event-worker-#1492%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x1D0F29CA]
[14:17:16,526][INFO ][disco-event-worker-#1512%session.GridSessionLoadSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x1D0F29CA]
[14:17:17,607][WARN ][main][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:17,608][WARN ][main][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:17,608][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:17,608][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:17,608][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:17,615][INFO ][main][GridSessionLoadSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionLoadSelfTest1
>>> Local node [ID=501F17FE-315A-4E0F-9F60-70288EF68609, order=1353320235512]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45181 UDP:50018 TCP:55181
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:17,615][INFO ][test-runner][GridSessionLoadSelfTest] Thread count: 40
[14:17:18,010][INFO ][grid-load-test-thread-32][GridSessionLoadSelfTest] Thread finished.
[14:17:18,012][INFO ][grid-load-test-thread-37][GridSessionLoadSelfTest] Thread finished.
[14:17:18,031][INFO ][grid-load-test-thread-38][GridSessionLoadSelfTest] Thread finished.
[14:17:18,049][INFO ][grid-load-test-thread-11][GridSessionLoadSelfTest] Thread finished.
[14:17:18,068][INFO ][grid-load-test-thread-20][GridSessionLoadSelfTest] Thread finished.
[14:17:18,071][INFO ][grid-load-test-thread-12][GridSessionLoadSelfTest] Thread finished.
[14:17:18,083][INFO ][grid-load-test-thread-29][GridSessionLoadSelfTest] Thread finished.
[14:17:18,084][INFO ][grid-load-test-thread-1][GridSessionLoadSelfTest] Thread finished.
[14:17:18,104][INFO ][grid-load-test-thread-33][GridSessionLoadSelfTest] Thread finished.
[14:17:18,106][INFO ][grid-load-test-thread-31][GridSessionLoadSelfTest] Thread finished.
[14:17:18,110][INFO ][grid-load-test-thread-28][GridSessionLoadSelfTest] Thread finished.
[14:17:18,110][INFO ][grid-load-test-thread-17][GridSessionLoadSelfTest] Thread finished.
[14:17:18,112][INFO ][grid-load-test-thread-27][GridSessionLoadSelfTest] Thread finished.
[14:17:18,115][INFO ][grid-load-test-thread-26][GridSessionLoadSelfTest] Thread finished.
[14:17:18,117][INFO ][grid-load-test-thread-25][GridSessionLoadSelfTest] Thread finished.
[14:17:18,117][INFO ][grid-load-test-thread-5][GridSessionLoadSelfTest] Thread finished.
[14:17:18,120][INFO ][grid-load-test-thread-18][GridSessionLoadSelfTest] Thread finished.
[14:17:18,121][INFO ][grid-load-test-thread-9][GridSessionLoadSelfTest] Thread finished.
[14:17:18,122][INFO ][grid-load-test-thread-7][GridSessionLoadSelfTest] Thread finished.
[14:17:18,127][INFO ][grid-load-test-thread-22][GridSessionLoadSelfTest] Thread finished.
[14:17:18,137][INFO ][grid-load-test-thread-36][GridSessionLoadSelfTest] Thread finished.
[14:17:18,139][INFO ][grid-load-test-thread-39][GridSessionLoadSelfTest] Thread finished.
[14:17:18,145][INFO ][grid-load-test-thread-3][GridSessionLoadSelfTest] Thread finished.
[14:17:18,146][INFO ][grid-load-test-thread-14][GridSessionLoadSelfTest] Thread finished.
[14:17:18,147][INFO ][grid-load-test-thread-6][GridSessionLoadSelfTest] Thread finished.
[14:17:18,148][INFO ][grid-load-test-thread-4][GridSessionLoadSelfTest] Thread finished.
[14:17:18,152][INFO ][grid-load-test-thread-35][GridSessionLoadSelfTest] Thread finished.
[14:17:18,153][INFO ][grid-load-test-thread-19][GridSessionLoadSelfTest] Thread finished.
[14:17:18,153][INFO ][grid-load-test-thread-2][GridSessionLoadSelfTest] Thread finished.
[14:17:18,154][INFO ][grid-load-test-thread-23][GridSessionLoadSelfTest] Thread finished.
[14:17:18,155][INFO ][grid-load-test-thread-40][GridSessionLoadSelfTest] Thread finished.
[14:17:18,157][INFO ][grid-load-test-thread-13][GridSessionLoadSelfTest] Thread finished.
[14:17:18,159][INFO ][grid-load-test-thread-30][GridSessionLoadSelfTest] Thread finished.
[14:17:18,160][INFO ][grid-load-test-thread-8][GridSessionLoadSelfTest] Thread finished.
[14:17:18,161][INFO ][grid-load-test-thread-16][GridSessionLoadSelfTest] Thread finished.
[14:17:18,162][INFO ][grid-load-test-thread-24][GridSessionLoadSelfTest] Thread finished.
[14:17:18,163][INFO ][grid-load-test-thread-15][GridSessionLoadSelfTest] Thread finished.
[14:17:18,163][INFO ][grid-load-test-thread-34][GridSessionLoadSelfTest] Thread finished.
[14:17:18,163][INFO ][grid-load-test-thread-10][GridSessionLoadSelfTest] Thread finished.
[14:17:18,165][INFO ][grid-load-test-thread-21][GridSessionLoadSelfTest] Thread finished.
[14:17:18,165][INFO ][main][GridSessionLoadSelfTest] >>> Stopping test: testSessionLoad in 550 ms <<<
[14:17:18,165][INFO ][main][GridSessionLoadSelfTest] >>> Stopping grid [name=session.GridSessionLoadSelfTest1, id=501f17fe-315a-4e0f-9f60-70288ef68609]
[14:17:18,165][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:18,165][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:18,167][INFO ][disco-event-worker-#1492%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=501f17fe-315a-4e0f-9f60-70288ef68609, state=LEFT, lastHeartbeat=1353320238158, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55181, startTime=1353320235512]
[14:17:18,168][INFO ][disco-event-worker-#1492%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x5AF7E055]
[14:17:18,169][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320237615, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=674c9281b31-501f17fe-315a-4e0f-9f60-70288ef68609, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, sampleClsName=org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:18,171][INFO ][main][GridSessionLoadSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionLoadSelfTest1
>>> Grid uptime: 00:00:00:563
[14:17:18,173][INFO ][main][GridSessionLoadSelfTest] >>> Stopping grid [name=session.GridSessionLoadSelfTest0, id=7fd460e8-2968-4feb-95c7-b269cda0695e]
[14:17:19,235][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:19,235][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:19,241][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320237625, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=a95c9281b31-7fd460e8-2968-4feb-95c7-b269cda0695e, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, sampleClsName=org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:19,243][INFO ][main][GridSessionLoadSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionLoadSelfTest0
>>> Grid uptime: 00:00:04:247
[14:17:19,250][INFO ][main][GridSessionLoadSelfTest] >>> Starting test: testSessionLoadNoLocalMarshalling <<<
[14:17:19,255][INFO ][main][GridSessionLoadSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:19,255][INFO ][main][GridSessionLoadSelfTest0] << Enterprise Edition >>
[14:17:19,255][INFO ][main][GridSessionLoadSelfTest0] Config URL: n/a
[14:17:19,255][INFO ][main][GridSessionLoadSelfTest0] Daemon mode: off
[14:17:19,255][INFO ][main][GridSessionLoadSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:17:19,255][INFO ][main][GridSessionLoadSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:19,256][INFO ][main][GridSessionLoadSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:19,256][INFO ][main][GridSessionLoadSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:19,256][INFO ][main][GridSessionLoadSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:19,256][WARN ][main][GridSessionLoadSelfTest0] SMTP is not configured - email notifications are off.
[14:17:19,256][WARN ][main][GridSessionLoadSelfTest0] Cache is not configured - data grid is off.
[14:17:19,256][WARN ][main][GridSessionLoadSelfTest0] P2P class loading is disabled. Visor monitoring will not work. In most cases you should enabled P2P class loading but limit the classes that are P2P loaded using 'peerClassLoadingClassPathExclude' configuration property, if necessary.
[14:17:19,257][INFO ][main][GridSessionLoadSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:19,257][INFO ][main][GridSessionLoadSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:19,257][INFO ][main][GridSessionLoadSelfTest0] Enabled local MACs: C8600068582C
[14:17:19,761][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:19,767][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45180, locHost=/192.168.2.14]
[14:17:19,792][INFO ][main][GridSessionLoadSelfTest0] Security status [authentication=on, secure-session=on]
[14:17:19,794][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:19,794][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55180
[14:17:19,795][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50018
[14:17:19,795][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=f8e2e302-6d15-4763-a7a9-fd88d6060c3f, state=READY, lastHeartbeat=1353320239789, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55180, startTime=1353320239789]
[14:17:19,796][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x429645D1]
[14:17:19,796][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:20,826][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:20,827][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:20,827][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:20,827][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:20,827][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:20,830][INFO ][main][GridSessionLoadSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionLoadSelfTest0
>>> Local node [ID=F8E2E302-6D15-4763-A7A9-FD88D6060C3F, order=1353320239789]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45180 UDP:50018 TCP:55180
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:20,831][INFO ][main][GridSessionLoadSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:20,831][INFO ][main][GridSessionLoadSelfTest1] << Enterprise Edition >>
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] Config URL: n/a
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] Daemon mode: off
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:20,832][WARN ][main][GridSessionLoadSelfTest1] SMTP is not configured - email notifications are off.
[14:17:20,832][WARN ][main][GridSessionLoadSelfTest1] Cache is not configured - data grid is off.
[14:17:20,832][WARN ][main][GridSessionLoadSelfTest1] P2P class loading is disabled. Visor monitoring will not work. In most cases you should enabled P2P class loading but limit the classes that are P2P loaded using 'peerClassLoadingClassPathExclude' configuration property, if necessary.
[14:17:20,832][INFO ][main][GridSessionLoadSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:20,833][INFO ][main][GridSessionLoadSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:20,833][INFO ][main][GridSessionLoadSelfTest1] Enabled local MACs: C8600068582C
[14:17:21,335][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:21,340][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45181, locHost=/192.168.2.14]
[14:17:21,374][INFO ][main][GridSessionLoadSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:21,377][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:21,378][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55181
[14:17:21,378][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50018
[14:17:21,379][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=ad96aef1-6bd5-473b-8730-cfb2f3a79215, state=READY, lastHeartbeat=1353320241369, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55181, startTime=1353320241369]
[14:17:21,380][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x42CC09CC]
[14:17:21,380][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:21,811][INFO ][disco-event-worker-#1697%session.GridSessionLoadSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=f8e2e302-6d15-4763-a7a9-fd88d6060c3f, state=READY, lastHeartbeat=1353320241802, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55180, startTime=1353320239789]
[14:17:21,812][INFO ][disco-event-worker-#1677%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=ad96aef1-6bd5-473b-8730-cfb2f3a79215, state=READY, lastHeartbeat=1353320241379, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55181, startTime=1353320241369]
[14:17:21,812][INFO ][disco-event-worker-#1677%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xEACDD1E3]
[14:17:22,383][INFO ][disco-event-worker-#1697%session.GridSessionLoadSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xEACDD1E3]
[14:17:23,466][WARN ][main][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:23,466][WARN ][main][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:23,467][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:23,467][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:23,467][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:23,472][INFO ][main][GridSessionLoadSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionLoadSelfTest1
>>> Local node [ID=AD96AEF1-6BD5-473B-8730-CFB2F3A79215, order=1353320241369]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45181 UDP:50018 TCP:55181
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:23,473][INFO ][test-runner][GridSessionLoadSelfTest] Thread count: 40
[14:17:23,692][INFO ][grid-load-test-thread-35][GridSessionLoadSelfTest] Thread finished.
[14:17:23,703][INFO ][grid-load-test-thread-27][GridSessionLoadSelfTest] Thread finished.
[14:17:23,704][INFO ][grid-load-test-thread-7][GridSessionLoadSelfTest] Thread finished.
[14:17:23,709][INFO ][grid-load-test-thread-24][GridSessionLoadSelfTest] Thread finished.
[14:17:23,709][INFO ][grid-load-test-thread-2][GridSessionLoadSelfTest] Thread finished.
[14:17:23,710][INFO ][grid-load-test-thread-34][GridSessionLoadSelfTest] Thread finished.
[14:17:23,711][INFO ][grid-load-test-thread-37][GridSessionLoadSelfTest] Thread finished.
[14:17:23,724][INFO ][grid-load-test-thread-1][GridSessionLoadSelfTest] Thread finished.
[14:17:23,742][INFO ][grid-load-test-thread-18][GridSessionLoadSelfTest] Thread finished.
[14:17:23,744][INFO ][grid-load-test-thread-16][GridSessionLoadSelfTest] Thread finished.
[14:17:23,749][INFO ][grid-load-test-thread-22][GridSessionLoadSelfTest] Thread finished.
[14:17:23,752][INFO ][grid-load-test-thread-25][GridSessionLoadSelfTest] Thread finished.
[14:17:23,752][INFO ][grid-load-test-thread-39][GridSessionLoadSelfTest] Thread finished.
[14:17:23,752][INFO ][grid-load-test-thread-14][GridSessionLoadSelfTest] Thread finished.
[14:17:23,753][INFO ][grid-load-test-thread-32][GridSessionLoadSelfTest] Thread finished.
[14:17:23,755][INFO ][grid-load-test-thread-20][GridSessionLoadSelfTest] Thread finished.
[14:17:23,755][INFO ][grid-load-test-thread-8][GridSessionLoadSelfTest] Thread finished.
[14:17:23,756][INFO ][grid-load-test-thread-6][GridSessionLoadSelfTest] Thread finished.
[14:17:23,756][INFO ][grid-load-test-thread-10][GridSessionLoadSelfTest] Thread finished.
[14:17:23,756][INFO ][grid-load-test-thread-40][GridSessionLoadSelfTest] Thread finished.
[14:17:23,757][INFO ][grid-load-test-thread-19][GridSessionLoadSelfTest] Thread finished.
[14:17:23,758][INFO ][grid-load-test-thread-29][GridSessionLoadSelfTest] Thread finished.
[14:17:23,759][INFO ][grid-load-test-thread-9][GridSessionLoadSelfTest] Thread finished.
[14:17:23,759][INFO ][grid-load-test-thread-5][GridSessionLoadSelfTest] Thread finished.
[14:17:23,759][INFO ][grid-load-test-thread-26][GridSessionLoadSelfTest] Thread finished.
[14:17:23,760][INFO ][grid-load-test-thread-4][GridSessionLoadSelfTest] Thread finished.
[14:17:23,760][INFO ][grid-load-test-thread-13][GridSessionLoadSelfTest] Thread finished.
[14:17:23,764][INFO ][grid-load-test-thread-28][GridSessionLoadSelfTest] Thread finished.
[14:17:23,764][INFO ][grid-load-test-thread-33][GridSessionLoadSelfTest] Thread finished.
[14:17:23,765][INFO ][grid-load-test-thread-17][GridSessionLoadSelfTest] Thread finished.
[14:17:23,765][INFO ][grid-load-test-thread-12][GridSessionLoadSelfTest] Thread finished.
[14:17:23,766][INFO ][grid-load-test-thread-30][GridSessionLoadSelfTest] Thread finished.
[14:17:23,766][INFO ][grid-load-test-thread-3][GridSessionLoadSelfTest] Thread finished.
[14:17:23,766][INFO ][grid-load-test-thread-11][GridSessionLoadSelfTest] Thread finished.
[14:17:23,768][INFO ][grid-load-test-thread-15][GridSessionLoadSelfTest] Thread finished.
[14:17:23,768][INFO ][grid-load-test-thread-36][GridSessionLoadSelfTest] Thread finished.
[14:17:23,769][INFO ][grid-load-test-thread-21][GridSessionLoadSelfTest] Thread finished.
[14:17:23,769][INFO ][grid-load-test-thread-38][GridSessionLoadSelfTest] Thread finished.
[14:17:23,770][INFO ][grid-load-test-thread-31][GridSessionLoadSelfTest] Thread finished.
[14:17:23,770][INFO ][grid-load-test-thread-23][GridSessionLoadSelfTest] Thread finished.
[14:17:23,771][INFO ][main][GridSessionLoadSelfTest] >>> Stopping test: testSessionLoadNoLocalMarshalling in 299 ms <<<
[14:17:23,771][INFO ][main][GridSessionLoadSelfTest] >>> Stopping grid [name=session.GridSessionLoadSelfTest1, id=ad96aef1-6bd5-473b-8730-cfb2f3a79215]
[14:17:23,771][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:23,771][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:23,773][INFO ][disco-event-worker-#1677%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=ad96aef1-6bd5-473b-8730-cfb2f3a79215, state=LEFT, lastHeartbeat=1353320243767, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55181, startTime=1353320241369]
[14:17:23,773][INFO ][disco-event-worker-#1677%session.GridSessionLoadSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x429645D1]
[14:17:23,775][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320243464, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=4e84a281b31-ad96aef1-6bd5-473b-8730-cfb2f3a79215, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, sampleClsName=org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:23,777][INFO ][main][GridSessionLoadSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionLoadSelfTest1
>>> Grid uptime: 00:00:00:313
[14:17:23,779][INFO ][main][GridSessionLoadSelfTest] >>> Stopping grid [name=session.GridSessionLoadSelfTest0, id=f8e2e302-6d15-4763-a7a9-fd88d6060c3f]
[14:17:24,845][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:24,845][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:24,851][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320243474, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d394a281b31-f8e2e302-6d15-4763-a7a9-fd88d6060c3f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, sampleClsName=org.gridgain.grid.session.GridSessionLoadSelfTest$SessionLoadTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:24,853][INFO ][main][GridSessionLoadSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionLoadSelfTest0
>>> Grid uptime: 00:00:04:19
[14:17:24,865][INFO ][main][GridSessionCollisionSpiSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] << Enterprise Edition >>
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] Config URL: n/a
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] Daemon mode: off
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:24,866][INFO ][main][GridSessionCollisionSpiSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:24,866][WARN ][main][GridSessionCollisionSpiSelfTest] SMTP is not configured - email notifications are off.
[14:17:24,866][WARN ][main][GridSessionCollisionSpiSelfTest] Cache is not configured - data grid is off.
[14:17:24,867][INFO ][main][GridSessionCollisionSpiSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:24,867][INFO ][main][GridSessionCollisionSpiSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:24,867][INFO ][main][GridSessionCollisionSpiSelfTest] Enabled local MACs: C8600068582C
[14:17:25,371][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:25,376][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45190, locHost=/192.168.2.14]
[14:17:25,410][INFO ][main][GridSessionCollisionSpiSelfTest] Security status [authentication=on, secure-session=on]
[14:17:25,413][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:25,413][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55190
[14:17:25,413][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50019
[14:17:25,414][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=df6a4a43-973a-49ce-9398-081f75fd606a, state=READY, lastHeartbeat=1353320245409, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55190, startTime=1353320245409]
[14:17:25,415][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x3FFCC831]
[14:17:25,416][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:26,446][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:26,447][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:26,447][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:26,447][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:26,447][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:26,450][INFO ][main][GridSessionCollisionSpiSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: session.GridSessionCollisionSpiSelfTest
>>> Local node [ID=DF6A4A43-973A-49CE-9398-081F75FD606A, order=1353320245409]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45190 UDP:50019 TCP:55190
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:26,450][INFO ][main][GridSessionCollisionSpiSelfTest] >>> Starting test: testCollisionSessionAttribute <<<
[14:17:26,454][INFO ][gridgain-#1868%session.GridSessionCollisionSpiSelfTest%][GridSessionCollisionSpiSelfTest$GridSessionCollisionSpi] Set session attribute for job: 19aca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6
[14:17:26,454][INFO ][gridgain-#1869%session.GridSessionCollisionSpiSelfTest%][GridSessionCollisionSpiSelfTest$GridSessionTestTask$1] Executing job: 19aca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6
[14:17:26,455][INFO ][test-runner][GridSessionCollisionSpiSelfTest] Executed session collision test task.
[14:17:26,455][INFO ][main][GridSessionCollisionSpiSelfTest] >>> Stopping test: testCollisionSessionAttribute in 5 ms <<<
[14:17:27,510][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:27,510][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:27,515][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320246447, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d8aca281b31-df6a4a43-973a-49ce-9398-081f75fd606a, userVer=0, loc=true, sampleCls=class org.gridgain.grid.session.GridSessionCollisionSpiSelfTest$GridSessionTestTask, sampleClsName=org.gridgain.grid.session.GridSessionCollisionSpiSelfTest$GridSessionTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:27,517][INFO ][main][GridSessionCollisionSpiSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: session.GridSessionCollisionSpiSelfTest
>>> Grid uptime: 00:00:01:67
[14:17:27,520][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Starting test: testFieldInjection <<<
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] << Enterprise Edition >>
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Config URL: n/a
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Daemon mode: off
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:27,532][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:27,532][WARN ][test-runner][GridResourceFieldInjectionSelfTest1] SMTP is not configured - email notifications are off.
[14:17:27,532][WARN ][test-runner][GridResourceFieldInjectionSelfTest1] Cache is not configured - data grid is off.
[14:17:27,533][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:27,533][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:27,533][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Enabled local MACs: C8600068582C
[14:17:28,036][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:28,047][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45200, locHost=/192.168.2.14]
[14:17:28,065][INFO ][test-runner][GridResourceFieldInjectionSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:28,067][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:28,067][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55200
[14:17:28,067][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50020
[14:17:28,068][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a7950539-463f-4f64-bd03-fce836d23d76, state=READY, lastHeartbeat=1353320248058, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320248058]
[14:17:28,068][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x424022EA]
[14:17:28,069][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:29,099][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:29,104][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:29,105][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:29,105][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:29,105][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:29,108][INFO ][test-runner][GridResourceFieldInjectionSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldInjectionSelfTest1
>>> Local node [ID=A7950539-463F-4F64-BD03-FCE836D23D76, order=1353320248058]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45200 UDP:50020 TCP:55200
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:29,108][INFO ][test-runner][GridResourceFieldInjectionSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:29,108][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] << Enterprise Edition >>
[14:17:29,108][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Config URL: n/a
[14:17:29,108][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Daemon mode: off
[14:17:29,109][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:17:29,109][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:29,109][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:29,109][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:29,109][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:29,109][WARN ][test-runner][GridResourceFieldInjectionSelfTest2] SMTP is not configured - email notifications are off.
[14:17:29,109][WARN ][test-runner][GridResourceFieldInjectionSelfTest2] Cache is not configured - data grid is off.
[14:17:29,110][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:29,110][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:29,110][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Enabled local MACs: C8600068582C
[14:17:29,614][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:29,619][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45201, locHost=/192.168.2.14]
[14:17:29,637][INFO ][test-runner][GridResourceFieldInjectionSelfTest2] Security status [authentication=on, secure-session=on]
[14:17:29,639][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:29,639][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55201
[14:17:29,639][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50020
[14:17:29,640][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=9de7e33f-41bc-494a-bc29-5d52e36f2741, state=READY, lastHeartbeat=1353320249639, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55201, startTime=1353320249639]
[14:17:29,640][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xD9A13D98]
[14:17:29,641][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:30,089][INFO ][disco-event-worker-#1905%resource.GridResourceFieldInjectionSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=a7950539-463f-4f64-bd03-fce836d23d76, state=READY, lastHeartbeat=1353320250082, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320248058]
[14:17:30,090][INFO ][disco-event-worker-#1885%resource.GridResourceFieldInjectionSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9de7e33f-41bc-494a-bc29-5d52e36f2741, state=READY, lastHeartbeat=1353320249639, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55201, startTime=1353320249639]
[14:17:30,090][INFO ][disco-event-worker-#1885%resource.GridResourceFieldInjectionSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x5AF168E0]
[14:17:30,643][INFO ][disco-event-worker-#1905%resource.GridResourceFieldInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x5AF168E0]
[14:17:31,726][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:31,727][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:31,727][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:31,727][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:31,727][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:31,733][INFO ][test-runner][GridResourceFieldInjectionSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldInjectionSelfTest2
>>> Local node [ID=9DE7E33F-41BC-494A-BC29-5D52E36F2741, order=1353320249629]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45201 UDP:50020 TCP:55201
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@3d6195b1
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@3531d913
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5ba289ad
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@bfcebdb
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@3d6195b1
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@3531d913
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5ba289ad
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@bfcebdb
[14:17:31,762][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceFieldInjectionSelfTest1, id8=a7950539, gg=true]
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected grid resource into task: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceFieldInjectionSelfTest1, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@2611db18, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@5e47182e, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@d84a45d, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@7f42dc99, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=a7950539-463f-4f64-bd03-fce836d23d76, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, nodeId=a7950539-463f-4f64-bd03-fce836d23d76, gridName=resource.GridResourceFieldInjectionSelfTest1, locNode=GridMulticastDiscoveryNode [id=a7950539-463f-4f64-bd03-fce836d23d76, state=READY, lastHeartbeat=1353320248058, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320248058], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.21, mcastAddr=/229.14.1.21, mcastPort=50020, tcpPort=55200, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@7c8faffe, startTime=1353320248058, ttl=8, boundTcpPort=55200, isMcastEnabled=java.util.concurrent.CountDownLatch@3d6b8c95[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=a7950539-463f-4f64-bd03-fce836d23d76, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45200, locPortRange=100, gridName=resource.GridResourceFieldInjectionSelfTest1, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45200, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45200, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=0, sentMsgsCnt=0, rcvdBytesCnt=0, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=4, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=0, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@2f59e493, sigar=org.hyperic.sigar.Sigar@36ad872e, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.012376237623762377, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@31a1e27f], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceFieldInjectionSelfTest1, kernalMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320249105, springCtx=org.springframework.context.support.GenericApplicationContext@39760d27: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@33684d60, licTimer=java.util.Timer@4aff3fe, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceFieldInjectionSelfTest1]]
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected nodeId resource into task: a7950539-463f-4f64-bd03-fce836d23d76
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected local host resource into task: 192.168.2.14
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected mbean server resource into task: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected executor service resource into task: org.gridgain.grid.thread.GridThreadPoolExecutor@2611db18
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected gridgain home resource into task: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected grid name resource into task: resource.GridResourceFieldInjectionSelfTest1
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected marshaller resource into task: org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected spring context resource into task: org.springframework.context.support.GenericApplicationContext@39760d27: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected spring bean resource into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserSpringBean@1dde14f2
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected load balancer into task: org.gridgain.grid.kernal.managers.loadbalancer.GridLoadBalancerManager$1@5f312b2f
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected session resource into task: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, dep=GridDeployment [ts=1353320251733, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=caaca281b31-a7950539-463f-4f64-bd03-fce836d23d76, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sesId=caaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320251733, endTime=9223372036854775807, taskNodeId=a7950539-463f-4f64-bd03-fce836d23d76, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:17:31,766][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected continuous mapper: org.gridgain.grid.kernal.processors.task.GridTaskWorker$1@150a4b7c
[14:17:31,770][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@2ab3eea8
[14:17:31,770][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@7d83b279
[14:17:31,770][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@3b300047
[14:17:31,771][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@4c6253ac
[14:17:31,771][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@4b636861
[14:17:31,771][INFO ][gridgain-#1908%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@6b59def1
[14:17:31,771][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@3d6195b1
[14:17:31,771][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@3531d913
[14:17:31,771][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5ba289ad
[14:17:31,771][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@bfcebdb
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@2ab3eea8
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@7d83b279
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@3b300047
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@4c6253ac
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource9 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@4b636861
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource10 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@6b59def1
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceFieldInjectionSelfTest1, id8=a7950539, gg=true]
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected grid resource into job: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceFieldInjectionSelfTest1, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@2611db18, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@5e47182e, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@d84a45d, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@7f42dc99, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=a7950539-463f-4f64-bd03-fce836d23d76, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, nodeId=a7950539-463f-4f64-bd03-fce836d23d76, gridName=resource.GridResourceFieldInjectionSelfTest1, locNode=GridMulticastDiscoveryNode [id=a7950539-463f-4f64-bd03-fce836d23d76, state=READY, lastHeartbeat=1353320248058, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320248058], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.21, mcastAddr=/229.14.1.21, mcastPort=50020, tcpPort=55200, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@7c8faffe, startTime=1353320248058, ttl=8, boundTcpPort=55200, isMcastEnabled=java.util.concurrent.CountDownLatch@3d6b8c95[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=a7950539-463f-4f64-bd03-fce836d23d76, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45200, locPortRange=100, gridName=resource.GridResourceFieldInjectionSelfTest1, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45200, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45200, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=0, sentMsgsCnt=0, rcvdBytesCnt=0, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=8, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=1, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@2f59e493, sigar=org.hyperic.sigar.Sigar@36ad872e, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.012376237623762377, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@31a1e27f], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceFieldInjectionSelfTest1, kernalMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest1,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320249105, springCtx=org.springframework.context.support.GenericApplicationContext@39760d27: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@33684d60, licTimer=java.util.Timer@4aff3fe, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceFieldInjectionSelfTest1]]
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected nodeId resource into job: a7950539-463f-4f64-bd03-fce836d23d76
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected localHost resource into job: 192.168.2.14
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected mbean server resource into job: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected executor service resource into job: org.gridgain.grid.thread.GridThreadPoolExecutor@2611db18
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected gridgain home resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected grid name resource into job: resource.GridResourceFieldInjectionSelfTest1
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected marshaller resource into job: org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected spring context resource into job: org.springframework.context.support.GenericApplicationContext@39760d27: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected spring bean resource into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserSpringBean@1dde14f2
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected session resource into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, dep=GridDeployment [ts=1353320251733, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=caaca281b31-a7950539-463f-4f64-bd03-fce836d23d76, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, undeployed=false, pendingUndeploy=false, usage=2], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sesId=caaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320251733, endTime=9223372036854775807, taskNodeId=a7950539-463f-4f64-bd03-fce836d23d76, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=0baca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected job context resource into job: GridJobContextImpl [jobId=0baca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}]
[14:17:31,772][INFO ][gridgain-#1909%resource.GridResourceFieldInjectionSelfTest1%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected job context resource into outer class: null
[14:17:31,786][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@7ad72c12
[14:17:31,787][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@6bc10ec2
[14:17:31,787][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@4fb019d2
[14:17:31,788][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@326f52dd
[14:17:31,788][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@2aa94509
[14:17:31,788][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@4ef367c0
[14:17:31,789][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5befca2b
[14:17:31,789][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@5bc1fc34
[14:17:31,789][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@1c94e8fc
[14:17:31,789][INFO ][gridgain-#1911%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@744c070c
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5befca2b
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@5bc1fc34
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@1c94e8fc
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@744c070c
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@7ad72c12
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@6bc10ec2
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@4fb019d2
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@326f52dd
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource9 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@2aa94509
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected shared resource10 into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@4ef367c0
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceFieldInjectionSelfTest2, id8=9de7e33f, gg=true]
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected grid resource into job: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceFieldInjectionSelfTest2, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@2ee6b7ac, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@2d249542, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@3cc33735, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@345d97bd, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=9de7e33f-41bc-494a-bc29-5d52e36f2741, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, nodeId=9de7e33f-41bc-494a-bc29-5d52e36f2741, gridName=resource.GridResourceFieldInjectionSelfTest2, locNode=GridMulticastDiscoveryNode [id=9de7e33f-41bc-494a-bc29-5d52e36f2741, state=READY, lastHeartbeat=1353320249639, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55201, startTime=1353320249639], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.21, mcastAddr=/229.14.1.21, mcastPort=50020, tcpPort=55200, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@6c951426, startTime=1353320249639, ttl=8, boundTcpPort=55201, isMcastEnabled=java.util.concurrent.CountDownLatch@2f5e027b[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=9de7e33f-41bc-494a-bc29-5d52e36f2741, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45200, locPortRange=100, gridName=resource.GridResourceFieldInjectionSelfTest2, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45201, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45201, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=1, sentMsgsCnt=0, rcvdBytesCnt=1200, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=5, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=1, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@44f4f188, sigar=org.hyperic.sigar.Sigar@2d1d3b16, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.009876543209876543, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@5a12387d], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceFieldInjectionSelfTest2, kernalMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest2,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest2,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest2,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest2,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest2,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceFieldInjectionSelfTest2,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320251723, springCtx=org.springframework.context.support.GenericApplicationContext@39760d27: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@623ac4bd, licTimer=java.util.Timer@4a86ad, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceFieldInjectionSelfTest2]]
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected nodeId resource into job: 9de7e33f-41bc-494a-bc29-5d52e36f2741
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected localHost resource into job: 192.168.2.14
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected mbean server resource into job: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected executor service resource into job: org.gridgain.grid.thread.GridThreadPoolExecutor@2ee6b7ac
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected gridgain home resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:31,790][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected grid name resource into job: resource.GridResourceFieldInjectionSelfTest2
[14:17:31,791][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected marshaller resource into job: org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@7ea10214
[14:17:31,791][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected spring context resource into job: org.springframework.context.support.GenericApplicationContext@39760d27: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:31,791][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected spring bean resource into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserSpringBean@1dde14f2
[14:17:31,791][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected session resource into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, dep=GridDeployment [ts=1353320251773, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=8baca281b31-9de7e33f-41bc-494a-bc29-5d52e36f2741, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sesId=caaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320251733, endTime=9223372036854775807, taskNodeId=a7950539-463f-4f64-bd03-fce836d23d76, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=2baca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:31,791][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected job context resource into job: GridJobContextImpl [jobId=2baca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}]
[14:17:31,791][INFO ][gridgain-#1912%resource.GridResourceFieldInjectionSelfTest2%][GridResourceFieldInjectionSelfTest$UserResourceTask] Injected job context resource into outer class: null
[14:17:32,847][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:32,847][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:32,849][INFO ][disco-event-worker-#1905%resource.GridResourceFieldInjectionSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=a7950539-463f-4f64-bd03-fce836d23d76, state=LEFT, lastHeartbeat=1353320252841, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320248058]
[14:17:32,850][INFO ][disco-event-worker-#1905%resource.GridResourceFieldInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xD9A13D98]
[14:17:32,852][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320251733, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=caaca281b31-a7950539-463f-4f64-bd03-fce836d23d76, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:32,853][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@3d6195b1
[14:17:32,853][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5ba289ad
[14:17:32,854][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@2ab3eea8
[14:17:32,854][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@4c6253ac
[14:17:32,854][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@7d83b279
[14:17:32,854][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@4b636861
[14:17:32,854][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@3531d913
[14:17:32,855][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@bfcebdb
[14:17:32,855][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@3b300047
[14:17:32,855][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@6b59def1
[14:17:32,857][INFO ][test-runner][GridResourceFieldInjectionSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldInjectionSelfTest1
>>> Grid uptime: 00:00:03:746
[14:17:32,858][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:32,858][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:32,862][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320251773, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=8baca281b31-9de7e33f-41bc-494a-bc29-5d52e36f2741, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:32,863][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@5befca2b
[14:17:32,863][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource1@1c94e8fc
[14:17:32,863][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@7ad72c12
[14:17:32,863][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource3@326f52dd
[14:17:32,863][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@6bc10ec2
[14:17:32,864][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource4@2aa94509
[14:17:32,864][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@5bc1fc34
[14:17:32,864][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource2@744c070c
[14:17:32,864][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@4fb019d2
[14:17:32,864][INFO ][test-runner][GridResourceFieldInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserResource5@4ef367c0
[14:17:32,866][INFO ][test-runner][GridResourceFieldInjectionSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldInjectionSelfTest2
>>> Grid uptime: 00:00:01:138
[14:17:32,866][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Stopping test: testFieldInjection in 5346 ms <<<
[14:17:32,870][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Starting test: testNonTransientFieldInjection <<<
[14:17:32,878][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:32,878][INFO ][test-runner][GridResourceFieldInjectionSelfTest] << Enterprise Edition >>
[14:17:32,878][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Config URL: n/a
[14:17:32,878][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Daemon mode: off
[14:17:32,878][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:17:32,879][INFO ][test-runner][GridResourceFieldInjectionSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:32,879][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:32,879][INFO ][test-runner][GridResourceFieldInjectionSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:32,879][INFO ][test-runner][GridResourceFieldInjectionSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:32,879][WARN ][test-runner][GridResourceFieldInjectionSelfTest] SMTP is not configured - email notifications are off.
[14:17:32,879][WARN ][test-runner][GridResourceFieldInjectionSelfTest] Cache is not configured - data grid is off.
[14:17:32,880][INFO ][test-runner][GridResourceFieldInjectionSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:32,880][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:32,880][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Enabled local MACs: C8600068582C
[14:17:33,384][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:33,389][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45200, locHost=/192.168.2.14]
[14:17:33,408][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Security status [authentication=on, secure-session=on]
[14:17:33,409][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:33,410][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55200
[14:17:33,410][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50020
[14:17:33,410][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a02159af-8a73-4938-9a62-3eceb3fff704, state=READY, lastHeartbeat=1353320253405, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320253405]
[14:17:33,411][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9FDD9A4B]
[14:17:33,412][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:34,439][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:34,441][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:34,441][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:34,441][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:34,441][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:34,444][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Local node [ID=A02159AF-8A73-4938-9A62-3ECEB3FFF704, order=1353320253405]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45200 UDP:50020 TCP:55200
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:34,447][ERROR][gridgain-#1934%resource.GridResourceFieldInjectionSelfTest%][GridTaskWorker] Failed to map task jobs to nodes: GridTaskSessionImpl [taskName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask, dep=GridDeployment [ts=1353320254442, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=acaca281b31-a02159af-8a73-4938-9a62-3eceb3fff704, userVer=0, loc=true, sampleCls=class o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask, sampleClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask, sesId=acaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320254442, endTime=9223372036854775807, taskNodeId=a02159af-8a73-4938-9a62-3eceb3fff704, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
class org.gridgain.grid.GridException: @GridUserResource must only be used with 'transient' fields: private java.lang.Object org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask.rsrc
at org.gridgain.grid.kernal.processors.resource.GridResourceCustomInjector.inject(GridResourceCustomInjector.java:295)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.injectInternal(GridResourceIoc.java:175)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.inject(GridResourceIoc.java:119)
at org.gridgain.grid.kernal.processors.resource.GridResourceProcessor.inject(GridResourceProcessor.java:357)
at org.gridgain.grid.kernal.processors.task.GridTaskWorker.body(GridTaskWorker.java:396)
at org.gridgain.grid.util.worker.GridWorker$1.run(GridWorker.java:145)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at org.gridgain.grid.util.worker.GridWorker.run(GridWorker.java:192)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
[14:17:34,447][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Got correct exception for non-transient field: @GridUserResource must only be used with 'transient' fields: private java.lang.Object org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask.rsrc
[14:17:35,502][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:35,502][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:35,507][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320254442, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=acaca281b31-a02159af-8a73-4938-9a62-3eceb3fff704, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientUserResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:35,508][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Grid uptime: 00:00:01:57
[14:17:35,509][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Stopping test: testNonTransientFieldInjection in 2639 ms <<<
[14:17:35,512][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Starting test: testNonTransientSpringBeanFieldInjection <<<
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] << Enterprise Edition >>
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Config URL: n/a
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Daemon mode: off
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:35,518][INFO ][test-runner][GridResourceFieldInjectionSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:35,519][WARN ][test-runner][GridResourceFieldInjectionSelfTest] SMTP is not configured - email notifications are off.
[14:17:35,519][WARN ][test-runner][GridResourceFieldInjectionSelfTest] Cache is not configured - data grid is off.
[14:17:35,519][INFO ][test-runner][GridResourceFieldInjectionSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:35,520][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:35,520][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Enabled local MACs: C8600068582C
[14:17:36,023][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:36,029][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45200, locHost=/192.168.2.14]
[14:17:36,047][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Security status [authentication=on, secure-session=on]
[14:17:36,048][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:36,049][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55200
[14:17:36,049][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50020
[14:17:36,049][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=0f6b25d4-f549-4835-93dd-09058c795b97, state=READY, lastHeartbeat=1353320256043, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320256043]
[14:17:36,050][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xD3FD6384]
[14:17:36,051][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:37,078][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:37,082][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:37,082][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:37,082][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:37,082][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:37,085][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Local node [ID=0F6B25D4-F549-4835-93DD-09058C795B97, order=1353320256043]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45200 UDP:50020 TCP:55200
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:37,087][ERROR][gridgain-#1955%resource.GridResourceFieldInjectionSelfTest%][GridTaskWorker] Failed to map task jobs to nodes: GridTaskSessionImpl [taskName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask, dep=GridDeployment [ts=1353320257082, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=3daca281b31-0f6b25d4-f549-4835-93dd-09058c795b97, userVer=0, loc=true, sampleCls=class o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask, sampleClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask, sesId=3daca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320257082, endTime=9223372036854775807, taskNodeId=0f6b25d4-f549-4835-93dd-09058c795b97, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
class org.gridgain.grid.GridException: @GridSpringResource must only be used with 'transient' fields: private java.lang.Object org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask.rsrc
at org.gridgain.grid.kernal.processors.resource.GridResourceSpringBeanInjector.inject(GridResourceSpringBeanInjector.java:53)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.injectInternal(GridResourceIoc.java:175)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.inject(GridResourceIoc.java:119)
at org.gridgain.grid.kernal.processors.resource.GridResourceProcessor.inject(GridResourceProcessor.java:353)
at org.gridgain.grid.kernal.processors.task.GridTaskWorker.body(GridTaskWorker.java:396)
at org.gridgain.grid.util.worker.GridWorker$1.run(GridWorker.java:145)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at org.gridgain.grid.util.worker.GridWorker.run(GridWorker.java:192)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
[14:17:37,087][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Got correct exception for non-transient field: @GridSpringResource must only be used with 'transient' fields: private java.lang.Object org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask.rsrc
[14:17:37,087][INFO ][test-runner][GridResourceFieldInjectionSelfTest] >>> Stopping grid [name=resource.GridResourceFieldInjectionSelfTest, id=0f6b25d4-f549-4835-93dd-09058c795b97]
[14:17:38,142][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:38,142][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:38,146][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320257082, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=3daca281b31-0f6b25d4-f549-4835-93dd-09058c795b97, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$NonTransientSpringBeanResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:38,148][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Grid uptime: 00:00:01:57
[14:17:38,149][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Stopping test: testNonTransientSpringBeanFieldInjection in 2637 ms <<<
[14:17:38,152][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Starting test: testUnknownNameSpringBeanFieldInjection <<<
[14:17:38,157][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:38,157][INFO ][test-runner][GridResourceFieldInjectionSelfTest] << Enterprise Edition >>
[14:17:38,157][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Config URL: n/a
[14:17:38,157][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Daemon mode: off
[14:17:38,157][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:17:38,158][INFO ][test-runner][GridResourceFieldInjectionSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:38,158][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:38,158][INFO ][test-runner][GridResourceFieldInjectionSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:38,158][INFO ][test-runner][GridResourceFieldInjectionSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:38,158][WARN ][test-runner][GridResourceFieldInjectionSelfTest] SMTP is not configured - email notifications are off.
[14:17:38,158][WARN ][test-runner][GridResourceFieldInjectionSelfTest] Cache is not configured - data grid is off.
[14:17:38,158][INFO ][test-runner][GridResourceFieldInjectionSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:38,159][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:38,159][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Enabled local MACs: C8600068582C
[14:17:38,663][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:38,668][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45200, locHost=/192.168.2.14]
[14:17:38,700][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Security status [authentication=on, secure-session=on]
[14:17:38,703][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:38,704][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55200
[14:17:38,704][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50020
[14:17:38,705][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=e3eddc6d-2a0d-4124-9702-84df12208608, state=READY, lastHeartbeat=1353320258703, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320258703]
[14:17:38,705][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x413E6C31]
[14:17:38,706][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:39,735][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:39,736][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:39,736][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:39,736][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:39,736][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:39,739][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Local node [ID=E3EDDC6D-2A0D-4124-9702-84DF12208608, order=1353320258703]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45200 UDP:50020 TCP:55200
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:39,741][ERROR][gridgain-#1976%resource.GridResourceFieldInjectionSelfTest%][GridTaskWorker] Failed to map task jobs to nodes due to undeclared user exception [cause=No bean named 'unknown-bean-name' is defined, ses=GridTaskSessionImpl [taskName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, dep=GridDeployment [ts=1353320259740, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=cdaca281b31-e3eddc6d-2a0d-4124-9702-84df12208608, userVer=0, loc=true, sampleCls=class o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, sampleClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, sesId=cdaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320259740, endTime=9223372036854775807, taskNodeId=e3eddc6d-2a0d-4124-9702-84df12208608, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]]
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'unknown-bean-name' is defined
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:529)
at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1095)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:277)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:193)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1093)
at org.gridgain.grid.kernal.processors.resource.GridResourceSpringBeanInjector.inject(GridResourceSpringBeanInjector.java:60)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.injectInternal(GridResourceIoc.java:175)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.inject(GridResourceIoc.java:119)
at org.gridgain.grid.kernal.processors.resource.GridResourceProcessor.inject(GridResourceProcessor.java:353)
at org.gridgain.grid.kernal.processors.task.GridTaskWorker.body(GridTaskWorker.java:396)
at org.gridgain.grid.util.worker.GridWorker$1.run(GridWorker.java:145)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at org.gridgain.grid.util.worker.GridWorker.run(GridWorker.java:192)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
[14:17:39,742][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Got correct exception for with unknown Spring bean name: Failed to map task jobs to nodes due to undeclared user exception [cause=No bean named 'unknown-bean-name' is defined, ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, dep=GridDeployment [ts=1353320259740, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=cdaca281b31-e3eddc6d-2a0d-4124-9702-84df12208608, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, sesId=cdaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320259740, endTime=9223372036854775807, taskNodeId=e3eddc6d-2a0d-4124-9702-84df12208608, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]]
[14:17:39,742][INFO ][test-runner][GridResourceFieldInjectionSelfTest] >>> Stopping grid [name=resource.GridResourceFieldInjectionSelfTest, id=e3eddc6d-2a0d-4124-9702-84df12208608]
[14:17:40,796][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:40,797][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:40,801][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320259740, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=cdaca281b31-e3eddc6d-2a0d-4124-9702-84df12208608, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UnknownNameSpringBeanResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:40,803][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Grid uptime: 00:00:01:68
[14:17:40,803][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Stopping test: testUnknownNameSpringBeanFieldInjection in 2651 ms <<<
[14:17:40,806][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Starting test: testInvalidTypeSpringBeanFieldInjection <<<
[14:17:40,811][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:40,811][INFO ][test-runner][GridResourceFieldInjectionSelfTest] << Enterprise Edition >>
[14:17:40,811][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Config URL: n/a
[14:17:40,811][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Daemon mode: off
[14:17:40,812][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:17:40,812][INFO ][test-runner][GridResourceFieldInjectionSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:40,812][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:40,812][INFO ][test-runner][GridResourceFieldInjectionSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:40,812][INFO ][test-runner][GridResourceFieldInjectionSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:40,812][WARN ][test-runner][GridResourceFieldInjectionSelfTest] SMTP is not configured - email notifications are off.
[14:17:40,812][WARN ][test-runner][GridResourceFieldInjectionSelfTest] Cache is not configured - data grid is off.
[14:17:40,813][INFO ][test-runner][GridResourceFieldInjectionSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:40,813][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:40,813][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Enabled local MACs: C8600068582C
[14:17:41,317][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:41,322][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45200, locHost=/192.168.2.14]
[14:17:41,338][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Security status [authentication=on, secure-session=on]
[14:17:41,340][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:41,340][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55200
[14:17:41,340][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50020
[14:17:41,341][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a2370fe1-524d-4c42-9539-b6f47f78be82, state=READY, lastHeartbeat=1353320261331, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55200, startTime=1353320261331]
[14:17:41,341][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x22C0B818]
[14:17:41,342][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:42,369][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:42,372][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:42,372][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:42,372][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:42,372][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:42,377][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Local node [ID=A2370FE1-524D-4C42-9539-B6F47F78BE82, order=1353320261331]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45200 UDP:50020 TCP:55200
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:42,380][ERROR][gridgain-#1997%resource.GridResourceFieldInjectionSelfTest%][GridTaskWorker] Failed to map task jobs to nodes: GridTaskSessionImpl [taskName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$InvalidTypeSpringBeanResourceTask, dep=GridDeployment [ts=1353320262369, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=5eaca281b31-a2370fe1-524d-4c42-9539-b6f47f78be82, userVer=0, loc=true, sampleCls=class o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$InvalidTypeSpringBeanResourceTask, sampleClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$InvalidTypeSpringBeanResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=o.g.g.kernal.processors.resource.GridResourceFieldInjectionSelfTest$InvalidTypeSpringBeanResourceTask, sesId=5eaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320262369, endTime=9223372036854775807, taskNodeId=a2370fe1-524d-4c42-9539-b6f47f78be82, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
class org.gridgain.grid.GridException: Resource field is not assignable from the resource: class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserSpringBean
at org.gridgain.grid.kernal.processors.resource.GridResourceUtils.inject(GridResourceUtils.java:44)
at org.gridgain.grid.kernal.processors.resource.GridResourceSpringBeanInjector.inject(GridResourceSpringBeanInjector.java:62)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.injectInternal(GridResourceIoc.java:175)
at org.gridgain.grid.kernal.processors.resource.GridResourceIoc.inject(GridResourceIoc.java:119)
at org.gridgain.grid.kernal.processors.resource.GridResourceProcessor.inject(GridResourceProcessor.java:353)
at org.gridgain.grid.kernal.processors.task.GridTaskWorker.body(GridTaskWorker.java:396)
at org.gridgain.grid.util.worker.GridWorker$1.run(GridWorker.java:145)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at org.gridgain.grid.util.worker.GridWorker.run(GridWorker.java:192)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
[14:17:42,381][INFO ][test-runner][GridResourceFieldInjectionSelfTest] Got correct exception for for different Spring bean classes: Resource field is not assignable from the resource: class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$UserSpringBean
[14:17:42,381][INFO ][test-runner][GridResourceFieldInjectionSelfTest] >>> Stopping grid [name=resource.GridResourceFieldInjectionSelfTest, id=a2370fe1-524d-4c42-9539-b6f47f78be82]
[14:17:43,436][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:43,436][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:43,441][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320262369, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=5eaca281b31-a2370fe1-524d-4c42-9539-b6f47f78be82, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$InvalidTypeSpringBeanResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldInjectionSelfTest$InvalidTypeSpringBeanResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:43,443][INFO ][test-runner][GridResourceFieldInjectionSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldInjectionSelfTest
>>> Grid uptime: 00:00:01:67
[14:17:43,443][INFO ][main][GridResourceFieldInjectionSelfTest] >>> Stopping test: testInvalidTypeSpringBeanFieldInjection in 2637 ms <<<
[14:17:43,447][INFO ][main][GridResourceMethodInjectionSelfTest] >>> Starting test: testMethodInjection <<<
[14:17:43,452][INFO ][test-runner][GridResourceMethodInjectionSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:43,452][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] << Enterprise Edition >>
[14:17:43,452][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Config URL: n/a
[14:17:43,452][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Daemon mode: off
[14:17:43,453][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:43,453][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:43,453][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:43,453][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:43,453][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:43,453][WARN ][test-runner][GridResourceMethodInjectionSelfTest1] SMTP is not configured - email notifications are off.
[14:17:43,453][WARN ][test-runner][GridResourceMethodInjectionSelfTest1] Cache is not configured - data grid is off.
[14:17:43,454][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:43,454][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:43,454][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Enabled local MACs: C8600068582C
[14:17:43,958][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:43,963][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45210, locHost=/192.168.2.14]
[14:17:43,992][INFO ][test-runner][GridResourceMethodInjectionSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:43,995][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:43,995][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55210
[14:17:43,995][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50021
[14:17:43,996][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=2be5b86e-565c-4860-ac9f-af0700715884, state=READY, lastHeartbeat=1353320263990, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55210, startTime=1353320263990]
[14:17:43,996][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8F687029]
[14:17:43,996][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:45,031][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:45,032][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:45,033][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:45,033][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:45,033][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:45,038][INFO ][test-runner][GridResourceMethodInjectionSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceMethodInjectionSelfTest1
>>> Local node [ID=2BE5B86E-565C-4860-AC9F-AF0700715884, order=1353320263990]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45210 UDP:50021 TCP:55210
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:45,039][INFO ][test-runner][GridResourceMethodInjectionSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:45,039][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] << Enterprise Edition >>
[14:17:45,039][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Config URL: n/a
[14:17:45,039][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Daemon mode: off
[14:17:45,040][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:17:45,040][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:45,040][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:45,040][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:45,040][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:45,040][WARN ][test-runner][GridResourceMethodInjectionSelfTest2] SMTP is not configured - email notifications are off.
[14:17:45,040][WARN ][test-runner][GridResourceMethodInjectionSelfTest2] Cache is not configured - data grid is off.
[14:17:45,041][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:45,041][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:45,041][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Enabled local MACs: C8600068582C
[14:17:45,544][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:45,550][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45211, locHost=/192.168.2.14]
[14:17:45,567][INFO ][test-runner][GridResourceMethodInjectionSelfTest2] Security status [authentication=on, secure-session=on]
[14:17:45,568][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:45,569][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55211
[14:17:45,569][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50021
[14:17:45,569][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=bc8a0d77-5408-4f9e-a0eb-de1e2938247c, state=READY, lastHeartbeat=1353320265560, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55211, startTime=1353320265560]
[14:17:45,570][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x826D6307]
[14:17:45,570][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:46,008][INFO ][disco-event-worker-#2032%resource.GridResourceMethodInjectionSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=2be5b86e-565c-4860-ac9f-af0700715884, state=READY, lastHeartbeat=1353320266003, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55210, startTime=1353320263990]
[14:17:46,008][INFO ][disco-event-worker-#2012%resource.GridResourceMethodInjectionSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=bc8a0d77-5408-4f9e-a0eb-de1e2938247c, state=READY, lastHeartbeat=1353320265570, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55211, startTime=1353320265560]
[14:17:46,009][INFO ][disco-event-worker-#2012%resource.GridResourceMethodInjectionSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xFCDAB41B]
[14:17:46,573][INFO ][disco-event-worker-#2032%resource.GridResourceMethodInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xFCDAB41B]
[14:17:47,648][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:47,649][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:47,649][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:47,649][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:47,649][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:47,654][INFO ][test-runner][GridResourceMethodInjectionSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceMethodInjectionSelfTest2
>>> Local node [ID=BC8A0D77-5408-4F9E-A0EB-DE1E2938247C, order=1353320265560]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45211 UDP:50021 TCP:55211
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:47,665][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@3b59109f
[14:17:47,665][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@695521fe
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@542ae0b8
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@4b077b33
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@3b59109f
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@695521fe
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@542ae0b8
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@4b077b33
[14:17:47,666][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceMethodInjectionSelfTest1, id8=2be5b86e, gg=true]
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected grid resource into task: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceMethodInjectionSelfTest1, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@582977c0, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@a750b78, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@a43f8a5, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@74791de6, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=2be5b86e-565c-4860-ac9f-af0700715884, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, nodeId=2be5b86e-565c-4860-ac9f-af0700715884, gridName=resource.GridResourceMethodInjectionSelfTest1, locNode=GridMulticastDiscoveryNode [id=2be5b86e-565c-4860-ac9f-af0700715884, state=READY, lastHeartbeat=1353320263990, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55210, startTime=1353320263990], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.22, mcastAddr=/229.14.1.22, mcastPort=50021, tcpPort=55210, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@4615563, startTime=1353320263990, ttl=8, boundTcpPort=55210, isMcastEnabled=java.util.concurrent.CountDownLatch@122cd8d4[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=2be5b86e-565c-4860-ac9f-af0700715884, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45210, locPortRange=100, gridName=resource.GridResourceMethodInjectionSelfTest1, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45210, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45210, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=0, sentMsgsCnt=0, rcvdBytesCnt=0, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=4, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=0, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@3e4f4f9e, sigar=org.hyperic.sigar.Sigar@48f42e07, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.025252525252525256, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@16f9f2fc], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceMethodInjectionSelfTest1, kernalMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320265036, springCtx=org.springframework.context.support.GenericApplicationContext@53f69c47: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@73bf8a2c, licTimer=java.util.Timer@24088a12, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceMethodInjectionSelfTest1]]
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected nodeId resource into task: 2be5b86e-565c-4860-ac9f-af0700715884
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected mbean server resource into task: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected executor service resource into task: org.gridgain.grid.thread.GridThreadPoolExecutor@582977c0
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected gridgain home resource into task: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected grid name resource into task: resource.GridResourceMethodInjectionSelfTest1
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected local host resource into task: 192.168.2.14
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected marshaller resource into task: org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7
[14:17:47,667][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected spring context resource into task: org.springframework.context.support.GenericApplicationContext@53f69c47: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:47,668][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected session resource into task: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, dep=GridDeployment [ts=1353320267654, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bfaca281b31-2be5b86e-565c-4860-ac9f-af0700715884, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sesId=bfaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320267654, endTime=9223372036854775807, taskNodeId=2be5b86e-565c-4860-ac9f-af0700715884, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:17:47,668][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected load balancer into task: org.gridgain.grid.kernal.managers.loadbalancer.GridLoadBalancerManager$1@2ca0b639
[14:17:47,668][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected spring bean resource into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserSpringBean@6b1b6f12
[14:17:47,668][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected continuous mapper: org.gridgain.grid.kernal.processors.task.GridTaskWorker$1@56193dad
[14:17:47,678][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@6cb59557
[14:17:47,679][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@4fcdf136
[14:17:47,679][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@57299f0b
[14:17:47,679][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@6d88b7e1
[14:17:47,679][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@2ae04cf5
[14:17:47,679][INFO ][gridgain-#2035%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@6bdc7ed0
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@3b59109f
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@695521fe
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@542ae0b8
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@4b077b33
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@6cb59557
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@4fcdf136
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@57299f0b
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@6d88b7e1
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource9 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@2ae04cf5
[14:17:47,680][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource10 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@6bdc7ed0
[14:17:47,681][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceMethodInjectionSelfTest1, id8=2be5b86e, gg=true]
[14:17:47,681][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected grid resource into job: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceMethodInjectionSelfTest1, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@582977c0, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@a750b78, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@a43f8a5, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@74791de6, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=2be5b86e-565c-4860-ac9f-af0700715884, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, nodeId=2be5b86e-565c-4860-ac9f-af0700715884, gridName=resource.GridResourceMethodInjectionSelfTest1, locNode=GridMulticastDiscoveryNode [id=2be5b86e-565c-4860-ac9f-af0700715884, state=READY, lastHeartbeat=1353320263990, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55210, startTime=1353320263990], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.22, mcastAddr=/229.14.1.22, mcastPort=50021, tcpPort=55210, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@4615563, startTime=1353320263990, ttl=8, boundTcpPort=55210, isMcastEnabled=java.util.concurrent.CountDownLatch@122cd8d4[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=2be5b86e-565c-4860-ac9f-af0700715884, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45210, locPortRange=100, gridName=resource.GridResourceMethodInjectionSelfTest1, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45210, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45210, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=0, sentMsgsCnt=1, rcvdBytesCnt=0, sentBytesCnt=1312, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=8, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=1, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@3e4f4f9e, sigar=org.hyperic.sigar.Sigar@48f42e07, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.025252525252525256, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@16f9f2fc], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceMethodInjectionSelfTest1, kernalMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest1,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320265036, springCtx=org.springframework.context.support.GenericApplicationContext@53f69c47: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@73bf8a2c, licTimer=java.util.Timer@24088a12, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceMethodInjectionSelfTest1]]
[14:17:47,681][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected nodeId resource into job: 2be5b86e-565c-4860-ac9f-af0700715884
[14:17:47,681][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected local Host resource into job: 192.168.2.14
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected mbean server resource into job: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected executor service resource into job: org.gridgain.grid.thread.GridThreadPoolExecutor@582977c0
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected gridgain home resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected grid name resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected marshaller resource into job: org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected spring context resource into job: org.springframework.context.support.GenericApplicationContext@53f69c47: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected session resource into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, dep=GridDeployment [ts=1353320267654, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bfaca281b31-2be5b86e-565c-4860-ac9f-af0700715884, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, undeployed=false, pendingUndeploy=false, usage=2], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sesId=bfaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320267654, endTime=9223372036854775807, taskNodeId=2be5b86e-565c-4860-ac9f-af0700715884, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=10bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected job context resource into job: GridJobContextImpl [jobId=10bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}]
[14:17:47,682][INFO ][gridgain-#2037%resource.GridResourceMethodInjectionSelfTest1%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected spring bean2 resource into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserSpringBean@6b1b6f12
[14:17:47,683][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@58be34ef
[14:17:47,684][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@42b53ce5
[14:17:47,684][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@1c9e82eb
[14:17:47,684][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@6aa520fa
[14:17:47,685][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@7f1833c8
[14:17:47,685][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@7b6bccbd
[14:17:47,686][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@23189a94
[14:17:47,686][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource3] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@1984ddf2
[14:17:47,686][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource4] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@620747f4
[14:17:47,686][INFO ][gridgain-#2036%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResource5] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@4c051673
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@58be34ef
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@42b53ce5
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@1c9e82eb
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@6aa520fa
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@7f1833c8
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@7b6bccbd
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@23189a94
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@1984ddf2
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource9 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@620747f4
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected shared resource10 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@4c051673
[14:17:47,687][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceMethodInjectionSelfTest2, id8=bc8a0d77, gg=true]
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected grid resource into job: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceMethodInjectionSelfTest2, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@3e24d642, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@646ea6ed, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@1c91451e, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@550c339, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=bc8a0d77-5408-4f9e-a0eb-de1e2938247c, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, nodeId=bc8a0d77-5408-4f9e-a0eb-de1e2938247c, gridName=resource.GridResourceMethodInjectionSelfTest2, locNode=GridMulticastDiscoveryNode [id=bc8a0d77-5408-4f9e-a0eb-de1e2938247c, state=READY, lastHeartbeat=1353320265560, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55211, startTime=1353320265560], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.22, mcastAddr=/229.14.1.22, mcastPort=50021, tcpPort=55210, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@7940d5e8, startTime=1353320265560, ttl=8, boundTcpPort=55211, isMcastEnabled=java.util.concurrent.CountDownLatch@f9bb089[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=bc8a0d77-5408-4f9e-a0eb-de1e2938247c, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45210, locPortRange=100, gridName=resource.GridResourceMethodInjectionSelfTest2, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45211, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45211, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=1, sentMsgsCnt=0, rcvdBytesCnt=1312, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=5, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=1, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@3662fa60, sigar=org.hyperic.sigar.Sigar@1c23d085, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.02050113895216401, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@734eda31], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceMethodInjectionSelfTest2, kernalMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest2,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest2,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest2,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest2,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest2,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodInjectionSelfTest2,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320267644, springCtx=org.springframework.context.support.GenericApplicationContext@53f69c47: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@3dd7021b, licTimer=java.util.Timer@6ecb5a54, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceMethodInjectionSelfTest2]]
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected nodeId resource into job: bc8a0d77-5408-4f9e-a0eb-de1e2938247c
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected local Host resource into job: 192.168.2.14
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected mbean server resource into job: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected executor service resource into job: org.gridgain.grid.thread.GridThreadPoolExecutor@3e24d642
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected gridgain home resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected grid name resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected marshaller resource into job: org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@3b9a22c7
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected spring context resource into job: org.springframework.context.support.GenericApplicationContext@53f69c47: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected session resource into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, dep=GridDeployment [ts=1353320267675, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=20bca281b31-bc8a0d77-5408-4f9e-a0eb-de1e2938247c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sesId=bfaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320267654, endTime=9223372036854775807, taskNodeId=2be5b86e-565c-4860-ac9f-af0700715884, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=ffaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected job context resource into job: GridJobContextImpl [jobId=ffaca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}]
[14:17:47,688][INFO ][gridgain-#2039%resource.GridResourceMethodInjectionSelfTest2%][GridResourceMethodInjectionSelfTest$UserResourceTask] Injected spring bean2 resource into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserSpringBean@6b1b6f12
[14:17:48,759][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:48,759][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:48,762][INFO ][disco-event-worker-#2032%resource.GridResourceMethodInjectionSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=2be5b86e-565c-4860-ac9f-af0700715884, state=LEFT, lastHeartbeat=1353320268752, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55210, startTime=1353320263990]
[14:17:48,762][INFO ][disco-event-worker-#2032%resource.GridResourceMethodInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x826D6307]
[14:17:48,765][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320267654, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bfaca281b31-2be5b86e-565c-4860-ac9f-af0700715884, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:48,766][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@4fcdf136
[14:17:48,766][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@2ae04cf5
[14:17:48,766][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@57299f0b
[14:17:48,767][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@6bdc7ed0
[14:17:48,767][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@695521fe
[14:17:48,767][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@4b077b33
[14:17:48,767][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@6cb59557
[14:17:48,768][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@6d88b7e1
[14:17:48,768][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@3b59109f
[14:17:48,768][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@542ae0b8
[14:17:48,772][INFO ][test-runner][GridResourceMethodInjectionSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceMethodInjectionSelfTest1
>>> Grid uptime: 00:00:03:726
[14:17:48,772][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:48,772][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:48,777][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320267675, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=20bca281b31-bc8a0d77-5408-4f9e-a0eb-de1e2938247c, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResourceTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:48,777][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@7b6bccbd
[14:17:48,777][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource4] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource4@620747f4
[14:17:48,777][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@23189a94
[14:17:48,777][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource5] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource5@4c051673
[14:17:48,777][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@42b53ce5
[14:17:48,778][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource2@6aa520fa
[14:17:48,778][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@7f1833c8
[14:17:48,778][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource3] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource3@1984ddf2
[14:17:48,778][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@58be34ef
[14:17:48,778][INFO ][test-runner][GridResourceMethodInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodInjectionSelfTest$UserResource1@1c9e82eb
[14:17:48,780][INFO ][test-runner][GridResourceMethodInjectionSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceMethodInjectionSelfTest2
>>> Grid uptime: 00:00:01:128
[14:17:48,780][INFO ][main][GridResourceMethodInjectionSelfTest] >>> Stopping test: testMethodInjection in 5333 ms <<<
[14:17:48,782][INFO ][main][GridResourceFieldOverrideInjectionSelfTest] >>> Starting test: testFieldResourceOverride <<<
[14:17:48,785][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:48,785][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] << Enterprise Edition >>
[14:17:48,785][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Config URL: n/a
[14:17:48,785][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Daemon mode: off
[14:17:48,785][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:48,785][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:48,786][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:48,786][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:48,786][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:48,786][WARN ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] SMTP is not configured - email notifications are off.
[14:17:48,786][WARN ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Cache is not configured - data grid is off.
[14:17:48,786][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:48,786][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:48,786][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Enabled local MACs: C8600068582C
[14:17:49,289][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:49,294][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45220, locHost=/192.168.2.14]
[14:17:49,318][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:49,321][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:49,322][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55220
[14:17:49,322][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50022
[14:17:49,323][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=acfb8821-e386-4ba5-a897-1c1ac27702c3, state=READY, lastHeartbeat=1353320269316, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55220, startTime=1353320269316]
[14:17:49,324][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xC5972298]
[14:17:49,325][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:50,355][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:50,356][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:50,356][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:50,356][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:50,356][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:50,359][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldOverrideInjectionSelfTest1
>>> Local node [ID=ACFB8821-E386-4BA5-A897-1C1AC27702C3, order=1353320269316]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45220 UDP:50022 TCP:55220
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] << Enterprise Edition >>
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Config URL: n/a
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Daemon mode: off
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:50,360][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:50,360][WARN ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] SMTP is not configured - email notifications are off.
[14:17:50,360][WARN ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Cache is not configured - data grid is off.
[14:17:50,361][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:50,361][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:50,361][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Enabled local MACs: C8600068582C
[14:17:50,863][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:50,869][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45221, locHost=/192.168.2.14]
[14:17:50,886][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2] Security status [authentication=on, secure-session=on]
[14:17:50,888][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:50,888][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55221
[14:17:50,889][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50022
[14:17:50,889][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=df6e1e50-0e6f-46ff-b3f0-561ff2f4caeb, state=READY, lastHeartbeat=1353320270887, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55221, startTime=1353320270887]
[14:17:50,889][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9BB05A83]
[14:17:50,891][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:50,894][INFO ][disco-event-worker-#2055%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=df6e1e50-0e6f-46ff-b3f0-561ff2f4caeb, state=READY, lastHeartbeat=1353320270887, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55221, startTime=1353320270887]
[14:17:50,894][INFO ][disco-event-worker-#2075%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=acfb8821-e386-4ba5-a897-1c1ac27702c3, state=READY, lastHeartbeat=1353320270887, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55220, startTime=1353320269316]
[14:17:50,894][INFO ][disco-event-worker-#2055%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xDEC4958A]
[14:17:51,893][INFO ][disco-event-worker-#2075%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xDEC4958A]
[14:17:52,974][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:52,975][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:52,976][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:52,976][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:52,976][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:52,981][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceFieldOverrideInjectionSelfTest2
>>> Local node [ID=DF6E1E50-0E6F-46FF-B3F0-561FF2F4CAEB, order=1353320270887]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45221 UDP:50022 TCP:55221
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:52,987][INFO ][gridgain-#2078%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@7a3b66c0
[14:17:52,987][INFO ][gridgain-#2078%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask] Injected logger into task: GridLoggerProxy [gridName=resource.GridResourceFieldOverrideInjectionSelfTest1, id8=acfb8821, gg=true]
[14:17:52,987][INFO ][gridgain-#2078%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask] Injected shared resource into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@7a3b66c0
[14:17:52,987][INFO ][gridgain-#2078%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask] Injected session into task: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, dep=GridDeployment [ts=1353320272972, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=72bca281b31-acfb8821-e386-4ba5-a897-1c1ac27702c3, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sesId=72bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320272972, endTime=9223372036854775807, taskNodeId=acfb8821-e386-4ba5-a897-1c1ac27702c3, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:17:52,987][INFO ][gridgain-#2078%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask] Injected spring bean into task: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserSpringBean@51d705f1
[14:17:52,996][INFO ][gridgain-#2080%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected logger into job: GridLoggerProxy [gridName=resource.GridResourceFieldOverrideInjectionSelfTest1, id8=acfb8821, gg=true]
[14:17:52,996][INFO ][gridgain-#2080%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected shared resource into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@7a3b66c0
[14:17:52,996][INFO ][gridgain-#2080%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected session into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, dep=GridDeployment [ts=1353320272972, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=72bca281b31-acfb8821-e386-4ba5-a897-1c1ac27702c3, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, undeployed=false, pendingUndeploy=false, usage=2], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sesId=72bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320272972, endTime=9223372036854775807, taskNodeId=acfb8821-e386-4ba5-a897-1c1ac27702c3, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=d2bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:52,996][INFO ][gridgain-#2080%resource.GridResourceFieldOverrideInjectionSelfTest1%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected spring bean into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserSpringBean@51d705f1
[14:17:52,999][INFO ][gridgain-#2079%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridResourceFieldOverrideInjectionSelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@e5b3269
[14:17:52,999][INFO ][gridgain-#2082%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected logger into job: GridLoggerProxy [gridName=resource.GridResourceFieldOverrideInjectionSelfTest2, id8=df6e1e50, gg=true]
[14:17:53,000][INFO ][gridgain-#2082%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected shared resource into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@e5b3269
[14:17:53,000][INFO ][gridgain-#2082%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected session into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, dep=GridDeployment [ts=1353320272992, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e2bca281b31-df6e1e50-0e6f-46ff-b3f0-561ff2f4caeb, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sesId=72bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320272972, endTime=9223372036854775807, taskNodeId=acfb8821-e386-4ba5-a897-1c1ac27702c3, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=b2bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:53,000][INFO ][gridgain-#2082%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask$1] Injected spring bean into job: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserSpringBean@51d705f1
[14:17:54,055][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:54,055][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:54,058][INFO ][disco-event-worker-#2075%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=acfb8821-e386-4ba5-a897-1c1ac27702c3, state=LEFT, lastHeartbeat=1353320274050, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55220, startTime=1353320269316]
[14:17:54,058][INFO ][disco-event-worker-#2075%resource.GridResourceFieldOverrideInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9BB05A83]
[14:17:54,060][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320272972, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=72bca281b31-acfb8821-e386-4ba5-a897-1c1ac27702c3, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:54,061][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@7a3b66c0
[14:17:54,062][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldOverrideInjectionSelfTest1
>>> Grid uptime: 00:00:03:706
[14:17:54,063][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:54,063][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:54,067][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320272992, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e2bca281b31-df6e1e50-0e6f-46ff-b3f0-561ff2f4caeb, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$ResourceOverrideTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:54,068][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceFieldOverrideInjectionSelfTest$UserResource@e5b3269
[14:17:54,069][INFO ][test-runner][GridResourceFieldOverrideInjectionSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceFieldOverrideInjectionSelfTest2
>>> Grid uptime: 00:00:01:88
[14:17:54,070][INFO ][main][GridResourceFieldOverrideInjectionSelfTest] >>> Stopping test: testFieldResourceOverride in 5288 ms <<<
[14:17:54,074][INFO ][main][GridResourceMethodOverrideInjectionSelfTest] >>> Starting test: testMethodResourceOverride <<<
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] << Enterprise Edition >>
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Config URL: n/a
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Daemon mode: off
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:54,079][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:54,079][WARN ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] SMTP is not configured - email notifications are off.
[14:17:54,079][WARN ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Cache is not configured - data grid is off.
[14:17:54,080][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:54,081][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:54,081][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Enabled local MACs: C8600068582C
[14:17:54,584][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:54,590][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45230, locHost=/192.168.2.14]
[14:17:54,607][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1] Security status [authentication=on, secure-session=on]
[14:17:54,608][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:54,608][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55230
[14:17:54,609][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50023
[14:17:54,609][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=276b5a84-1b92-40dd-9f47-c17c7756b849, state=READY, lastHeartbeat=1353320274604, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55230, startTime=1353320274604]
[14:17:54,609][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xACE68974]
[14:17:54,610][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:55,651][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:17:55,652][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:17:55,652][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:55,652][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:55,652][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:55,655][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceMethodOverrideInjectionSelfTest1
>>> Local node [ID=276B5A84-1B92-40DD-9F47-C17C7756B849, order=1353320274604]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45230 UDP:50023 TCP:55230
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] << Enterprise Edition >>
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Config URL: n/a
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Daemon mode: off
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:55,656][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:55,656][WARN ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] SMTP is not configured - email notifications are off.
[14:17:55,656][WARN ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Cache is not configured - data grid is off.
[14:17:55,657][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:55,657][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:55,657][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Enabled local MACs: C8600068582C
[14:17:56,159][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:56,165][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45231, locHost=/192.168.2.14]
[14:17:56,184][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2] Security status [authentication=on, secure-session=on]
[14:17:56,187][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:56,187][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55231
[14:17:56,187][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50023
[14:17:56,187][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=304e3373-82e4-409a-8f96-5b52babddb5b, state=READY, lastHeartbeat=1353320276179, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55231, startTime=1353320276179]
[14:17:56,188][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x3818BAAF]
[14:17:56,189][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:17:56,195][INFO ][disco-event-worker-#2098%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=304e3373-82e4-409a-8f96-5b52babddb5b, state=READY, lastHeartbeat=1353320276191, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55231, startTime=1353320276179]
[14:17:56,195][INFO ][disco-event-worker-#2098%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x8BDAE0FB]
[14:17:56,195][INFO ][disco-event-worker-#2118%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=276b5a84-1b92-40dd-9f47-c17c7756b849, state=READY, lastHeartbeat=1353320276191, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55230, startTime=1353320274604]
[14:17:57,193][INFO ][disco-event-worker-#2118%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x8BDAE0FB]
[14:17:58,268][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:17:58,270][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:17:58,270][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:17:58,270][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:17:58,270][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:17:58,275][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceMethodOverrideInjectionSelfTest2
>>> Local node [ID=304E3373-82E4-409A-8F96-5B52BABDDB5B, order=1353320276179]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45231 UDP:50023 TCP:55231
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:17:58,286][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@500493a0
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@5007b893
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@2ae6e3f1
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@1c7ef938
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] -->Identity in the split: 112269545
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@500493a0
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@5007b893
[14:17:58,287][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@2ae6e3f1
[14:17:58,288][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@1c7ef938
[14:17:58,288][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, id8=276b5a84, gg=true]
[14:17:58,288][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected grid resource into task: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@541bda25, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@708ede46, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@33a2ff65, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@122d5a5f, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, nodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, locNode=GridMulticastDiscoveryNode [id=276b5a84-1b92-40dd-9f47-c17c7756b849, state=READY, lastHeartbeat=1353320274604, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55230, startTime=1353320274604], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.24, mcastAddr=/229.14.1.24, mcastPort=50023, tcpPort=55230, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@60f9b0ec, startTime=1353320274604, ttl=8, boundTcpPort=55230, isMcastEnabled=java.util.concurrent.CountDownLatch@28ce87b1[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45230, locPortRange=100, gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45230, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45230, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=0, sentMsgsCnt=0, rcvdBytesCnt=0, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=4, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=0, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@f2e8a65, sigar=org.hyperic.sigar.Sigar@387ff4ac, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.019801980198019802, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@5898652e], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, kernalMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320275645, springCtx=org.springframework.context.support.GenericApplicationContext@76e581d: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@7d1adc72, licTimer=java.util.Timer@6e7f0088, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceMethodOverrideInjectionSelfTest1]]
[14:17:58,288][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected nodeId resource into task: 276b5a84-1b92-40dd-9f47-c17c7756b849
[14:17:58,288][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected mbean server resource into task: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:58,289][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected executor service resource into task: org.gridgain.grid.thread.GridThreadPoolExecutor@541bda25
[14:17:58,289][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected gridgain home resource into task: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:58,289][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected grid name resource into task: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:58,289][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected spring context resource into task: org.springframework.context.support.GenericApplicationContext@76e581d: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:58,289][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected session resource into task: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, dep=GridDeployment [ts=1353320278274, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=35bca281b31-276b5a84-1b92-40dd-9f47-c17c7756b849, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sesId=35bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320278274, endTime=9223372036854775807, taskNodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:17:58,289][INFO ][gridgain-#2121%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected continuous mapper: org.gridgain.grid.kernal.processors.task.GridTaskWorker$1@53fc1964
[14:17:58,294][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@500493a0
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@5007b893
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@2ae6e3f1
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@1c7ef938
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@500493a0
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@5007b893
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@2ae6e3f1
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@1c7ef938
[14:17:58,295][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, id8=276b5a84, gg=true]
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected grid resource into job: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@541bda25, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@708ede46, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@33a2ff65, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@122d5a5f, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, nodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, locNode=GridMulticastDiscoveryNode [id=276b5a84-1b92-40dd-9f47-c17c7756b849, state=READY, lastHeartbeat=1353320274604, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55230, startTime=1353320274604], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.24, mcastAddr=/229.14.1.24, mcastPort=50023, tcpPort=55230, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@60f9b0ec, startTime=1353320274604, ttl=8, boundTcpPort=55230, isMcastEnabled=java.util.concurrent.CountDownLatch@28ce87b1[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45230, locPortRange=100, gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45230, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45230, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=0, sentMsgsCnt=0, rcvdBytesCnt=0, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=8, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=1, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@f2e8a65, sigar=org.hyperic.sigar.Sigar@387ff4ac, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.019801980198019802, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@5898652e], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceMethodOverrideInjectionSelfTest1, kernalMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest1,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320275645, springCtx=org.springframework.context.support.GenericApplicationContext@76e581d: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@7d1adc72, licTimer=java.util.Timer@6e7f0088, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceMethodOverrideInjectionSelfTest1]]
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected nodeId resource into job: 276b5a84-1b92-40dd-9f47-c17c7756b849
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected mbean server resource into job: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected executor service resource into job: org.gridgain.grid.thread.GridThreadPoolExecutor@541bda25
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected gridgain home resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected grid grid name resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected spring context resource into job: org.springframework.context.support.GenericApplicationContext@76e581d: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected session resource into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, dep=GridDeployment [ts=1353320278274, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=35bca281b31-276b5a84-1b92-40dd-9f47-c17c7756b849, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, undeployed=false, pendingUndeploy=false, usage=2], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sesId=35bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320278274, endTime=9223372036854775807, taskNodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=75bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:58,296][INFO ][gridgain-#2122%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected job context resource into job: GridJobContextImpl [jobId=75bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}]
[14:17:58,305][INFO ][gridgain-#2124%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@163c5415
[14:17:58,305][INFO ][gridgain-#2124%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@3652ab61
[14:17:58,305][INFO ][gridgain-#2124%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@38e290f7
[14:17:58,306][INFO ][gridgain-#2124%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@229b654e
[14:17:58,306][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@163c5415
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@3652ab61
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@38e290f7
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@229b654e
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@163c5415
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@3652ab61
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@38e290f7
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@229b654e
[14:17:58,307][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceMethodOverrideInjectionSelfTest2, id8=304e3373, gg=true]
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected grid resource into job: GridKernal [cfg=GridConfigurationAdapter [gridName=resource.GridResourceMethodOverrideInjectionSelfTest2, execSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@56b23287, sysSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@4d136988, mgmtSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@35758740, p2pSvcShutdown=true, execSvcShutdown=true, sysSvcShutdown=true, mgmtSvcShutdown=true, lifeCycleEmailNtf=true, p2pSvc=org.gridgain.grid.thread.GridThreadPoolExecutor@3702962b, ggHome=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6, nodeId=304e3373-82e4-409a-8f96-5b52babddb5b, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, marshLocJobs=false, daemon=false, jettyPath=null, restEnabled=true, p2pEnabled=true, netTimeout=10000, metricsHistSize=10000, metricsExpTime=9223372036854775807, discoSpi=GridMulticastDiscoverySpi [marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, nodeId=304e3373-82e4-409a-8f96-5b52babddb5b, gridName=resource.GridResourceMethodOverrideInjectionSelfTest2, locNode=GridMulticastDiscoveryNode [id=304e3373-82e4-409a-8f96-5b52babddb5b, state=READY, lastHeartbeat=1353320276179, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55231, startTime=1353320276179], beatFreq=1000, sockTimeout=2000, beatThreadPri=6, maxMissedBeats=30, locHost=/192.168.2.14, mcastGrp=229.14.1.24, mcastAddr=/229.14.1.24, mcastPort=50023, tcpPort=55230, leaveAttempts=3, locAddr=192.168.2.14, locPortRange=100, lsnr=org.gridgain.grid.kernal.managers.discovery.GridDiscoveryManager$4@ad0fd44, startTime=1353320276179, ttl=8, boundTcpPort=55231, isMcastEnabled=java.util.concurrent.CountDownLatch@1ea380e8[Count = 0], isCheckMcastEnabled=true, isStopping=false, isSpiCtxInitialized=true, dfltClsLdr=sun.misc.Launcher$AppClassLoader@3326b249], segPlc=STOP, segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true, segChkFreq=10000, commSpi=GridTcpCommunicationSpi [nodeId=304e3373-82e4-409a-8f96-5b52babddb5b, marsh=org.gridgain.grid.marshaller.optimized.GridOptimizedMarshaller@5f881c4b, locAddr=192.168.2.14, locHost=/192.168.2.14, locPort=45230, locPortRange=100, gridName=resource.GridResourceMethodOverrideInjectionSelfTest2, directBuf=true, idleConnTimeout=30000, connTimeout=1000, nioSrvr=GridNioServerImpl [filterChain=FilterChain[filters=[GridNioCodecFilter [parser=GridBufferedParser], closed=false, directBuf=true, addr=/192.168.2.14, port=45231, tcpNoDelay=true, writeTimeout=5000, idleTimeout=5000, skipWrite=false], tcpNoDelay=true, boundTcpPort=45231, selectorsCnt=4, portRsvr=null, rcvdMsgsCnt=1, sentMsgsCnt=0, rcvdBytesCnt=1248, sentBytesCnt=0, locks=GridStripedLock [concurrency=16]], evtSpi=GridMemoryEventStorageSpi [expireAgeMs=9223372036854775807, expireCnt=10000, queueSize=5, cleaningFlag=false, filter=null], colSpi=GridFifoQueueCollisionSpi [parallelJobsNum=95, waitJobsNum=2147483647, runningCnt=0, waitingCnt=1, heldCnt=0], metricsSpi=GridJdkLocalMetricsSpi [mem=sun.management.MemoryImpl@485fcf29, os=com.sun.management.UnixOperatingSystem@1e2acc65, rt=sun.management.RuntimeImpl@704f459c, threads=sun.management.ThreadImpl@4c331059, metrics=org.gridgain.grid.spi.metrics.jdk.GridJdkLocalMetricsSpi$2@640f0f, sigar=org.hyperic.sigar.Sigar@2918a1fc, fsRoot=null, isErrRep=false, fsRootFile=null, enableFsMetrics=false, updateFreq=1000, gcCpuLoad=0.0, cpuLoad=0.01682692307692308, cpuDesc=Intel Core(TM) i5-2500 CPU @ 3.30GHz, totSysMemory=4063903744], authSpi=GridNoopAuthenticationSpi [], sesSpi=GridNoopSecureSessionSpi [], deploySpi=GridLocalDeploymentSpi [lsnr=org.gridgain.grid.kernal.managers.deployment.GridDeploymentLocalStore$LocalDeploymentListener@1032bc78], discoStartupDelay=60000, deployMode=SHARED, p2pMissedCacheSize=100, smtpHost=null, smtpPort=25, smtpUsername=null, smtpPwd=null, smtpFromEmail=info@gridgain.com, smtpSsl=false, smtpStartTls=false, locHost=192.168.2.14, restSecretKey=null, licUrl=file:/usr/local/TeamCityAgent/work/d46fc9c3d71112c2/gridgain-license.xml, metricsLogFreq=0, restTcpHost=null, restTcpPort=11211, restTcpNoDelay=true, restTcpSslEnabled=false, restTcpSslClientAuth=false, restTcpSslCtxFactory=null, jettyPort=8080, restRouterTcpPort=0, restRouterJettyPort=0, restRouterHost=null, clientMsgInterceptor=null], gridName=resource.GridResourceMethodOverrideInjectionSelfTest2, kernalMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest2,group=Kernal,name=GridKernal, locNodeMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest2,group=Kernal,name=GridLocalNodeMetrics, pubExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest2,group=Thread Pools,name=GridExecutionExecutor, sysExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest2,group=Thread Pools,name=GridSystemExecutor, mgmtExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest2,group=Thread Pools,name=GridManagementExecutor, p2PExecSvcMBean=org.gridgain:grid=resource.GridResourceMethodOverrideInjectionSelfTest2,group=Thread Pools,name=GridClassLoadingExecutor, startTime=1353320278274, springCtx=org.springframework.context.support.GenericApplicationContext@46e2506b: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy, updateNtfTimer=null, starveTimer=java.util.Timer@72f37296, licTimer=java.util.Timer@4ce810cf, metricsLogTimer=null, errOnStop=false, relDate=Thu Jan 01 00:00:00 MSK 1970, gw=GridKernalGatewayImpl [state=STARTED, gridName=resource.GridResourceMethodOverrideInjectionSelfTest2]]
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected nodeId resource into job: 304e3373-82e4-409a-8f96-5b52babddb5b
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected mbean server resource into job: com.sun.jmx.mbeanserver.JmxMBeanServer@4eedf3f6
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected executor service resource into job: org.gridgain.grid.thread.GridThreadPoolExecutor@56b23287
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected gridgain home resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected grid grid name resource into job: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected spring context resource into job: org.springframework.context.support.GenericApplicationContext@46e2506b: startup date [Thu Jan 01 03:00:00 MSK 1970]; root of context hierarchy
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected session resource into job: GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, dep=GridDeployment [ts=1353320278294, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f5bca281b31-304e3373-82e4-409a-8f96-5b52babddb5b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sesId=35bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320278274, endTime=9223372036854775807, taskNodeId=276b5a84-1b92-40dd-9f47-c17c7756b849, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=95bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:17:58,308][INFO ][gridgain-#2125%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] Injected job context resource into job: GridJobContextImpl [jobId=95bca281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}]
[14:17:58,309][INFO ][gridgain-#2126%resource.GridResourceMethodOverrideInjectionSelfTest1%][GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask] -->Identity in reduce: 112269545
[14:17:59,364][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:59,364][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:59,366][INFO ][disco-event-worker-#2118%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=276b5a84-1b92-40dd-9f47-c17c7756b849, state=LEFT, lastHeartbeat=1353320279362, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55230, startTime=1353320274604]
[14:17:59,367][INFO ][disco-event-worker-#2118%resource.GridResourceMethodOverrideInjectionSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x3818BAAF]
[14:17:59,369][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320278274, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=35bca281b31-276b5a84-1b92-40dd-9f47-c17c7756b849, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:59,369][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@5007b893
[14:17:59,369][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@1c7ef938
[14:17:59,369][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@500493a0
[14:17:59,369][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@2ae6e3f1
[14:17:59,371][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceMethodOverrideInjectionSelfTest1
>>> Grid uptime: 00:00:03:717
[14:17:59,372][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:17:59,372][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:17:59,377][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320278294, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f5bca281b31-304e3373-82e4-409a-8f96-5b52babddb5b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$MethodResourceOverrideTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:17:59,377][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@3652ab61
[14:17:59,377][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource2@229b654e
[14:17:59,377][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@163c5415
[14:17:59,377][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceMethodOverrideInjectionSelfTest$UserResource1@38e290f7
[14:17:59,379][INFO ][test-runner][GridResourceMethodOverrideInjectionSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceMethodOverrideInjectionSelfTest2
>>> Grid uptime: 00:00:01:98
[14:17:59,380][INFO ][main][GridResourceMethodOverrideInjectionSelfTest] >>> Stopping test: testMethodResourceOverride in 5306 ms <<<
[14:17:59,383][INFO ][main][GridResourceProcessorSelfTest] >>> Starting test: testInjectResourceToAnnotatedField <<<
[14:17:59,387][INFO ][main][GridResourceProcessorSelfTest] >>> Stopping test: testInjectResourceToAnnotatedField in 4 ms <<<
[14:17:59,390][INFO ][main][GridResourceProcessorSelfTest] >>> Starting test: testInjectResourceToAnnotatedMethod <<<
[14:17:59,391][INFO ][main][GridResourceProcessorSelfTest] >>> Stopping test: testInjectResourceToAnnotatedMethod in 1 ms <<<
[14:17:59,394][INFO ][main][GridResourceProcessorSelfTest] >>> Starting test: testInjectResourceInnerClasses <<<
[14:17:59,403][INFO ][main][GridResourceProcessorSelfTest] >>> Stopping test: testInjectResourceInnerClasses in 9 ms <<<
[14:17:59,406][INFO ][main][GridResourceProcessorSelfTest] >>> Starting test: testInjectResourceGridTaskAndJob <<<
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] << Enterprise Edition >>
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] Config URL: n/a
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] Daemon mode: off
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:17:59,411][INFO ][test-runner][GridResourceProcessorSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:17:59,412][INFO ][test-runner][GridResourceProcessorSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:17:59,412][WARN ][test-runner][GridResourceProcessorSelfTest] SMTP is not configured - email notifications are off.
[14:17:59,412][WARN ][test-runner][GridResourceProcessorSelfTest] Cache is not configured - data grid is off.
[14:17:59,413][INFO ][test-runner][GridResourceProcessorSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:17:59,413][INFO ][test-runner][GridResourceProcessorSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:17:59,413][INFO ][test-runner][GridResourceProcessorSelfTest] Enabled local MACs: C8600068582C
[14:17:59,917][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:17:59,922][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45240, locHost=/192.168.2.14]
[14:17:59,938][INFO ][test-runner][GridResourceProcessorSelfTest] Security status [authentication=on, secure-session=on]
[14:17:59,940][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:17:59,940][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55240
[14:17:59,940][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50024
[14:17:59,941][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=77ed8ea9-22b6-40df-9bc5-f22a3d17f045, state=READY, lastHeartbeat=1353320279935, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55240, startTime=1353320279935]
[14:17:59,941][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xAC3EB78A]
[14:17:59,945][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:00,976][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:00,977][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:00,977][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:00,977][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:00,977][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:00,983][INFO ][test-runner][GridResourceProcessorSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceProcessorSelfTest
>>> Local node [ID=77ED8EA9-22B6-40DF-9BC5-F22A3D17F045, order=1353320279935]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45240 UDP:50024 TCP:55240
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:00,989][INFO ][test-runner][GridResourceProcessorSelfTest] >>> Stopping grid [name=resource.GridResourceProcessorSelfTest, id=77ed8ea9-22b6-40df-9bc5-f22a3d17f045]
[14:18:02,046][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:02,046][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:02,051][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320280983, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=17bca281b31-77ed8ea9-22b6-40df-9bc5-f22a3d17f045, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceProcessorSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceProcessorSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:02,052][INFO ][test-runner][GridResourceProcessorSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceProcessorSelfTest
>>> Grid uptime: 00:00:01:77
[14:18:02,053][INFO ][main][GridResourceProcessorSelfTest] >>> Stopping test: testInjectResourceGridTaskAndJob in 2647 ms <<<
[14:18:02,056][INFO ][main][GridResourceProcessorSelfTest] >>> Starting test: testInjectResourcePerformance <<<
[14:18:02,092][INFO ][test-runner][GridResourceProcessorSelfTest] Resource injection takes 6.8E-4 msec per target object.
[14:18:02,092][INFO ][main][GridResourceProcessorSelfTest] >>> Stopping test: testInjectResourcePerformance in 36 ms <<<
[14:18:02,094][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Starting test: testSameTask <<<
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] << Enterprise Edition >>
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Config URL: n/a
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Daemon mode: off
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:02,096][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:02,096][WARN ][test-runner][GridResourceIsolatedTaskSelfTest] SMTP is not configured - email notifications are off.
[14:18:02,097][WARN ][test-runner][GridResourceIsolatedTaskSelfTest] Cache is not configured - data grid is off.
[14:18:02,097][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:02,098][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:02,098][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Enabled local MACs: C8600068582C
[14:18:02,600][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:02,605][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45250, locHost=/192.168.2.14]
[14:18:02,661][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Security status [authentication=on, secure-session=on]
[14:18:02,664][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:02,664][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55250
[14:18:02,665][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:02,665][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=85fc7fa4-5bb7-4a16-9909-c344977d63c2, state=READY, lastHeartbeat=1353320282664, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320282654]
[14:18:02,665][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x85DAD533]
[14:18:02,666][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:03,697][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:03,698][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:03,698][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:03,698][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:03,698][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:03,701][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest
>>> Local node [ID=85FC7FA4-5BB7-4A16-9909-C344977D63C2, order=1353320282654]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45250 UDP:50025 TCP:55250
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:03,704][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,705][INFO ][gridgain-#2170%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=85fc7fa4, gg=true]
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,707][INFO ][gridgain-#2171%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=85fc7fa4, gg=true]
[14:18:03,708][INFO ][gridgain-#2173%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,708][INFO ][gridgain-#2173%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,708][INFO ][gridgain-#2173%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,708][INFO ][gridgain-#2173%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,708][INFO ][gridgain-#2173%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=85fc7fa4, gg=true]
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:03,709][INFO ][gridgain-#2174%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=85fc7fa4, gg=true]
[14:18:04,764][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:04,764][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:04,769][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320283701, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=28bca281b31-85fc7fa4-5bb7-4a16-9909-c344977d63c2, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:04,769][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@5577f80c
[14:18:04,769][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4969463b
[14:18:04,769][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@4092ca06
[14:18:04,770][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@373e07aa
[14:18:04,771][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest
>>> Grid uptime: 00:00:01:77
[14:18:04,772][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Stopping test: testSameTask in 2678 ms <<<
[14:18:04,775][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Starting test: testDifferentTasks <<<
[14:18:04,780][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:04,780][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] << Enterprise Edition >>
[14:18:04,780][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Config URL: n/a
[14:18:04,781][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Daemon mode: off
[14:18:04,781][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:18:04,781][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:04,781][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:04,781][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:04,781][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:04,781][WARN ][test-runner][GridResourceIsolatedTaskSelfTest1] SMTP is not configured - email notifications are off.
[14:18:04,781][WARN ][test-runner][GridResourceIsolatedTaskSelfTest1] Cache is not configured - data grid is off.
[14:18:04,782][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:04,782][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:04,782][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Enabled local MACs: C8600068582C
[14:18:05,286][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:05,291][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45250, locHost=/192.168.2.14]
[14:18:05,307][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Security status [authentication=on, secure-session=on]
[14:18:05,309][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:05,309][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55250
[14:18:05,309][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:05,310][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=d20378c3-039b-41e1-921d-360820c94632, state=READY, lastHeartbeat=1353320285302, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320285302]
[14:18:05,310][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xEDFF835E]
[14:18:05,311][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:06,337][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:06,338][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:06,339][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:06,339][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:06,339][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:06,341][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest1
>>> Local node [ID=D20378C3-039B-41E1-921D-360820C94632, order=1353320285302]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45250 UDP:50025 TCP:55250
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] << Enterprise Edition >>
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Config URL: n/a
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Daemon mode: off
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:06,343][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:06,343][WARN ][test-runner][GridResourceIsolatedTaskSelfTest2] SMTP is not configured - email notifications are off.
[14:18:06,343][WARN ][test-runner][GridResourceIsolatedTaskSelfTest2] Cache is not configured - data grid is off.
[14:18:06,344][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:06,344][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:06,344][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Enabled local MACs: C8600068582C
[14:18:06,848][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:06,853][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45251, locHost=/192.168.2.14]
[14:18:06,887][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Security status [authentication=on, secure-session=on]
[14:18:06,890][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:06,891][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55251
[14:18:06,891][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:06,892][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1e777bbb-bf96-43b9-acfd-4e143856f17d, state=READY, lastHeartbeat=1353320286882, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55251, startTime=1353320286882]
[14:18:06,893][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xE2B00BAA]
[14:18:06,894][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:06,899][INFO ][disco-event-worker-#2190%resource.GridResourceIsolatedTaskSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=1e777bbb-bf96-43b9-acfd-4e143856f17d, state=READY, lastHeartbeat=1353320286892, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55251, startTime=1353320286882]
[14:18:06,899][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d20378c3-039b-41e1-921d-360820c94632, state=READY, lastHeartbeat=1353320286892, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320285302]
[14:18:06,899][INFO ][disco-event-worker-#2190%resource.GridResourceIsolatedTaskSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x675F0AFA]
[14:18:07,896][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x675F0AFA]
[14:18:08,975][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:18:08,976][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:18:08,976][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:08,976][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:08,976][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:08,982][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest2
>>> Local node [ID=1E777BBB-BF96-43B9-ACFD-4E143856F17D, order=1353320286882]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45251 UDP:50025 TCP:55251
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2d706e0b
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3048ab7b
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@72f23100
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7a6f31f4
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2d706e0b
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3048ab7b
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@72f23100
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7a6f31f4
[14:18:08,986][INFO ][gridgain-#2213%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=d20378c3, gg=true]
[14:18:08,989][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2d706e0b
[14:18:08,989][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3048ab7b
[14:18:08,989][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@72f23100
[14:18:08,990][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7a6f31f4
[14:18:08,990][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2d706e0b
[14:18:08,990][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3048ab7b
[14:18:08,990][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@72f23100
[14:18:08,990][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7a6f31f4
[14:18:08,990][INFO ][gridgain-#2214%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=d20378c3, gg=true]
[14:18:08,997][INFO ][gridgain-#2216%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1
[14:18:09,001][INFO ][gridgain-#2216%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@371632d0
[14:18:09,002][INFO ][gridgain-#2216%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@126211f1
[14:18:09,002][INFO ][gridgain-#2216%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6487eea4
[14:18:09,002][INFO ][gridgain-#2216%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1844848c
[14:18:09,002][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@371632d0
[14:18:09,002][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@126211f1
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6487eea4
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1844848c
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@371632d0
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@126211f1
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6487eea4
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1844848c
[14:18:09,003][INFO ][gridgain-#2217%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest2, id8=1e777bbb, gg=true]
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3e245bbd
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4502f52a
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@452dbbcb
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3d842fe8
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3e245bbd
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4502f52a
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@452dbbcb
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3d842fe8
[14:18:09,008][INFO ][gridgain-#2219%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=d20378c3, gg=true]
[14:18:09,012][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3e245bbd
[14:18:09,012][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4502f52a
[14:18:09,012][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@452dbbcb
[14:18:09,012][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3d842fe8
[14:18:09,012][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3e245bbd
[14:18:09,013][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4502f52a
[14:18:09,013][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@452dbbcb
[14:18:09,013][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3d842fe8
[14:18:09,013][INFO ][gridgain-#2220%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=d20378c3, gg=true]
[14:18:09,015][INFO ][gridgain-#2222%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask2
[14:18:09,018][INFO ][gridgain-#2222%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7465680
[14:18:09,018][INFO ][gridgain-#2222%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1ad8f13b
[14:18:09,018][INFO ][gridgain-#2222%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@18c56642
[14:18:09,018][INFO ][gridgain-#2222%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@47bc83c2
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7465680
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1ad8f13b
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@18c56642
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@47bc83c2
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7465680
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1ad8f13b
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@18c56642
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@47bc83c2
[14:18:09,019][INFO ][gridgain-#2223%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest2, id8=1e777bbb, gg=true]
[14:18:10,075][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:10,076][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:10,078][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=d20378c3-039b-41e1-921d-360820c94632, state=LEFT, lastHeartbeat=1353320290073, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320285302]
[14:18:10,078][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xE2B00BAA]
[14:18:10,079][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1]
[14:18:10,079][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask2, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask2]
[14:18:10,079][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1ad8f13b
[14:18:10,079][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@47bc83c2
[14:18:10,079][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7465680
[14:18:10,080][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@18c56642
[14:18:10,080][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@126211f1
[14:18:10,080][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@1844848c
[14:18:10,080][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@371632d0
[14:18:10,080][INFO ][disco-event-worker-#2210%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6487eea4
[14:18:10,080][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320288976, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=cabca281b31-d20378c3-039b-41e1-921d-360820c94632, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:10,080][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4502f52a
[14:18:10,080][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3d842fe8
[14:18:10,081][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3e245bbd
[14:18:10,081][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@452dbbcb
[14:18:10,081][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3048ab7b
[14:18:10,081][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7a6f31f4
[14:18:10,081][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2d706e0b
[14:18:10,081][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@72f23100
[14:18:10,083][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest1
>>> Grid uptime: 00:00:03:735
[14:18:10,084][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:10,084][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:10,088][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320288986, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=8bbca281b31-1e777bbb-bf96-43b9-acfd-4e143856f17d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:10,090][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest2
>>> Grid uptime: 00:00:01:107
[14:18:10,090][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Stopping test: testDifferentTasks in 5315 ms <<<
[14:18:10,094][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Starting test: testUndeployedTask <<<
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] << Enterprise Edition >>
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Config URL: n/a
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Daemon mode: off
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:10,099][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:10,100][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:10,100][WARN ][test-runner][GridResourceIsolatedTaskSelfTest1] SMTP is not configured - email notifications are off.
[14:18:10,100][WARN ][test-runner][GridResourceIsolatedTaskSelfTest1] Cache is not configured - data grid is off.
[14:18:10,100][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:10,101][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:10,101][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Enabled local MACs: C8600068582C
[14:18:10,604][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:10,609][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45250, locHost=/192.168.2.14]
[14:18:10,634][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1] Security status [authentication=on, secure-session=on]
[14:18:10,637][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:10,637][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55250
[14:18:10,638][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:10,639][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=0f502f09-2c01-4b17-a148-9b5ebfa6f548, state=READY, lastHeartbeat=1353320290637, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320290627]
[14:18:10,639][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xAE795A9E]
[14:18:10,640][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:11,672][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:11,673][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:11,673][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:11,673][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:11,673][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:11,676][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest1
>>> Local node [ID=0F502F09-2C01-4B17-A148-9B5EBFA6F548, order=1353320290627]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45250 UDP:50025 TCP:55250
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:11,677][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:11,677][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] << Enterprise Edition >>
[14:18:11,677][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Config URL: n/a
[14:18:11,677][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Daemon mode: off
[14:18:11,677][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:18:11,677][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:11,678][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:11,678][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:11,678][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:11,678][WARN ][test-runner][GridResourceIsolatedTaskSelfTest2] SMTP is not configured - email notifications are off.
[14:18:11,678][WARN ][test-runner][GridResourceIsolatedTaskSelfTest2] Cache is not configured - data grid is off.
[14:18:11,678][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:11,678][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:11,678][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Enabled local MACs: C8600068582C
[14:18:12,181][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:12,186][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45251, locHost=/192.168.2.14]
[14:18:12,205][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2] Security status [authentication=on, secure-session=on]
[14:18:12,207][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:12,207][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55251
[14:18:12,207][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:12,208][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=5f4be84e-85d9-48e8-928f-22b8071eda10, state=READY, lastHeartbeat=1353320292198, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55251, startTime=1353320292198]
[14:18:12,208][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x56357831]
[14:18:12,209][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:12,214][INFO ][disco-event-worker-#2239%resource.GridResourceIsolatedTaskSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=5f4be84e-85d9-48e8-928f-22b8071eda10, state=READY, lastHeartbeat=1353320292208, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55251, startTime=1353320292198]
[14:18:12,214][INFO ][disco-event-worker-#2239%resource.GridResourceIsolatedTaskSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xA592FE04]
[14:18:12,214][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=0f502f09-2c01-4b17-a148-9b5ebfa6f548, state=READY, lastHeartbeat=1353320292208, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320290627]
[14:18:13,212][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xA592FE04]
[14:18:14,289][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:18:14,290][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:18:14,290][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:14,290][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:14,290][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:14,295][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest2
>>> Local node [ID=5F4BE84E-85D9-48E8-928F-22B8071EDA10, order=1353320292198]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45251 UDP:50025 TCP:55251
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:14,299][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2f5b3602
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@d36d598
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@b00f4ef
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6bd07c8d
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2f5b3602
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@d36d598
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@b00f4ef
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6bd07c8d
[14:18:14,300][INFO ][gridgain-#2262%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=0f502f09, gg=true]
[14:18:14,303][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2f5b3602
[14:18:14,303][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@d36d598
[14:18:14,303][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@b00f4ef
[14:18:14,303][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6bd07c8d
[14:18:14,303][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2f5b3602
[14:18:14,303][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@d36d598
[14:18:14,304][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@b00f4ef
[14:18:14,304][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6bd07c8d
[14:18:14,304][INFO ][gridgain-#2263%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=0f502f09, gg=true]
[14:18:14,304][INFO ][gridgain-#2265%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1
[14:18:14,309][INFO ][gridgain-#2265%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3867845
[14:18:14,309][INFO ][gridgain-#2265%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7141fbd1
[14:18:14,309][INFO ][gridgain-#2265%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@22fb906e
[14:18:14,310][INFO ][gridgain-#2265%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@31c737b3
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3867845
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7141fbd1
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@22fb906e
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@31c737b3
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3867845
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7141fbd1
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@22fb906e
[14:18:14,310][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@31c737b3
[14:18:14,311][INFO ][gridgain-#2266%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest2, id8=5f4be84e, gg=true]
[14:18:14,312][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320294293, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=eebca281b31-0f502f09-2c01-4b17-a148-9b5ebfa6f548, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:14,312][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@d36d598
[14:18:14,312][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6bd07c8d
[14:18:14,312][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2f5b3602
[14:18:14,313][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@b00f4ef
[14:18:14,313][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1
[14:18:14,316][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320294303, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=afbca281b31-5f4be84e-85d9-48e8-928f-22b8071eda10, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:14,316][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1
[14:18:14,317][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Undeployed Private or Isolated deployment: IsolatedDeployment [sndNodeId=0f502f09-2c01-4b17-a148-9b5ebfa6f548, super=GridDeployment [ts=1353320294303, depMode=PRIVATE, clsLdr=GridDeploymentClassLoader [id=eebca281b31-0f502f09-2c01-4b17-a148-9b5ebfa6f548, singleNode=true, nodeLdrMap={0f502f09-2c01-4b17-a148-9b5ebfa6f548=eebca281b31-0f502f09-2c01-4b17-a148-9b5ebfa6f548}, p2pTimeout=10000, usrVer=0, depMode=PRIVATE, quiet=false], clsLdrId=eebca281b31-0f502f09-2c01-4b17-a148-9b5ebfa6f548, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]]
[14:18:14,317][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1]
[14:18:14,317][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@7141fbd1
[14:18:14,317][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@31c737b3
[14:18:14,318][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3867845
[14:18:14,318][INFO ][gridgain-#2268%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@22fb906e
[14:18:17,319][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@15128d25
[14:18:17,319][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@74f082f1
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@a7c1a43
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@32a86613
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@15128d25
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@74f082f1
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@a7c1a43
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@32a86613
[14:18:17,320][INFO ][gridgain-#2269%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=0f502f09, gg=true]
[14:18:17,322][INFO ][gridgain-#2270%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@15128d25
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@74f082f1
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@a7c1a43
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@32a86613
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@15128d25
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@74f082f1
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@a7c1a43
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@32a86613
[14:18:17,324][INFO ][gridgain-#2271%resource.GridResourceIsolatedTaskSelfTest1%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest1, id8=0f502f09, gg=true]
[14:18:17,327][INFO ][gridgain-#2270%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6080d4a6
[14:18:17,327][INFO ][gridgain-#2270%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@2a090fc9
[14:18:17,327][INFO ][gridgain-#2270%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@38eb6aae
[14:18:17,327][INFO ][gridgain-#2270%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@67a8e2b3
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6080d4a6
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@2a090fc9
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@38eb6aae
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@67a8e2b3
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6080d4a6
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@2a090fc9
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@38eb6aae
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@67a8e2b3
[14:18:17,328][INFO ][gridgain-#2273%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest2, id8=5f4be84e, gg=true]
[14:18:18,384][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:18,384][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:18,387][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=0f502f09-2c01-4b17-a148-9b5ebfa6f548, state=LEFT, lastHeartbeat=1353320298381, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320290627]
[14:18:18,387][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x56357831]
[14:18:18,388][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1]
[14:18:18,388][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@2a090fc9
[14:18:18,388][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@67a8e2b3
[14:18:18,388][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@6080d4a6
[14:18:18,389][INFO ][disco-event-worker-#2259%resource.GridResourceIsolatedTaskSelfTest2%][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@38eb6aae
[14:18:18,389][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320297313, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=31cca281b31-0f502f09-2c01-4b17-a148-9b5ebfa6f548, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:18,390][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@74f082f1
[14:18:18,390][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@32a86613
[14:18:18,390][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@15128d25
[14:18:18,390][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@a7c1a43
[14:18:18,392][INFO ][test-runner][GridResourceIsolatedTaskSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest1
>>> Grid uptime: 00:00:06:716
[14:18:18,392][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:18,393][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:18,397][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320297313, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=a1cca281b31-5f4be84e-85d9-48e8-928f-22b8071eda10, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:18,399][INFO ][test-runner][GridResourceIsolatedTaskSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest2
>>> Grid uptime: 00:00:04:98
[14:18:18,399][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Stopping test: testUndeployedTask in 8305 ms <<<
[14:18:18,403][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Starting test: testRedeployedTask <<<
[14:18:18,408][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] << Enterprise Edition >>
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Config URL: n/a
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Daemon mode: off
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:18,409][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:18,409][WARN ][test-runner][GridResourceIsolatedTaskSelfTest] SMTP is not configured - email notifications are off.
[14:18:18,409][WARN ][test-runner][GridResourceIsolatedTaskSelfTest] Cache is not configured - data grid is off.
[14:18:18,410][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:18,410][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:18,410][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Enabled local MACs: C8600068582C
[14:18:18,914][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:18,919][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45250, locHost=/192.168.2.14]
[14:18:18,956][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Security status [authentication=on, secure-session=on]
[14:18:18,959][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:18,960][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55250
[14:18:18,960][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:18,961][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=0aab0c27-882b-475d-977f-379f5b92489f, state=READY, lastHeartbeat=1353320298955, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320298955]
[14:18:18,962][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x494602EE]
[14:18:18,963][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:19,988][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:19,990][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:19,990][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:19,990][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:19,990][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:19,993][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest
>>> Local node [ID=0AAB0C27-882B-475D-977F-379F5B92489F, order=1353320298955]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45250 UDP:50025 TCP:55250
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:19,997][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7bb7d5fa
[14:18:19,997][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@62414f8a
[14:18:19,997][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2dcd1f6b
[14:18:19,997][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@75c9c14a
[14:18:19,997][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7bb7d5fa
[14:18:19,997][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@62414f8a
[14:18:19,998][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2dcd1f6b
[14:18:19,998][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@75c9c14a
[14:18:19,998][INFO ][gridgain-#2295%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=0aab0c27, gg=true]
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7bb7d5fa
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@62414f8a
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2dcd1f6b
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@75c9c14a
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7bb7d5fa
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@62414f8a
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2dcd1f6b
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@75c9c14a
[14:18:20,001][INFO ][gridgain-#2296%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=0aab0c27, gg=true]
[14:18:20,003][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320299993, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=23cca281b31-0aab0c27-882b-475d-977f-379f5b92489f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:20,003][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@62414f8a
[14:18:20,003][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@75c9c14a
[14:18:20,003][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@7bb7d5fa
[14:18:20,003][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@2dcd1f6b
[14:18:20,003][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1
[14:18:20,009][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@1eb63181
[14:18:20,009][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4b6c1be7
[14:18:20,009][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@269c0160
[14:18:20,010][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4c1e596d
[14:18:20,010][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@1eb63181
[14:18:20,010][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4b6c1be7
[14:18:20,010][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@269c0160
[14:18:20,010][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4c1e596d
[14:18:20,010][INFO ][gridgain-#2298%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=0aab0c27, gg=true]
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@1eb63181
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4b6c1be7
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@269c0160
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4c1e596d
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@1eb63181
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4b6c1be7
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@269c0160
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4c1e596d
[14:18:20,015][INFO ][gridgain-#2299%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=0aab0c27, gg=true]
[14:18:21,071][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:21,071][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:21,075][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320300003, depMode=PRIVATE, clsLdr=org.gridgain.testframework.GridTestClassLoader@5650e034, clsLdrId=04cca281b31-0aab0c27-882b-475d-977f-379f5b92489f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:21,076][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4b6c1be7
[14:18:21,076][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@4c1e596d
[14:18:21,076][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@1eb63181
[14:18:21,076][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@269c0160
[14:18:21,078][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest
>>> Grid uptime: 00:00:01:87
[14:18:21,078][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Stopping test: testRedeployedTask in 2675 ms <<<
[14:18:21,082][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Starting test: testDuplicateTaskName <<<
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] << Enterprise Edition >>
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Config URL: n/a
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Daemon mode: off
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:21,087][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:21,087][WARN ][test-runner][GridResourceIsolatedTaskSelfTest] SMTP is not configured - email notifications are off.
[14:18:21,087][WARN ][test-runner][GridResourceIsolatedTaskSelfTest] Cache is not configured - data grid is off.
[14:18:21,088][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:21,088][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:21,088][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Enabled local MACs: C8600068582C
[14:18:21,592][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:21,598][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45250, locHost=/192.168.2.14]
[14:18:21,624][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Security status [authentication=on, secure-session=on]
[14:18:21,627][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:21,627][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55250
[14:18:21,628][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50025
[14:18:21,629][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=99095536-88c2-4be0-897b-1ca11dc8e57f, state=READY, lastHeartbeat=1353320301624, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55250, startTime=1353320301624]
[14:18:21,630][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xF1667E3A]
[14:18:21,631][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:22,656][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:22,658][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:22,658][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:22,658][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:22,658][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:22,661][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest
>>> Local node [ID=99095536-88C2-4BE0-897B-1CA11DC8E57F, order=1353320301624]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45250 UDP:50025 TCP:55250
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:22,666][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@5bd20a14
[14:18:22,666][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3a93d624
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3fcff387
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6d7d44cb
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@5bd20a14
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3a93d624
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3fcff387
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6d7d44cb
[14:18:22,667][INFO ][gridgain-#2321%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=99095536, gg=true]
[14:18:22,671][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@5bd20a14
[14:18:22,671][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3a93d624
[14:18:22,671][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3fcff387
[14:18:22,671][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6d7d44cb
[14:18:22,672][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@5bd20a14
[14:18:22,672][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3a93d624
[14:18:22,672][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3fcff387
[14:18:22,672][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6d7d44cb
[14:18:22,672][INFO ][gridgain-#2322%resource.GridResourceIsolatedTaskSelfTest%][GridResourceIsolatedTaskSelfTest$SharedResourceTask3] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedTaskSelfTest, id8=99095536, gg=true]
[14:18:22,673][INFO ][test-runner][GridDeploymentLocalStore] Failed to deploy task [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask4, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249]
[14:18:22,673][INFO ][test-runner][GridResourceIsolatedTaskSelfTest] Received expected exception: class org.gridgain.grid.GridDeploymentException: Failed to deploy class: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask4
[14:18:23,735][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:23,736][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:23,740][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320302661, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=15cca281b31-99095536-88c2-4be0-897b-1ca11dc8e57f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask3, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$SharedResourceTask3, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:23,741][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@3a93d624
[14:18:23,741][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource2@6d7d44cb
[14:18:23,741][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@5bd20a14
[14:18:23,741][INFO ][test-runner][GridResourceIsolatedTaskSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedTaskSelfTest$UserResource1@3fcff387
[14:18:23,743][INFO ][test-runner][GridResourceIsolatedTaskSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedTaskSelfTest
>>> Grid uptime: 00:00:01:88
[14:18:23,743][INFO ][main][GridResourceIsolatedTaskSelfTest] >>> Stopping test: testDuplicateTaskName in 2661 ms <<<
[14:18:23,746][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Starting test: testSameTask <<<
[14:18:23,751][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:23,751][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] << Enterprise Edition >>
[14:18:23,751][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Config URL: n/a
[14:18:23,752][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Daemon mode: off
[14:18:23,752][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:18:23,752][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:23,752][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:23,752][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:23,752][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:23,752][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest] SMTP is not configured - email notifications are off.
[14:18:23,752][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Cache is not configured - data grid is off.
[14:18:23,753][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:23,753][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:23,753][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Enabled local MACs: C8600068582C
[14:18:24,257][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:24,262][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45260, locHost=/192.168.2.14]
[14:18:24,279][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Security status [authentication=on, secure-session=on]
[14:18:24,280][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:24,280][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55260
[14:18:24,281][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:24,281][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=f044825e-b679-4e18-bd40-f03f49161189, state=READY, lastHeartbeat=1353320304273, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320304273]
[14:18:24,282][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xC947CF80]
[14:18:24,283][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:25,309][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:25,310][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:25,310][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:25,310][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:25,310][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:25,313][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest
>>> Local node [ID=F044825E-B679-4E18-BD40-F03F49161189, order=1353320304273]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45260 UDP:50026 TCP:55260
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:25,319][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,319][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,319][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,319][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,320][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,320][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,320][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,320][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,320][INFO ][gridgain-#2344%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=f044825e, gg=true]
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,324][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,325][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,325][INFO ][gridgain-#2345%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=f044825e, gg=true]
[14:18:25,326][INFO ][gridgain-#2347%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,326][INFO ][gridgain-#2347%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,326][INFO ][gridgain-#2347%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,326][INFO ][gridgain-#2347%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,326][INFO ][gridgain-#2347%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=f044825e, gg=true]
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:25,327][INFO ][gridgain-#2348%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=f044825e, gg=true]
[14:18:26,383][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:26,383][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:26,387][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320305311, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=46cca281b31-f044825e-b679-4e18-bd40-f03f49161189, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:26,388][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@8968c17
[14:18:26,388][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@3dd248d0
[14:18:26,388][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@5f380a0c
[14:18:26,388][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@53c73e68
[14:18:26,390][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest
>>> Grid uptime: 00:00:01:76
[14:18:26,391][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Stopping test: testSameTask in 2644 ms <<<
[14:18:26,394][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Starting test: testDifferentTasks <<<
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] << Enterprise Edition >>
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Config URL: n/a
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Daemon mode: off
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:26,399][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:26,400][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:26,400][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:26,400][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] SMTP is not configured - email notifications are off.
[14:18:26,400][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Cache is not configured - data grid is off.
[14:18:26,401][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:26,401][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:26,401][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Enabled local MACs: C8600068582C
[14:18:26,904][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:26,910][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45260, locHost=/192.168.2.14]
[14:18:26,928][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Security status [authentication=on, secure-session=on]
[14:18:26,929][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:26,929][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55260
[14:18:26,930][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:26,930][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=9e86d2ec-c775-4e4e-baa0-94cab44de2f9, state=READY, lastHeartbeat=1353320306921, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320306921]
[14:18:26,931][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xCE123400]
[14:18:26,931][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:27,957][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:27,958][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:27,959][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:27,959][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:27,959][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:27,964][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest1
>>> Local node [ID=9E86D2EC-C775-4E4E-BAA0-94CAB44DE2F9, order=1353320306921]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45260 UDP:50026 TCP:55260
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] << Enterprise Edition >>
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Config URL: n/a
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Daemon mode: off
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:27,967][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:27,967][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] SMTP is not configured - email notifications are off.
[14:18:27,967][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Cache is not configured - data grid is off.
[14:18:27,968][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:27,968][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:27,968][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Enabled local MACs: C8600068582C
[14:18:28,472][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:28,478][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45261, locHost=/192.168.2.14]
[14:18:28,506][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Security status [authentication=on, secure-session=on]
[14:18:28,509][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:28,510][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55261
[14:18:28,510][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:28,511][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=f4f0a876-9eca-4c48-b252-9845ca5dc156, state=READY, lastHeartbeat=1353320308501, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55261, startTime=1353320308501]
[14:18:28,512][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x4EA704C3]
[14:18:28,513][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:28,519][INFO ][disco-event-worker-#2364%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=f4f0a876-9eca-4c48-b252-9845ca5dc156, state=READY, lastHeartbeat=1353320308511, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55261, startTime=1353320308501]
[14:18:28,519][INFO ][disco-event-worker-#2384%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9e86d2ec-c775-4e4e-baa0-94cab44de2f9, state=READY, lastHeartbeat=1353320308511, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320306921]
[14:18:28,519][INFO ][disco-event-worker-#2364%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x968C31F]
[14:18:29,516][INFO ][disco-event-worker-#2384%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x968C31F]
[14:18:30,597][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:18:30,598][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:18:30,598][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:30,598][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:30,598][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:30,603][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest2
>>> Local node [ID=F4F0A876-9ECA-4C48-B252-9845CA5DC156, order=1353320308501]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45261 UDP:50026 TCP:55261
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:30,607][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,607][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,608][INFO ][gridgain-#2387%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=9e86d2ec, gg=true]
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,611][INFO ][gridgain-#2388%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=9e86d2ec, gg=true]
[14:18:30,621][INFO ][gridgain-#2390%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@19e4b853
[14:18:30,621][INFO ][gridgain-#2390%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@77015e6c
[14:18:30,621][INFO ][gridgain-#2390%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7ade417d
[14:18:30,622][INFO ][gridgain-#2390%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@159db490
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@19e4b853
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@77015e6c
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7ade417d
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@159db490
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@19e4b853
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@77015e6c
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7ade417d
[14:18:30,622][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@159db490
[14:18:30,623][INFO ][gridgain-#2391%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest2, id8=f4f0a876, gg=true]
[14:18:30,627][INFO ][gridgain-#2393%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,628][INFO ][gridgain-#2393%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,628][INFO ][gridgain-#2393%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,628][INFO ][gridgain-#2393%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,628][INFO ][gridgain-#2393%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=9e86d2ec, gg=true]
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:30,634][INFO ][gridgain-#2395%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=9e86d2ec, gg=true]
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@19e4b853
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@77015e6c
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7ade417d
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@159db490
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@19e4b853
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@77015e6c
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7ade417d
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@159db490
[14:18:30,636][INFO ][gridgain-#2397%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest2, id8=f4f0a876, gg=true]
[14:18:31,692][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:31,692][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:31,694][INFO ][disco-event-worker-#2384%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=9e86d2ec-c775-4e4e-baa0-94cab44de2f9, state=LEFT, lastHeartbeat=1353320311692, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320306921]
[14:18:31,695][INFO ][disco-event-worker-#2384%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x4EA704C3]
[14:18:31,697][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320310593, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e8cca281b31-9e86d2ec-c775-4e4e-baa0-94cab44de2f9, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:31,697][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7a3b032
[14:18:31,697][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@31d17247
[14:18:31,697][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@429fc68a
[14:18:31,698][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@b84a689
[14:18:31,699][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest1
>>> Grid uptime: 00:00:03:734
[14:18:31,700][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:31,700][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:31,705][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320310614, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=a9cca281b31-f4f0a876-9eca-4c48-b252-9845ca5dc156, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:31,705][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@77015e6c
[14:18:31,705][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@159db490
[14:18:31,705][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@19e4b853
[14:18:31,705][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7ade417d
[14:18:31,707][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest2
>>> Grid uptime: 00:00:01:109
[14:18:31,708][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Stopping test: testDifferentTasks in 5314 ms <<<
[14:18:31,712][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Starting test: testUndeployedTask <<<
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] << Enterprise Edition >>
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Config URL: n/a
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Daemon mode: off
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:31,717][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:31,717][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] SMTP is not configured - email notifications are off.
[14:18:31,717][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Cache is not configured - data grid is off.
[14:18:31,718][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:31,719][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:31,719][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Enabled local MACs: C8600068582C
[14:18:32,222][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:32,227][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45260, locHost=/192.168.2.14]
[14:18:32,246][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1] Security status [authentication=on, secure-session=on]
[14:18:32,248][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:32,248][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55260
[14:18:32,249][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:32,249][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=281d23d1-d410-4bc1-9791-33b1c8bb3708, state=READY, lastHeartbeat=1353320312245, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320312245]
[14:18:32,249][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xE537C8E2]
[14:18:32,250][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:33,279][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:33,281][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:33,281][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:33,281][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:33,281][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:33,284][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest1
>>> Local node [ID=281D23D1-D410-4BC1-9791-33B1C8BB3708, order=1353320312245]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45260 UDP:50026 TCP:55260
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:33,285][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:33,285][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] << Enterprise Edition >>
[14:18:33,285][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Config URL: n/a
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Daemon mode: off
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:33,286][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] SMTP is not configured - email notifications are off.
[14:18:33,286][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Cache is not configured - data grid is off.
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:33,286][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Enabled local MACs: C8600068582C
[14:18:33,789][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:33,794][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45261, locHost=/192.168.2.14]
[14:18:33,813][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2] Security status [authentication=on, secure-session=on]
[14:18:33,816][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:33,817][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55261
[14:18:33,817][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:33,818][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=8a5b8594-ceb9-4be3-8fd2-7b8d8521d703, state=READY, lastHeartbeat=1353320313815, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55261, startTime=1353320313815]
[14:18:33,819][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8CEA9DE2]
[14:18:33,820][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:34,263][INFO ][disco-event-worker-#2433%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=281d23d1-d410-4bc1-9791-33b1c8bb3708, state=READY, lastHeartbeat=1353320314258, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320312245]
[14:18:34,263][INFO ][disco-event-worker-#2413%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=8a5b8594-ceb9-4be3-8fd2-7b8d8521d703, state=READY, lastHeartbeat=1353320313815, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55261, startTime=1353320313815]
[14:18:34,263][INFO ][disco-event-worker-#2413%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xB194AF77]
[14:18:34,824][INFO ][disco-event-worker-#2433%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xB194AF77]
[14:18:35,899][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:18:35,900][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:18:35,900][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:35,900][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:35,900][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:35,906][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest2
>>> Local node [ID=8A5B8594-CEB9-4BE3-8FD2-7B8D8521D703, order=1353320313815]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45261 UDP:50026 TCP:55261
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:35,909][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,910][INFO ][gridgain-#2436%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,914][INFO ][gridgain-#2438%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:35,917][INFO ][gridgain-#2437%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7505a576
[14:18:35,918][INFO ][gridgain-#2437%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@45b221ff
[14:18:35,918][INFO ][gridgain-#2437%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@31d61018
[14:18:35,918][INFO ][gridgain-#2437%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5cbab137
[14:18:35,918][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7505a576
[14:18:35,918][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@45b221ff
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@31d61018
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5cbab137
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7505a576
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@45b221ff
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@31d61018
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5cbab137
[14:18:35,919][INFO ][gridgain-#2440%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest2, id8=8a5b8594, gg=true]
[14:18:35,922][INFO ][gridgain-#2442%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,922][INFO ][gridgain-#2442%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,922][INFO ][gridgain-#2442%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,922][INFO ][gridgain-#2442%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,922][INFO ][gridgain-#2442%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,925][INFO ][gridgain-#2443%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7505a576
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@45b221ff
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@31d61018
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5cbab137
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7505a576
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@45b221ff
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@31d61018
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5cbab137
[14:18:35,929][INFO ][gridgain-#2446%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest2, id8=8a5b8594, gg=true]
[14:18:35,931][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320315899, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=dccca281b31-281d23d1-d410-4bc1-9791-33b1c8bb3708, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:35,931][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@725a395d
[14:18:35,931][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ab7bd38
[14:18:35,931][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@bcbd247
[14:18:35,931][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@16c4352
[14:18:35,931][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2
[14:18:35,932][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1
[14:18:35,932][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320315909, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=4dcca281b31-8a5b8594-ceb9-4be3-8fd2-7b8d8521d703, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:35,932][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@45b221ff
[14:18:35,932][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5cbab137
[14:18:35,932][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7505a576
[14:18:35,933][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@31d61018
[14:18:35,933][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2
[14:18:35,933][INFO ][gridgain-#2448%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1
[14:18:41,936][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,936][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,936][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,936][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,937][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,937][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,937][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,937][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,937][INFO ][gridgain-#2450%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,940][INFO ][gridgain-#2452%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:41,943][INFO ][gridgain-#2451%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@a78226e
[14:18:41,943][INFO ][gridgain-#2451%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@551c6920
[14:18:41,944][INFO ][gridgain-#2451%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@3c39df87
[14:18:41,944][INFO ][gridgain-#2451%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7b8236f4
[14:18:41,944][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@a78226e
[14:18:41,944][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@551c6920
[14:18:41,944][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@3c39df87
[14:18:41,944][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7b8236f4
[14:18:41,945][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@a78226e
[14:18:41,945][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@551c6920
[14:18:41,945][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@3c39df87
[14:18:41,945][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7b8236f4
[14:18:41,945][INFO ][gridgain-#2454%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest2, id8=8a5b8594, gg=true]
[14:18:41,948][INFO ][gridgain-#2456%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,948][INFO ][gridgain-#2456%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,948][INFO ][gridgain-#2456%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,948][INFO ][gridgain-#2456%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,948][INFO ][gridgain-#2456%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:41,951][INFO ][gridgain-#2457%resource.GridResourceIsolatedClassLoaderSelfTest1%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest1, id8=281d23d1, gg=true]
[14:18:41,954][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@a78226e
[14:18:41,954][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@551c6920
[14:18:41,954][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@3c39df87
[14:18:41,954][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7b8236f4
[14:18:41,954][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@a78226e
[14:18:41,955][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@551c6920
[14:18:41,955][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@3c39df87
[14:18:41,955][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7b8236f4
[14:18:41,955][INFO ][gridgain-#2460%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest2, id8=8a5b8594, gg=true]
[14:18:42,972][INFO ][grid-connector-jetty-binder-#2434%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:18:42,972][INFO ][grid-connector-jetty-binder-#2434%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:18:43,011][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:43,011][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:43,015][INFO ][disco-event-worker-#2433%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=281d23d1-d410-4bc1-9791-33b1c8bb3708, state=LEFT, lastHeartbeat=1353320323010, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320312245]
[14:18:43,015][INFO ][disco-event-worker-#2433%resource.GridResourceIsolatedClassLoaderSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8CEA9DE2]
[14:18:43,018][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320321932, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=31dca281b31-281d23d1-d410-4bc1-9791-33b1c8bb3708, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:43,018][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@2644bfb0
[14:18:43,018][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@5c4ef935
[14:18:43,018][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@1981009
[14:18:43,018][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@6b84cf70
[14:18:43,021][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest1
>>> Grid uptime: 00:00:09:739
[14:18:44,077][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:44,077][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:44,081][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320321932, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=a1dca281b31-8a5b8594-ceb9-4be3-8fd2-7b8d8521d703, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:44,081][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@551c6920
[14:18:44,082][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7b8236f4
[14:18:44,082][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@a78226e
[14:18:44,082][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@3c39df87
[14:18:44,083][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest2
>>> Grid uptime: 00:00:08:178
[14:18:44,084][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Stopping test: testUndeployedTask in 12372 ms <<<
[14:18:44,088][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Starting test: testRedeployedTask <<<
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] << Enterprise Edition >>
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Config URL: n/a
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Daemon mode: off
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:44,093][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:44,094][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:44,094][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest] SMTP is not configured - email notifications are off.
[14:18:44,094][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Cache is not configured - data grid is off.
[14:18:44,094][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:44,095][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:44,095][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Enabled local MACs: C8600068582C
[14:18:44,598][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:44,604][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45260, locHost=/192.168.2.14]
[14:18:44,631][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Security status [authentication=on, secure-session=on]
[14:18:44,634][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:44,634][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55260
[14:18:44,635][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:44,635][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=02bd2778-8e65-4235-98bf-05ab667e028a, state=READY, lastHeartbeat=1353320324631, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320324631]
[14:18:44,635][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x23261DB8]
[14:18:44,636][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:45,665][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:45,667][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:45,667][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:45,667][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:45,667][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:45,672][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest
>>> Local node [ID=02BD2778-8E65-4235-98BF-05AB667E028A, order=1353320324631]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45260 UDP:50026 TCP:55260
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:45,675][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@413c8f3e
[14:18:45,675][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ee050e7
[14:18:45,675][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7b681ee9
[14:18:45,676][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@65d4ec31
[14:18:45,676][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@413c8f3e
[14:18:45,676][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ee050e7
[14:18:45,676][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7b681ee9
[14:18:45,676][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@65d4ec31
[14:18:45,676][INFO ][gridgain-#2482%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=02bd2778, gg=true]
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@413c8f3e
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ee050e7
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7b681ee9
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@65d4ec31
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@413c8f3e
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ee050e7
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7b681ee9
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@65d4ec31
[14:18:45,678][INFO ][gridgain-#2483%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=02bd2778, gg=true]
[14:18:45,679][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320325668, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=64dca281b31-02bd2778-8e65-4235-98bf-05ab667e028a, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:45,680][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@6ee050e7
[14:18:45,680][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@65d4ec31
[14:18:45,680][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@413c8f3e
[14:18:45,680][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@7b681ee9
[14:18:45,680][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1
[14:18:45,683][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@2756fa
[14:18:45,683][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@16bf372a
[14:18:45,683][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@63beb210
[14:18:45,683][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7c9c6b98
[14:18:45,684][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@2756fa
[14:18:45,684][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@16bf372a
[14:18:45,684][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@63beb210
[14:18:45,684][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7c9c6b98
[14:18:45,684][INFO ][gridgain-#2485%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=02bd2778, gg=true]
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@2756fa
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@16bf372a
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@63beb210
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7c9c6b98
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@2756fa
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@16bf372a
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@63beb210
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7c9c6b98
[14:18:45,686][INFO ][gridgain-#2486%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=02bd2778, gg=true]
[14:18:46,741][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:46,741][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:46,747][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320325678, depMode=SHARED, clsLdr=org.gridgain.testframework.GridTestClassLoader@36ecd181, clsLdrId=45dca281b31-02bd2778-8e65-4235-98bf-05ab667e028a, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:46,747][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@16bf372a
[14:18:46,747][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7c9c6b98
[14:18:46,747][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@2756fa
[14:18:46,747][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@63beb210
[14:18:46,749][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest
>>> Grid uptime: 00:00:01:77
[14:18:46,750][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Stopping test: testRedeployedTask in 2662 ms <<<
[14:18:46,754][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Starting test: testDuplicateTaskName <<<
[14:18:46,758][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:46,758][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] << Enterprise Edition >>
[14:18:46,758][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Config URL: n/a
[14:18:46,758][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Daemon mode: off
[14:18:46,759][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:18:46,759][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:46,759][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:46,759][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:46,759][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:46,759][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest] SMTP is not configured - email notifications are off.
[14:18:46,759][WARN ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Cache is not configured - data grid is off.
[14:18:46,760][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:46,760][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:46,760][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Enabled local MACs: C8600068582C
[14:18:47,264][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:47,269][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45260, locHost=/192.168.2.14]
[14:18:47,324][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Security status [authentication=on, secure-session=on]
[14:18:47,327][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:47,327][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55260
[14:18:47,328][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50026
[14:18:47,329][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=3a24d885-fbf5-4a62-9ca5-0d11178f9c48, state=READY, lastHeartbeat=1353320327319, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55260, startTime=1353320327319]
[14:18:47,329][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8E02911B]
[14:18:47,331][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:48,357][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:48,362][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:48,362][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:48,362][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:48,362][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:48,368][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest
>>> Local node [ID=3A24D885-FBF5-4A62-9CA5-0D11178F9C48, order=1353320327319]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45260 UDP:50026 TCP:55260
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:48,373][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@386cf713
[14:18:48,373][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@79d11d55
[14:18:48,373][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@fdcf5ee
[14:18:48,374][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7395e464
[14:18:48,374][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@386cf713
[14:18:48,374][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@79d11d55
[14:18:48,374][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@fdcf5ee
[14:18:48,374][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7395e464
[14:18:48,374][INFO ][gridgain-#2508%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=3a24d885, gg=true]
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@386cf713
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@79d11d55
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@fdcf5ee
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7395e464
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@386cf713
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@79d11d55
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@fdcf5ee
[14:18:48,378][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7395e464
[14:18:48,379][INFO ][gridgain-#2509%resource.GridResourceIsolatedClassLoaderSelfTest%][GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceIsolatedClassLoaderSelfTest, id8=3a24d885, gg=true]
[14:18:48,380][INFO ][test-runner][GridDeploymentLocalStore] Failed to deploy task [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask4, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249]
[14:18:48,380][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest] Received expected exception: class org.gridgain.grid.GridDeploymentException: Failed to deploy class: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask4
[14:18:49,435][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:49,435][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:49,440][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320328367, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=56dca281b31-3a24d885-fbf5-4a62-9ca5-0d11178f9c48, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$SharedResourceTask3, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:49,440][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@79d11d55
[14:18:49,441][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource2@7395e464
[14:18:49,441][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@386cf713
[14:18:49,441][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIsolatedClassLoaderSelfTest$UserResource1@fdcf5ee
[14:18:49,443][INFO ][test-runner][GridResourceIsolatedClassLoaderSelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIsolatedClassLoaderSelfTest
>>> Grid uptime: 00:00:01:77
[14:18:49,443][INFO ][main][GridResourceIsolatedClassLoaderSelfTest] >>> Stopping test: testDuplicateTaskName in 2689 ms <<<
[14:18:49,447][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testDifferentTasks <<<
[14:18:49,451][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:49,451][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] << Enterprise Edition >>
[14:18:49,451][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Config URL: n/a
[14:18:49,452][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Daemon mode: off
[14:18:49,452][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:18:49,452][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:49,452][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:49,452][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:49,452][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:49,452][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:18:49,452][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] Cache is not configured - data grid is off.
[14:18:49,453][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:49,453][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:49,453][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:18:49,957][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:49,962][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:18:49,977][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:18:49,978][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:49,979][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:18:49,979][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:18:49,979][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b8c0ed15-d1b7-4811-bff4-062e8d74554a, state=READY, lastHeartbeat=1353320329978, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320329978]
[14:18:49,980][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xBE09C059]
[14:18:49,980][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:51,007][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:51,008][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:51,009][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:51,009][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:51,009][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:51,014][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Local node [ID=B8C0ED15-D1B7-4811-BFF4-062E8D74554A, order=1353320329978]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:51,016][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:51,016][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] << Enterprise Edition >>
[14:18:51,016][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Config URL: n/a
[14:18:51,016][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Daemon mode: off
[14:18:51,017][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:18:51,017][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:51,017][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:51,017][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:51,017][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:51,017][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:18:51,017][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] Cache is not configured - data grid is off.
[14:18:51,018][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:51,018][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:51,018][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:18:51,522][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:51,527][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45271, locHost=/192.168.2.14]
[14:18:51,546][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:18:51,548][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:51,548][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55271
[14:18:51,548][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:18:51,549][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=13cdee88-61ac-4276-8759-62c7fba80d05, state=READY, lastHeartbeat=1353320331539, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320331539]
[14:18:51,549][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2CF98FD5]
[14:18:51,550][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:51,555][INFO ][disco-event-worker-#2525%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=13cdee88-61ac-4276-8759-62c7fba80d05, state=READY, lastHeartbeat=1353320331549, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320331539]
[14:18:51,555][INFO ][disco-event-worker-#2545%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=b8c0ed15-d1b7-4811-bff4-062e8d74554a, state=READY, lastHeartbeat=1353320331549, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320329978]
[14:18:51,556][INFO ][disco-event-worker-#2525%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x77E7DEF3]
[14:18:52,553][INFO ][disco-event-worker-#2545%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x77E7DEF3]
[14:18:53,633][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:18:53,634][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:18:53,634][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:53,634][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:53,634][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:53,640][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Local node [ID=13CDEE88-61AC-4276-8759-62C7FBA80D05, order=1353320331539]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45271 UDP:50027 TCP:55271
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:53,646][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,646][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,647][INFO ][gridgain-#2548%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=b8c0ed15, gg=true]
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,655][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,656][INFO ][gridgain-#2550%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=b8c0ed15, gg=true]
[14:18:53,658][INFO ][gridgain-#2549%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3abe9a77
[14:18:53,659][INFO ][gridgain-#2549%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@13a2850d
[14:18:53,659][INFO ][gridgain-#2549%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5997609f
[14:18:53,660][INFO ][gridgain-#2549%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@614894ac
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3abe9a77
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@13a2850d
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5997609f
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@614894ac
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3abe9a77
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@13a2850d
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5997609f
[14:18:53,660][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@614894ac
[14:18:53,661][INFO ][gridgain-#2552%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=13cdee88, gg=true]
[14:18:53,665][INFO ][gridgain-#2554%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,665][INFO ][gridgain-#2554%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,665][INFO ][gridgain-#2554%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,665][INFO ][gridgain-#2554%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,665][INFO ][gridgain-#2554%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=b8c0ed15, gg=true]
[14:18:53,668][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:53,669][INFO ][gridgain-#2555%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=b8c0ed15, gg=true]
[14:18:53,675][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3abe9a77
[14:18:53,675][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@13a2850d
[14:18:53,675][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5997609f
[14:18:53,675][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@614894ac
[14:18:53,675][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3abe9a77
[14:18:53,675][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@13a2850d
[14:18:53,676][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5997609f
[14:18:53,676][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@614894ac
[14:18:53,676][INFO ][gridgain-#2558%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=13cdee88, gg=true]
[14:18:54,732][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:54,733][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:54,735][INFO ][disco-event-worker-#2545%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=b8c0ed15-d1b7-4811-bff4-062e8d74554a, state=LEFT, lastHeartbeat=1353320334731, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320329978]
[14:18:54,735][INFO ][disco-event-worker-#2545%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2CF98FD5]
[14:18:54,737][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320333633, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=68dca281b31-b8c0ed15-d1b7-4811-bff4-062e8d74554a, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:54,737][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@79b1593f
[14:18:54,738][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@58d92201
[14:18:54,738][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@670115c8
[14:18:54,738][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6a5a7583
[14:18:54,740][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Grid uptime: 00:00:03:726
[14:18:54,741][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:18:54,741][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:18:54,745][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320333653, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d8dca281b31-13cdee88-61ac-4276-8759-62c7fba80d05, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:54,745][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@13a2850d
[14:18:54,745][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@614894ac
[14:18:54,745][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3abe9a77
[14:18:54,745][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5997609f
[14:18:54,747][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Grid uptime: 00:00:01:108
[14:18:54,748][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testDifferentTasks in 5301 ms <<<
[14:18:54,751][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testUndeployedTask <<<
[14:18:54,756][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:54,756][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] << Enterprise Edition >>
[14:18:54,756][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Config URL: n/a
[14:18:54,756][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Daemon mode: off
[14:18:54,757][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:18:54,757][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:54,757][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:54,757][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:54,757][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:54,757][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:18:54,757][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] Cache is not configured - data grid is off.
[14:18:54,758][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:54,758][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:54,758][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:18:55,262][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:55,267][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:18:55,284][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:18:55,286][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:55,286][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:18:55,286][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:18:55,287][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=7ba749df-c4b8-43a3-8647-97c1063fb1d3, state=READY, lastHeartbeat=1353320335284, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320335284]
[14:18:55,287][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xFBD8825A]
[14:18:55,287][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:56,314][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:18:56,315][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:18:56,316][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:56,316][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:56,316][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:56,318][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Local node [ID=7BA749DF-C4B8-43A3-8647-97C1063FB1D3, order=1353320335284]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:56,319][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] << Enterprise Edition >>
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Config URL: n/a
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Daemon mode: off
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:18:56,320][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:18:56,320][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:18:56,320][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] Cache is not configured - data grid is off.
[14:18:56,321][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:18:56,321][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:18:56,321][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:18:56,825][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:18:56,830][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45271, locHost=/192.168.2.14]
[14:18:56,862][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:18:56,865][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:18:56,865][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55271
[14:18:56,865][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:18:56,866][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=76b17c77-bf91-4b59-9341-d0a90b32dcee, state=READY, lastHeartbeat=1353320336865, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320336855]
[14:18:56,866][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x7EE792C4]
[14:18:56,867][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:18:57,305][INFO ][disco-event-worker-#2594%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=7ba749df-c4b8-43a3-8647-97c1063fb1d3, state=READY, lastHeartbeat=1353320337298, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320335284]
[14:18:57,305][INFO ][disco-event-worker-#2574%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=76b17c77-bf91-4b59-9341-d0a90b32dcee, state=READY, lastHeartbeat=1353320336865, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320336855]
[14:18:57,305][INFO ][disco-event-worker-#2574%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xE084DBE5]
[14:18:57,869][INFO ][disco-event-worker-#2594%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xE084DBE5]
[14:18:58,947][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:18:58,947][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:18:58,948][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:18:58,948][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:18:58,948][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:18:58,953][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Local node [ID=76B17C77-BF91-4B59-9341-D0A90B32DCEE, order=1353320336855]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45271 UDP:50027 TCP:55271
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:18:58,957][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,958][INFO ][gridgain-#2597%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,961][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,962][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,962][INFO ][gridgain-#2598%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:18:58,966][INFO ][gridgain-#2600%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6e7a31e7
[14:18:58,966][INFO ][gridgain-#2600%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@18626d5b
[14:18:58,966][INFO ][gridgain-#2600%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@65f97dde
[14:18:58,966][INFO ][gridgain-#2600%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5eb6ae1f
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6e7a31e7
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@18626d5b
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@65f97dde
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5eb6ae1f
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6e7a31e7
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@18626d5b
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@65f97dde
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5eb6ae1f
[14:18:58,967][INFO ][gridgain-#2601%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=76b17c77, gg=true]
[14:18:58,970][INFO ][gridgain-#2603%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,970][INFO ][gridgain-#2603%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,970][INFO ][gridgain-#2603%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,970][INFO ][gridgain-#2603%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,970][INFO ][gridgain-#2603%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,971][INFO ][gridgain-#2604%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:18:58,973][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6e7a31e7
[14:18:58,973][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@18626d5b
[14:18:58,973][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@65f97dde
[14:18:58,973][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5eb6ae1f
[14:18:58,973][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6e7a31e7
[14:18:58,973][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@18626d5b
[14:18:58,974][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@65f97dde
[14:18:58,974][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5eb6ae1f
[14:18:58,974][INFO ][gridgain-#2607%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=76b17c77, gg=true]
[14:18:58,975][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320338950, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=5cdca281b31-7ba749df-c4b8-43a3-8647-97c1063fb1d3, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:58,975][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62a581ac
[14:18:58,975][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@ff1d543
[14:18:58,975][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7928c138
[14:18:58,975][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5fe475cc
[14:18:58,975][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1
[14:18:58,975][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask2
[14:18:58,976][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320338960, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=1ddca281b31-76b17c77-bf91-4b59-9341-d0a90b32dcee, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:18:58,976][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@18626d5b
[14:18:58,976][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5eb6ae1f
[14:18:58,976][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6e7a31e7
[14:18:58,977][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@65f97dde
[14:18:58,977][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1
[14:18:58,977][INFO ][gridgain-#2609%resource.GridResourceSharedUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask2
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,980][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,981][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,981][INFO ][gridgain-#2611%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,984][INFO ][gridgain-#2613%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:19:04,987][INFO ][gridgain-#2612%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@61221baf
[14:19:04,987][INFO ][gridgain-#2612%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@647affb
[14:19:04,987][INFO ][gridgain-#2612%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c728af5
[14:19:04,988][INFO ][gridgain-#2612%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@74010208
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@61221baf
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@647affb
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c728af5
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@74010208
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@61221baf
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@647affb
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c728af5
[14:19:04,988][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@74010208
[14:19:04,989][INFO ][gridgain-#2615%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=76b17c77, gg=true]
[14:19:04,992][INFO ][gridgain-#2617%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,992][INFO ][gridgain-#2617%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,992][INFO ][gridgain-#2617%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,992][INFO ][gridgain-#2617%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,992][INFO ][gridgain-#2617%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:04,994][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:04,995][INFO ][gridgain-#2618%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=7ba749df, gg=true]
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@61221baf
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@647affb
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c728af5
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@74010208
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@61221baf
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@647affb
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c728af5
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@74010208
[14:19:04,998][INFO ][gridgain-#2621%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=76b17c77, gg=true]
[14:19:06,018][INFO ][grid-connector-jetty-binder-#2595%resource.GridResourceSharedUndeploySelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:19:06,018][INFO ][grid-connector-jetty-binder-#2595%resource.GridResourceSharedUndeploySelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:19:06,054][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:06,055][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:06,057][INFO ][disco-event-worker-#2594%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=7ba749df-c4b8-43a3-8647-97c1063fb1d3, state=LEFT, lastHeartbeat=1353320346051, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320335284]
[14:19:06,057][INFO ][disco-event-worker-#2594%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x7EE792C4]
[14:19:06,059][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320344974, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=b0eca281b31-7ba749df-c4b8-43a3-8647-97c1063fb1d3, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:06,059][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@136b63ec
[14:19:06,059][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@66927625
[14:19:06,060][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@361f250
[14:19:06,060][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6f6d24e9
[14:19:06,061][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Grid uptime: 00:00:09:740
[14:19:07,118][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:07,118][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:07,123][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320344974, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=21eca281b31-76b17c77-bf91-4b59-9341-d0a90b32dcee, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:07,123][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@647affb
[14:19:07,123][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@74010208
[14:19:07,123][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@61221baf
[14:19:07,123][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c728af5
[14:19:07,125][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Grid uptime: 00:00:08:169
[14:19:07,126][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testUndeployedTask in 12375 ms <<<
[14:19:07,130][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testRedeployedTask <<<
[14:19:07,134][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:07,134][INFO ][test-runner][GridResourceSharedUndeploySelfTest] << Enterprise Edition >>
[14:19:07,134][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Config URL: n/a
[14:19:07,134][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Daemon mode: off
[14:19:07,135][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:19:07,135][INFO ][test-runner][GridResourceSharedUndeploySelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:07,135][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:07,135][INFO ][test-runner][GridResourceSharedUndeploySelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:07,135][INFO ][test-runner][GridResourceSharedUndeploySelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:07,135][WARN ][test-runner][GridResourceSharedUndeploySelfTest] SMTP is not configured - email notifications are off.
[14:19:07,135][WARN ][test-runner][GridResourceSharedUndeploySelfTest] Cache is not configured - data grid is off.
[14:19:07,136][INFO ][test-runner][GridResourceSharedUndeploySelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:07,136][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:07,136][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Enabled local MACs: C8600068582C
[14:19:07,640][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:07,645][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:19:07,677][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Security status [authentication=on, secure-session=on]
[14:19:07,680][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:07,680][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:19:07,681][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:07,682][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=42fecc3a-d19d-4c04-b22d-b680da357d1b, state=READY, lastHeartbeat=1353320347672, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320347672]
[14:19:07,683][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x92E6C77D]
[14:19:07,683][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:08,713][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:08,715][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:08,715][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:08,715][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:08,715][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:08,717][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Local node [ID=42FECC3A-D19D-4C04-B22D-B680DA357D1B, order=1353320347672]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:08,721][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6d2771e6
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@38a6eb06
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@568ff3f8
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4da4b2e
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6d2771e6
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@38a6eb06
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@568ff3f8
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4da4b2e
[14:19:08,722][INFO ][gridgain-#2643%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=42fecc3a, gg=true]
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6d2771e6
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@38a6eb06
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@568ff3f8
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4da4b2e
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6d2771e6
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@38a6eb06
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@568ff3f8
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4da4b2e
[14:19:08,725][INFO ][gridgain-#2644%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=42fecc3a, gg=true]
[14:19:08,727][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320348710, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e3eca281b31-42fecc3a-d19d-4c04-b22d-b680da357d1b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:08,728][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@38a6eb06
[14:19:08,728][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4da4b2e
[14:19:08,728][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@6d2771e6
[14:19:08,728][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@568ff3f8
[14:19:08,728][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1
[14:19:08,734][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4424e471
[14:19:08,734][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5211d9aa
[14:19:08,735][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@25e8e0b2
[14:19:08,735][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@15411d8a
[14:19:08,736][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4424e471
[14:19:08,736][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5211d9aa
[14:19:08,736][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@25e8e0b2
[14:19:08,736][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@15411d8a
[14:19:08,736][INFO ][gridgain-#2646%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=42fecc3a, gg=true]
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4424e471
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5211d9aa
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@25e8e0b2
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@15411d8a
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4424e471
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5211d9aa
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@25e8e0b2
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@15411d8a
[14:19:08,741][INFO ][gridgain-#2647%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=42fecc3a, gg=true]
[14:19:09,797][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:09,797][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:09,802][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320348720, depMode=SHARED, clsLdr=org.gridgain.testframework.GridTestClassLoader@44105f65, clsLdrId=c4eca281b31-42fecc3a-d19d-4c04-b22d-b680da357d1b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:09,802][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@5211d9aa
[14:19:09,802][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@15411d8a
[14:19:09,803][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4424e471
[14:19:09,803][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@25e8e0b2
[14:19:09,804][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Grid uptime: 00:00:01:87
[14:19:09,805][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testRedeployedTask in 2675 ms <<<
[14:19:09,808][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testSameTaskLocally <<<
[14:19:09,813][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:09,813][INFO ][test-runner][GridResourceSharedUndeploySelfTest] << Enterprise Edition >>
[14:19:09,813][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Config URL: n/a
[14:19:09,813][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Daemon mode: off
[14:19:09,814][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:19:09,814][INFO ][test-runner][GridResourceSharedUndeploySelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:09,814][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:09,814][INFO ][test-runner][GridResourceSharedUndeploySelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:09,814][INFO ][test-runner][GridResourceSharedUndeploySelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:09,814][WARN ][test-runner][GridResourceSharedUndeploySelfTest] SMTP is not configured - email notifications are off.
[14:19:09,814][WARN ][test-runner][GridResourceSharedUndeploySelfTest] Cache is not configured - data grid is off.
[14:19:09,814][INFO ][test-runner][GridResourceSharedUndeploySelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:09,815][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:09,815][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Enabled local MACs: C8600068582C
[14:19:10,319][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:10,324][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:19:10,357][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Security status [authentication=on, secure-session=on]
[14:19:10,360][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:10,360][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:19:10,361][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:10,362][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=8a22a7ad-a793-4f5a-8857-bd5b33992f2e, state=READY, lastHeartbeat=1353320350360, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320350350]
[14:19:10,363][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xC0CEE5F7]
[14:19:10,363][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:11,393][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:11,394][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:11,394][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:11,394][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:11,394][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:11,400][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Local node [ID=8A22A7AD-A793-4F5A-8857-BD5B33992F2E, order=1353320350350]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,402][INFO ][gridgain-#2669%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8a22a7ad, gg=true]
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,404][INFO ][gridgain-#2670%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8a22a7ad, gg=true]
[14:19:11,405][INFO ][gridgain-#2672%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,405][INFO ][gridgain-#2672%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,405][INFO ][gridgain-#2672%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,405][INFO ][gridgain-#2672%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,406][INFO ][gridgain-#2672%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8a22a7ad, gg=true]
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:11,406][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:11,407][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:11,407][INFO ][gridgain-#2673%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8a22a7ad, gg=true]
[14:19:12,462][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:12,462][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:12,467][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320351397, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d5eca281b31-8a22a7ad-a793-4f5a-8857-bd5b33992f2e, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:12,467][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@e8e027f
[14:19:12,467][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@68553bfe
[14:19:12,467][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4c30a89d
[14:19:12,467][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@d45e750
[14:19:12,469][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Grid uptime: 00:00:01:67
[14:19:12,470][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testSameTaskLocally in 2662 ms <<<
[14:19:12,473][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testDifferentTaskLocally <<<
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] << Enterprise Edition >>
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Config URL: n/a
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Daemon mode: off
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:12,478][INFO ][test-runner][GridResourceSharedUndeploySelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:12,478][WARN ][test-runner][GridResourceSharedUndeploySelfTest] SMTP is not configured - email notifications are off.
[14:19:12,478][WARN ][test-runner][GridResourceSharedUndeploySelfTest] Cache is not configured - data grid is off.
[14:19:12,479][INFO ][test-runner][GridResourceSharedUndeploySelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:12,479][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:12,479][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Enabled local MACs: C8600068582C
[14:19:12,983][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:12,988][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:19:12,999][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Security status [authentication=on, secure-session=on]
[14:19:13,001][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:13,001][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:19:13,001][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:13,002][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=8f965662-bde7-4ebd-9a62-58fb00f28668, state=READY, lastHeartbeat=1353320352998, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320352998]
[14:19:13,002][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xA274DAA]
[14:19:13,003][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:14,027][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:14,028][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:14,028][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:14,028][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:14,028][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:14,031][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Local node [ID=8F965662-BDE7-4EBD-9A62-58FB00F28668, order=1353320352998]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:14,034][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,035][INFO ][gridgain-#2695%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8f965662, gg=true]
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,038][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,039][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,039][INFO ][gridgain-#2696%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8f965662, gg=true]
[14:19:14,041][INFO ][gridgain-#2698%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,041][INFO ][gridgain-#2698%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,041][INFO ][gridgain-#2698%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,041][INFO ][gridgain-#2698%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,042][INFO ][gridgain-#2698%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8f965662, gg=true]
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:14,044][INFO ][gridgain-#2699%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=8f965662, gg=true]
[14:19:15,099][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:15,099][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:15,105][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320354023, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=97eca281b31-8f965662-bde7-4ebd-9a62-58fb00f28668, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:15,105][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@61a201de
[14:19:15,105][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@1a5bb60a
[14:19:15,105][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@3b6f931
[14:19:15,105][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5328c7e5
[14:19:15,107][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Grid uptime: 00:00:01:77
[14:19:15,108][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testDifferentTaskLocally in 2635 ms <<<
[14:19:15,111][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testDifferentTaskNameLocally <<<
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] << Enterprise Edition >>
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Config URL: n/a
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Daemon mode: off
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Language runtime: Java Platform API Specification ver. 1.6
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:15,116][INFO ][test-runner][GridResourceSharedUndeploySelfTest] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:15,116][WARN ][test-runner][GridResourceSharedUndeploySelfTest] SMTP is not configured - email notifications are off.
[14:19:15,116][WARN ][test-runner][GridResourceSharedUndeploySelfTest] Cache is not configured - data grid is off.
[14:19:15,117][INFO ][test-runner][GridResourceSharedUndeploySelfTest] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:15,118][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:15,118][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Enabled local MACs: C8600068582C
[14:19:15,621][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:15,626][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:19:15,663][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Security status [authentication=on, secure-session=on]
[14:19:15,666][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:15,667][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:19:15,667][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:15,668][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=84364010-fce9-407d-85ed-04580d549573, state=READY, lastHeartbeat=1353320355664, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320355664]
[14:19:15,669][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xFA1E2A79]
[14:19:15,670][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:16,696][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:16,697][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:16,697][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:16,697][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:16,697][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:16,700][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Local node [ID=84364010-FCE9-407D-85ED-04580D549573, order=1353320355664]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:16,704][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5725a913
[14:19:16,704][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@697f4b17
[14:19:16,704][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@241b091d
[14:19:16,704][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6af3616f
[14:19:16,704][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5725a913
[14:19:16,704][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@697f4b17
[14:19:16,705][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@241b091d
[14:19:16,705][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6af3616f
[14:19:16,705][INFO ][gridgain-#2721%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=84364010, gg=true]
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5725a913
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@697f4b17
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@241b091d
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6af3616f
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5725a913
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@697f4b17
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@241b091d
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6af3616f
[14:19:16,708][INFO ][gridgain-#2722%resource.GridResourceSharedUndeploySelfTest%][GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest, id8=84364010, gg=true]
[14:19:16,709][INFO ][test-runner][GridDeploymentLocalStore] Failed to deploy task [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1Version2, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249]
[14:19:16,710][INFO ][test-runner][GridResourceSharedUndeploySelfTest] Received expected exception: class org.gridgain.grid.GridDeploymentException: Failed to deploy class: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1Version2
[14:19:17,765][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:17,765][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:17,770][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320356692, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=69eca281b31-84364010-fce9-407d-85ed-04580d549573, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1Version1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:17,770][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@697f4b17
[14:19:17,770][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6af3616f
[14:19:17,770][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@5725a913
[14:19:17,770][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@241b091d
[14:19:17,772][INFO ][test-runner][GridResourceSharedUndeploySelfTest]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest
>>> Grid uptime: 00:00:01:77
[14:19:17,773][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testDifferentTaskNameLocally in 2662 ms <<<
[14:19:17,776][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testSameTaskFromTwoNodesUndeploy <<<
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] << Enterprise Edition >>
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Config URL: n/a
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Daemon mode: off
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:17,781][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:17,781][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:19:17,781][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] Cache is not configured - data grid is off.
[14:19:17,782][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:17,782][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:17,783][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:19:18,286][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:18,291][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:19:18,308][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:19:18,309][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:18,310][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:19:18,310][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:18,310][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=99385fcb-d153-41bd-a627-a37f35d72846, state=READY, lastHeartbeat=1353320358303, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320358303]
[14:19:18,311][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x74F11580]
[14:19:18,311][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:19,338][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:19,339][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:19,339][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:19,339][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:19,339][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:19,342][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Local node [ID=99385FCB-D153-41BD-A627-A37F35D72846, order=1353320358303]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] << Enterprise Edition >>
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Config URL: n/a
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Daemon mode: off
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:19,343][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:19,343][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:19:19,343][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] Cache is not configured - data grid is off.
[14:19:19,344][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:19,344][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:19,344][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:19:19,846][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:19,851][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45271, locHost=/192.168.2.14]
[14:19:19,867][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:19:19,869][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:19,869][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55271
[14:19:19,869][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:19,870][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=d7bc4e32-c0ba-4df5-8226-bdd0c6c5d756, state=READY, lastHeartbeat=1353320359863, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320359863]
[14:19:19,870][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2A70A56F]
[14:19:19,871][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:19,875][INFO ][disco-event-worker-#2738%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d7bc4e32-c0ba-4df5-8226-bdd0c6c5d756, state=READY, lastHeartbeat=1353320359863, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320359863]
[14:19:19,876][INFO ][disco-event-worker-#2758%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=99385fcb-d153-41bd-a627-a37f35d72846, state=READY, lastHeartbeat=1353320359873, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320358303]
[14:19:19,876][INFO ][disco-event-worker-#2738%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xD4283BBD]
[14:19:20,874][INFO ][disco-event-worker-#2758%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xD4283BBD]
[14:19:21,947][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:19:21,948][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:19:21,949][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:21,949][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:21,949][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:21,954][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Local node [ID=D7BC4E32-C0BA-4DF5-8226-BDD0C6C5D756, order=1353320359863]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45271 UDP:50027 TCP:55271
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:21,956][INFO ][test-runner][GridResourceSharedUndeploySelfTest3]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:21,956][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] << Enterprise Edition >>
[14:19:21,956][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Config URL: n/a
[14:19:21,956][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Daemon mode: off
[14:19:21,957][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Language runtime: Java Platform API Specification ver. 1.6
[14:19:21,957][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:21,957][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:21,957][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:21,957][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:21,957][WARN ][test-runner][GridResourceSharedUndeploySelfTest3] SMTP is not configured - email notifications are off.
[14:19:21,957][WARN ][test-runner][GridResourceSharedUndeploySelfTest3] Cache is not configured - data grid is off.
[14:19:21,958][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:21,958][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:21,958][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Enabled local MACs: C8600068582C
[14:19:22,462][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:22,467][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45272, locHost=/192.168.2.14]
[14:19:22,485][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Security status [authentication=on, secure-session=on]
[14:19:22,486][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:22,487][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55272
[14:19:22,487][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:22,487][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=336b1e74-b509-4c73-a747-c0e2cbd833ce, state=READY, lastHeartbeat=1353320362483, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55272, startTime=1353320362483]
[14:19:22,488][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xC5FE02BC]
[14:19:22,488][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:22,493][INFO ][disco-event-worker-#2758%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=336b1e74-b509-4c73-a747-c0e2cbd833ce, state=READY, lastHeartbeat=1353320362483, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55272, startTime=1353320362483]
[14:19:22,493][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d7bc4e32-c0ba-4df5-8226-bdd0c6c5d756, state=READY, lastHeartbeat=1353320362483, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320359863]
[14:19:22,493][INFO ][disco-event-worker-#2758%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0xED2A2FD1]
[14:19:22,495][INFO ][disco-event-worker-#2738%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=336b1e74-b509-4c73-a747-c0e2cbd833ce, state=READY, lastHeartbeat=1353320362483, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55272, startTime=1353320362483]
[14:19:22,496][INFO ][disco-event-worker-#2738%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0xED2A2FD1]
[14:19:23,491][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0xED2A2FD1]
[14:19:23,492][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=99385fcb-d153-41bd-a627-a37f35d72846, state=READY, lastHeartbeat=1353320363339, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320358303]
[14:19:24,570][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:19:24,571][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:19:24,571][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:24,571][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:24,571][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:24,577][INFO ][test-runner][GridResourceSharedUndeploySelfTest3]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest3
>>> Local node [ID=336B1E74-B509-4C73-A747-C0E2CBD833CE, order=1353320362483]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45272 UDP:50027 TCP:55272
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:24,580][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,581][INFO ][gridgain-#2778%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=99385fcb, gg=true]
[14:19:24,585][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,585][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,585][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,585][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,585][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,585][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,586][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,586][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,586][INFO ][gridgain-#2781%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=99385fcb, gg=true]
[14:19:24,588][INFO ][gridgain-#2779%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,589][INFO ][gridgain-#2780%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@2a16fdb1
[14:19:24,589][INFO ][gridgain-#2779%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,589][INFO ][gridgain-#2780%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7c9e3f28
[14:19:24,589][INFO ][gridgain-#2779%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,589][INFO ][gridgain-#2780%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@71cde81
[14:19:24,589][INFO ][gridgain-#2779%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,589][INFO ][gridgain-#2780%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4d5c34cb
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@2a16fdb1
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7c9e3f28
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@71cde81
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4d5c34cb
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@2a16fdb1
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7c9e3f28
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@71cde81
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4d5c34cb
[14:19:24,590][INFO ][gridgain-#2784%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest3, id8=336b1e74, gg=true]
[14:19:24,590][INFO ][gridgain-#2783%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=d7bc4e32, gg=true]
[14:19:24,593][INFO ][gridgain-#2787%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,593][INFO ][gridgain-#2787%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,593][INFO ][gridgain-#2787%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,593][INFO ][gridgain-#2787%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,593][INFO ][gridgain-#2787%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=d7bc4e32, gg=true]
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,595][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,595][INFO ][gridgain-#2789%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=d7bc4e32, gg=true]
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,596][INFO ][gridgain-#2790%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=99385fcb, gg=true]
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@2a16fdb1
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7c9e3f28
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@71cde81
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4d5c34cb
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@2a16fdb1
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7c9e3f28
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@71cde81
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4d5c34cb
[14:19:24,597][INFO ][gridgain-#2794%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest3, id8=336b1e74, gg=true]
[14:19:24,599][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320364568, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=5deca281b31-99385fcb-d153-41bd-a627-a37f35d72846, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:24,599][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@27bb099a
[14:19:24,599][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7336ce2c
[14:19:24,599][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@28e2668e
[14:19:24,599][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@687371d6
[14:19:24,599][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1
[14:19:24,600][INFO ][gridgain-#2796%resource.GridResourceSharedUndeploySelfTest3%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320364578, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=0eeca281b31-336b1e74-b509-4c73-a747-c0e2cbd833ce, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:24,600][INFO ][gridgain-#2797%resource.GridResourceSharedUndeploySelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320364578, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=edeca281b31-d7bc4e32-c0ba-4df5-8226-bdd0c6c5d756, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:24,600][INFO ][gridgain-#2796%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7c9e3f28
[14:19:24,600][INFO ][gridgain-#2797%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4b69850d
[14:19:24,601][INFO ][gridgain-#2796%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@4d5c34cb
[14:19:24,601][INFO ][gridgain-#2797%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@7853eacc
[14:19:24,601][INFO ][gridgain-#2796%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@2a16fdb1
[14:19:24,601][INFO ][gridgain-#2797%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7cbe2f5a
[14:19:24,601][INFO ][gridgain-#2796%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@71cde81
[14:19:24,601][INFO ][gridgain-#2797%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@79449b02
[14:19:24,601][INFO ][gridgain-#2796%resource.GridResourceSharedUndeploySelfTest3%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1
[14:19:24,601][INFO ][gridgain-#2797%resource.GridResourceSharedUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1
[14:19:31,640][INFO ][grid-connector-jetty-binder-#2776%resource.GridResourceSharedUndeploySelfTest3%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:19:31,640][INFO ][grid-connector-jetty-binder-#2776%resource.GridResourceSharedUndeploySelfTest3%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:19:31,655][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:31,656][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:31,658][INFO ][disco-event-worker-#2758%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=99385fcb-d153-41bd-a627-a37f35d72846, state=LEFT, lastHeartbeat=1353320371648, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320358303]
[14:19:31,658][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=99385fcb-d153-41bd-a627-a37f35d72846, state=LEFT, lastHeartbeat=1353320371648, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320358303]
[14:19:31,658][INFO ][disco-event-worker-#2758%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xD706F393]
[14:19:31,658][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xD706F393]
[14:19:31,663][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Grid uptime: 00:00:12:319
[14:19:31,664][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:31,664][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:31,666][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=d7bc4e32-c0ba-4df5-8226-bdd0c6c5d756, state=LEFT, lastHeartbeat=1353320371658, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320359863]
[14:19:31,667][INFO ][disco-event-worker-#2775%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xC5FE02BC]
[14:19:31,670][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Grid uptime: 00:00:09:719
[14:19:32,725][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:32,725][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:32,731][INFO ][test-runner][GridResourceSharedUndeploySelfTest3]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest3
>>> Grid uptime: 00:00:08:157
[14:19:32,732][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testSameTaskFromTwoNodesUndeploy in 14956 ms <<<
[14:19:32,736][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Starting test: testSameTaskFromTwoNodesLeft <<<
[14:19:32,740][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:32,740][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] << Enterprise Edition >>
[14:19:32,740][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Config URL: n/a
[14:19:32,740][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Daemon mode: off
[14:19:32,741][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:32,741][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:32,741][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:32,741][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:32,741][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:32,741][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:19:32,741][WARN ][test-runner][GridResourceSharedUndeploySelfTest1] Cache is not configured - data grid is off.
[14:19:32,742][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:32,742][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:32,742][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:19:33,246][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:33,251][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45270, locHost=/192.168.2.14]
[14:19:33,278][INFO ][test-runner][GridResourceSharedUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:19:33,281][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:33,281][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55270
[14:19:33,282][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:33,283][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=3d459673-51a3-4312-9008-676712903c62, state=READY, lastHeartbeat=1353320373279, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320373279]
[14:19:33,284][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x186846FA]
[14:19:33,285][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:34,309][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:34,311][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:34,311][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:34,311][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:34,311][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:34,314][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Local node [ID=3D459673-51A3-4312-9008-676712903C62, order=1353320373279]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45270 UDP:50027 TCP:55270
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] << Enterprise Edition >>
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Config URL: n/a
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Daemon mode: off
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:34,315][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:34,316][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:34,316][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:34,316][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:19:34,316][WARN ][test-runner][GridResourceSharedUndeploySelfTest2] Cache is not configured - data grid is off.
[14:19:34,316][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:34,316][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:34,316][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:19:34,819][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:34,824][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45271, locHost=/192.168.2.14]
[14:19:34,840][INFO ][test-runner][GridResourceSharedUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:19:34,842][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:34,842][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55271
[14:19:34,842][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:34,843][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=4e34a31e-7470-49e8-ba75-fcf95feeae8d, state=READY, lastHeartbeat=1353320374840, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320374840]
[14:19:34,843][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x625F14F0]
[14:19:34,844][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:34,848][INFO ][disco-event-worker-#2814%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=4e34a31e-7470-49e8-ba75-fcf95feeae8d, state=READY, lastHeartbeat=1353320374840, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320374840]
[14:19:34,849][INFO ][disco-event-worker-#2834%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=3d459673-51a3-4312-9008-676712903c62, state=READY, lastHeartbeat=1353320374840, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320373279]
[14:19:34,849][INFO ][disco-event-worker-#2814%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xF0431148]
[14:19:35,846][INFO ][disco-event-worker-#2834%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xF0431148]
[14:19:36,922][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:19:36,923][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:19:36,923][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:36,923][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:36,923][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:36,928][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Local node [ID=4E34A31E-7470-49E8-BA75-FCF95FEEAE8D, order=1353320374840]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45271 UDP:50027 TCP:55271
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] << Enterprise Edition >>
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Config URL: n/a
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Daemon mode: off
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Language runtime: Java Platform API Specification ver. 1.6
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:36,931][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:36,932][WARN ][test-runner][GridResourceSharedUndeploySelfTest3] SMTP is not configured - email notifications are off.
[14:19:36,932][WARN ][test-runner][GridResourceSharedUndeploySelfTest3] Cache is not configured - data grid is off.
[14:19:36,932][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:36,933][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:36,933][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Enabled local MACs: C8600068582C
[14:19:37,436][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:37,442][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45272, locHost=/192.168.2.14]
[14:19:37,459][INFO ][test-runner][GridResourceSharedUndeploySelfTest3] Security status [authentication=on, secure-session=on]
[14:19:37,460][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:37,461][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55272
[14:19:37,461][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50027
[14:19:37,461][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=9ea6241b-2a18-4e29-b457-a10d1c67f2d1, state=READY, lastHeartbeat=1353320377458, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55272, startTime=1353320377458]
[14:19:37,462][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x520B052D]
[14:19:37,463][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:37,867][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=4e34a31e-7470-49e8-ba75-fcf95feeae8d, state=READY, lastHeartbeat=1353320377861, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320374840]
[14:19:37,867][INFO ][disco-event-worker-#2834%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9ea6241b-2a18-4e29-b457-a10d1c67f2d1, state=READY, lastHeartbeat=1353320377458, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55272, startTime=1353320377458]
[14:19:37,868][INFO ][disco-event-worker-#2834%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0x7279F5AC]
[14:19:38,320][INFO ][disco-event-worker-#2814%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9ea6241b-2a18-4e29-b457-a10d1c67f2d1, state=READY, lastHeartbeat=1353320377458, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55272, startTime=1353320377458]
[14:19:38,321][INFO ][disco-event-worker-#2814%resource.GridResourceSharedUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0x7279F5AC]
[14:19:38,465][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0x7279F5AC]
[14:19:38,466][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=3d459673-51a3-4312-9008-676712903c62, state=READY, lastHeartbeat=1353320378314, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320373279]
[14:19:39,541][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:19:39,542][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:19:39,542][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:39,542][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:39,542][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:39,548][INFO ][test-runner][GridResourceSharedUndeploySelfTest3]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceSharedUndeploySelfTest3
>>> Local node [ID=9EA6241B-2A18-4E29-B457-A10D1C67F2D1, order=1353320377458]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45272 UDP:50027 TCP:55272
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:39,552][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:39,553][INFO ][gridgain-#2854%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=3d459673, gg=true]
[14:19:39,556][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:39,556][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:39,556][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:39,556][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:39,556][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:39,556][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:39,557][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:39,557][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:39,557][INFO ][gridgain-#2855%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=3d459673, gg=true]
[14:19:39,562][INFO ][gridgain-#2857%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:39,562][INFO ][gridgain-#2858%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@311b2ce5
[14:19:39,563][INFO ][gridgain-#2857%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:39,563][INFO ][gridgain-#2858%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@40a4bb3d
[14:19:39,563][INFO ][gridgain-#2857%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:39,563][INFO ][gridgain-#2858%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@afedf02
[14:19:39,563][INFO ][gridgain-#2857%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:39,563][INFO ][gridgain-#2858%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@2594a7ef
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@311b2ce5
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@40a4bb3d
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@afedf02
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@2594a7ef
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@311b2ce5
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@40a4bb3d
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@afedf02
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@2594a7ef
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:39,564][INFO ][gridgain-#2860%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest3, id8=9ea6241b, gg=true]
[14:19:39,564][INFO ][gridgain-#2859%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=4e34a31e, gg=true]
[14:19:39,567][INFO ][gridgain-#2863%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:39,567][INFO ][gridgain-#2863%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:39,567][INFO ][gridgain-#2863%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:39,567][INFO ][gridgain-#2863%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into task: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:39,567][INFO ][gridgain-#2863%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=4e34a31e, gg=true]
[14:19:39,569][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:39,569][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:39,569][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:39,570][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:39,570][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:39,570][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:39,570][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:39,570][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:39,570][INFO ][gridgain-#2865%resource.GridResourceSharedUndeploySelfTest2%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest2, id8=4e34a31e, gg=true]
[14:19:39,570][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@311b2ce5
[14:19:39,570][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@40a4bb3d
[14:19:39,570][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@afedf02
[14:19:39,570][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@2594a7ef
[14:19:39,570][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@311b2ce5
[14:19:39,570][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@40a4bb3d
[14:19:39,571][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@afedf02
[14:19:39,571][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@2594a7ef
[14:19:39,571][INFO ][gridgain-#2867%resource.GridResourceSharedUndeploySelfTest3%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest3, id8=9ea6241b, gg=true]
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource1 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource2 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource3 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource4 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource5 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource6 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource7 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected shared resource8 into job: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:39,571][INFO ][gridgain-#2869%resource.GridResourceSharedUndeploySelfTest1%][GridResourceSharedUndeploySelfTest$SharedResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceSharedUndeploySelfTest1, id8=3d459673, gg=true]
[14:19:39,932][INFO ][grid-connector-jetty-binder-#2835%resource.GridResourceSharedUndeploySelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:19:39,932][INFO ][grid-connector-jetty-binder-#2835%resource.GridResourceSharedUndeploySelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:19:40,627][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:40,628][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:40,630][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=3d459673-51a3-4312-9008-676712903c62, state=LEFT, lastHeartbeat=1353320380620, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320373279]
[14:19:40,630][INFO ][disco-event-worker-#2834%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=3d459673-51a3-4312-9008-676712903c62, state=LEFT, lastHeartbeat=1353320380620, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55270, startTime=1353320373279]
[14:19:40,630][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x5EBF59A2]
[14:19:40,631][INFO ][disco-event-worker-#2834%resource.GridResourceSharedUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x5EBF59A2]
[14:19:40,634][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320379542, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=08fca281b31-3d459673-51a3-4312-9008-676712903c62, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:40,634][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@632a7009
[14:19:40,634][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@3ce6c917
[14:19:40,634][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@df3584e
[14:19:40,635][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@772191bb
[14:19:40,636][INFO ][test-runner][GridResourceSharedUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest1
>>> Grid uptime: 00:00:06:323
[14:19:42,551][INFO ][grid-connector-jetty-binder-#2852%resource.GridResourceSharedUndeploySelfTest3%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:19:42,551][INFO ][grid-connector-jetty-binder-#2852%resource.GridResourceSharedUndeploySelfTest3%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:19:42,692][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:42,692][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:42,695][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=4e34a31e-7470-49e8-ba75-fcf95feeae8d, state=LEFT, lastHeartbeat=1353320382686, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55271, startTime=1353320374840]
[14:19:42,695][INFO ][disco-event-worker-#2851%resource.GridResourceSharedUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x520B052D]
[14:19:42,697][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320379553, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=e8fca281b31-4e34a31e-7470-49e8-ba75-fcf95feeae8d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:42,697][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@6f208792
[14:19:42,698][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@62e301f1
[14:19:42,698][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@4b760467
[14:19:42,698][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@7f00c2f2
[14:19:42,699][INFO ][test-runner][GridResourceSharedUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest2
>>> Grid uptime: 00:00:05:772
[14:19:44,755][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:44,755][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:44,759][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320379553, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f8fca281b31-9ea6241b-2a18-4e29-b457-a10d1c67f2d1, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$SharedResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:44,760][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@40a4bb3d
[14:19:44,760][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource2@2594a7ef
[14:19:44,760][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@311b2ce5
[14:19:44,760][INFO ][test-runner][GridResourceSharedUndeploySelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceSharedUndeploySelfTest$UserResource1@afedf02
[14:19:44,762][INFO ][test-runner][GridResourceSharedUndeploySelfTest3]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceSharedUndeploySelfTest3
>>> Grid uptime: 00:00:05:218
[14:19:44,762][INFO ][main][GridResourceSharedUndeploySelfTest] >>> Stopping test: testSameTaskFromTwoNodesLeft in 12026 ms <<<
[14:19:44,768][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testIoc <<<
[14:19:44,771][INFO ][test-runner][GridResourceIocSelfTest] Injected resources.
[14:19:44,771][INFO ][test-runner][GridResourceIocSelfTest] Cleanup resources.
[14:19:44,772][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testIoc in 4 ms <<<
[14:19:44,775][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testUndeployPrivateMode <<<
[14:19:44,779][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:44,779][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:19:44,779][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:19:44,779][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:19:44,780][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:44,780][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:44,780][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:44,780][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:44,780][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:44,780][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:19:44,780][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:19:44,781][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:44,781][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:44,781][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:19:45,285][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:45,290][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:19:45,307][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:19:45,309][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:45,309][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:19:45,309][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:19:45,310][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a2531dac-d626-4fea-8814-f6c1eee90384, state=READY, lastHeartbeat=1353320385304, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320385304]
[14:19:45,310][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x1EAAA927]
[14:19:45,311][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:46,337][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:46,340][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:46,340][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:46,340][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:46,340][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:46,342][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=A2531DAC-D626-4FEA-8814-F6C1EEE90384, order=1353320385304]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:46,346][INFO ][gridgain-#2892%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@7873df20
[14:19:46,349][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320386342, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=2dfca281b31-a2531dac-d626-4fea-8814-f6c1eee90384, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:46,350][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@7873df20
[14:19:46,350][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:46,350][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:46,350][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=a2531dac-d626-4fea-8814-f6c1eee90384]
[14:19:47,405][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:47,405][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:47,411][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:01:78
[14:19:47,412][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testUndeployPrivateMode in 2637 ms <<<
[14:19:47,415][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testUndeployIsolatedMode <<<
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:47,420][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:47,420][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:19:47,421][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:19:47,421][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:47,422][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:47,422][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:19:47,926][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:47,931][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:19:47,947][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:19:47,948][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:47,949][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:19:47,949][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:19:47,949][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=11e41b8e-4451-4905-b95a-dac80127e0dd, state=READY, lastHeartbeat=1353320387943, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320387943]
[14:19:47,950][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xAB81F88]
[14:19:47,950][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:48,976][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:48,977][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:48,977][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:48,977][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:48,977][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:48,980][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=11E41B8E-4451-4905-B95A-DAC80127E0DD, order=1353320387943]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:48,982][INFO ][gridgain-#2915%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@29df30f6
[14:19:48,985][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320388971, depMode=ISOLATED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=5efca281b31-11e41b8e-4451-4905-b95a-dac80127e0dd, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:48,985][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@29df30f6
[14:19:48,985][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:48,985][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:48,985][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=11e41b8e-4451-4905-b95a-dac80127e0dd]
[14:19:50,041][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:50,041][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:50,048][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:01:68
[14:19:50,048][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testUndeployIsolatedMode in 2633 ms <<<
[14:19:50,051][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testUndeployContinuousMode <<<
[14:19:50,056][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:50,056][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:19:50,056][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:19:50,057][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:19:50,057][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:50,057][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:50,057][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:50,057][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:50,057][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:50,057][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:19:50,057][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:19:50,058][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:50,058][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:50,058][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:19:50,562][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:50,567][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:19:50,604][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:19:50,607][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:50,607][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:19:50,608][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:19:50,609][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=84145631-55ef-4f30-8cbe-aa1700d06d43, state=READY, lastHeartbeat=1353320390603, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320390603]
[14:19:50,610][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x18A81887]
[14:19:50,610][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:51,642][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:51,643][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:51,643][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:51,643][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:51,643][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:51,646][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=84145631-55EF-4F30-8CBE-AA1700D06D43, order=1353320390603]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:51,647][INFO ][gridgain-#2938%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@59f55e0c
[14:19:51,649][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320391640, depMode=CONTINUOUS, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=8ffca281b31-84145631-55ef-4f30-8cbe-aa1700d06d43, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:51,649][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@59f55e0c
[14:19:51,649][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:51,649][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:51,649][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=84145631-55ef-4f30-8cbe-aa1700d06d43]
[14:19:52,705][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:52,705][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:52,711][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:01:66
[14:19:52,712][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testUndeployContinuousMode in 2661 ms <<<
[14:19:52,715][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testUndeploySharedMode <<<
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:52,720][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:52,721][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:52,721][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:19:52,721][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:19:52,721][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:52,722][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:52,722][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:19:53,225][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:53,231][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:19:53,247][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:19:53,249][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:53,249][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:19:53,250][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:19:53,250][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=5b7b66da-0a7d-4945-9e3a-bf6aa108b8f3, state=READY, lastHeartbeat=1353320393240, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320393240]
[14:19:53,250][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x98A35973]
[14:19:53,251][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:54,276][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:54,278][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:54,278][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:54,278][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:54,278][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:54,280][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=5B7B66DA-0A7D-4945-9E3A-BF6AA108B8F3, order=1353320393240]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:54,283][INFO ][gridgain-#2961%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@51df2e32
[14:19:54,285][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320394278, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=b00da281b31-5b7b66da-0a7d-4945-9e3a-bf6aa108b8f3, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:19:54,285][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@51df2e32
[14:19:54,285][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:54,285][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:54,286][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=5b7b66da-0a7d-4945-9e3a-bf6aa108b8f3]
[14:19:55,343][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:19:55,343][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:19:55,350][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:01:67
[14:19:55,350][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testUndeploySharedMode in 2635 ms <<<
[14:19:55,353][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testStopNodePrivateMode <<<
[14:19:55,358][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:55,358][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:19:55,358][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:19:55,358][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:19:55,358][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:19:55,359][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:55,359][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:55,359][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:55,359][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:55,359][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:19:55,359][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:19:55,360][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:55,360][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:55,360][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:19:55,864][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:55,869][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:19:55,887][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:19:55,888][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:55,889][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:19:55,889][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:19:55,889][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=74a905eb-65de-4f4f-8d3e-8e23f3fefd6a, state=READY, lastHeartbeat=1353320395889, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320395879]
[14:19:55,890][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x4331D553]
[14:19:55,890][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:56,922][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:19:56,923][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:19:56,923][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:56,923][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:56,923][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:56,926][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=74A905EB-65DE-4F4F-8D3E-8E23F3FEFD6A, order=1353320395879]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:56,927][INFO ][test-runner][GridResourceIocSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:19:56,927][INFO ][test-runner][GridResourceIocSelfTest2] << Enterprise Edition >>
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] Config URL: n/a
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] Daemon mode: off
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:19:56,928][WARN ][test-runner][GridResourceIocSelfTest2] SMTP is not configured - email notifications are off.
[14:19:56,928][WARN ][test-runner][GridResourceIocSelfTest2] Cache is not configured - data grid is off.
[14:19:56,928][INFO ][test-runner][GridResourceIocSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:19:56,929][INFO ][test-runner][GridResourceIocSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:19:56,929][INFO ][test-runner][GridResourceIocSelfTest2] Enabled local MACs: C8600068582C
[14:19:57,431][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:19:57,436][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45281, locHost=/192.168.2.14]
[14:19:57,455][INFO ][test-runner][GridResourceIocSelfTest2] Security status [authentication=on, secure-session=on]
[14:19:57,457][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:19:57,457][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55281
[14:19:57,457][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:19:57,458][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=cc89d784-bdbd-450f-ba6c-4a9a5e38d1ab, state=READY, lastHeartbeat=1353320397449, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55281, startTime=1353320397449]
[14:19:57,458][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x96E05E8C]
[14:19:57,459][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:19:57,908][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=74a905eb-65de-4f4f-8d3e-8e23f3fefd6a, state=READY, lastHeartbeat=1353320397902, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320395879]
[14:19:57,908][INFO ][disco-event-worker-#2978%resource.GridResourceIocSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=cc89d784-bdbd-450f-ba6c-4a9a5e38d1ab, state=READY, lastHeartbeat=1353320397459, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55281, startTime=1353320397449]
[14:19:57,909][INFO ][disco-event-worker-#2978%resource.GridResourceIocSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x1E003587]
[14:19:58,468][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x1E003587]
[14:19:59,546][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:19:59,547][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:19:59,547][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:19:59,547][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:19:59,547][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:19:59,553][INFO ][test-runner][GridResourceIocSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest2
>>> Local node [ID=CC89D784-BDBD-450F-BA6C-4A9A5E38D1AB, order=1353320397449]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45281 UDP:50028 TCP:55281
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:19:59,556][INFO ][gridgain-#3001%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@342d0af4
[14:19:59,574][INFO ][gridgain-#3004%resource.GridResourceIocSelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:19:59,580][INFO ][gridgain-#3004%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@f6d2b62
[14:19:59,581][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=74a905eb-65de-4f4f-8d3e-8e23f3fefd6a]
[14:20:00,637][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:00,637][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:00,639][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=74a905eb-65de-4f4f-8d3e-8e23f3fefd6a, state=LEFT, lastHeartbeat=1353320400633, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320395879]
[14:20:00,640][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x96E05E8C]
[14:20:00,641][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest] Received event: GridDeploymentEvent [alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, nodeId8=74a905eb, msg=Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask], type=TASK_UNDEPLOYED, tstamp=1353320400633]
[14:20:00,641][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask]
[14:20:00,641][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest] Received event: GridDeploymentEvent [alias=TestTask, nodeId8=74a905eb, msg=Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=TestTask], type=TASK_UNDEPLOYED, tstamp=1353320400633]
[14:20:00,641][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=TestTask]
[14:20:00,641][INFO ][disco-event-worker-#2998%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@f6d2b62
[14:20:00,642][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320399554, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=b20da281b31-74a905eb-65de-4f4f-8d3e-8e23f3fefd6a, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:00,642][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@342d0af4
[14:20:00,644][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:03:727
[14:20:02,556][INFO ][grid-connector-jetty-binder-#2999%resource.GridResourceIocSelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:20:02,556][INFO ][grid-connector-jetty-binder-#2999%resource.GridResourceIocSelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:20:02,645][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest2, id=cc89d784-bdbd-450f-ba6c-4a9a5e38d1ab]
[14:20:03,700][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:03,700][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:03,708][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320399564, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=730da281b31-cc89d784-bdbd-450f-ba6c-4a9a5e38d1ab, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:03,710][INFO ][test-runner][GridResourceIocSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest2
>>> Grid uptime: 00:00:04:162
[14:20:03,711][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testStopNodePrivateMode in 8357 ms <<<
[14:20:03,714][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testStopNodeIsolatedMode <<<
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:03,719][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:03,720][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:03,720][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:20:03,720][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:20:03,720][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:03,721][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:03,721][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:20:04,225][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:04,230][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:20:04,269][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:20:04,272][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:04,272][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:20:04,273][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:04,274][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=66eb4ea6-47bb-4d31-91be-ac33637113e5, state=READY, lastHeartbeat=1353320404269, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320404269]
[14:20:04,274][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x4350875B]
[14:20:04,275][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:05,303][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:05,306][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:05,306][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:05,306][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:05,306][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:05,309][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=66EB4EA6-47BB-4D31-91BE-AC33637113E5, order=1353320404269]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] << Enterprise Edition >>
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] Config URL: n/a
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] Daemon mode: off
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:05,310][INFO ][test-runner][GridResourceIocSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:05,310][WARN ][test-runner][GridResourceIocSelfTest2] SMTP is not configured - email notifications are off.
[14:20:05,310][WARN ][test-runner][GridResourceIocSelfTest2] Cache is not configured - data grid is off.
[14:20:05,311][INFO ][test-runner][GridResourceIocSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:05,311][INFO ][test-runner][GridResourceIocSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:05,311][INFO ][test-runner][GridResourceIocSelfTest2] Enabled local MACs: C8600068582C
[14:20:05,813][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:05,819][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45281, locHost=/192.168.2.14]
[14:20:05,835][INFO ][test-runner][GridResourceIocSelfTest2] Security status [authentication=on, secure-session=on]
[14:20:05,837][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:05,837][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55281
[14:20:05,837][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:05,838][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=ae6e38b5-91fe-4bb4-bd7b-b627c4212bd1, state=READY, lastHeartbeat=1353320405831, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55281, startTime=1353320405831]
[14:20:05,838][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xB903D209]
[14:20:05,840][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:06,291][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=66eb4ea6-47bb-4d31-91be-ac33637113e5, state=READY, lastHeartbeat=1353320406284, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320404269]
[14:20:06,292][INFO ][disco-event-worker-#3031%resource.GridResourceIocSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=ae6e38b5-91fe-4bb4-bd7b-b627c4212bd1, state=READY, lastHeartbeat=1353320405831, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55281, startTime=1353320405831]
[14:20:06,292][INFO ][disco-event-worker-#3031%resource.GridResourceIocSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x575A7627]
[14:20:06,842][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x575A7627]
[14:20:07,916][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:20:07,917][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:20:07,917][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:07,917][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:07,917][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:07,922][INFO ][test-runner][GridResourceIocSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest2
>>> Local node [ID=AE6E38B5-91FE-4BB4-BD7B-B627C4212BD1, order=1353320405831]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45281 UDP:50028 TCP:55281
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:07,925][INFO ][gridgain-#3054%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@49677bfc
[14:20:07,932][INFO ][gridgain-#3055%resource.GridResourceIocSelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:20:07,945][INFO ][gridgain-#3055%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@433ad7f2
[14:20:07,946][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=66eb4ea6-47bb-4d31-91be-ac33637113e5]
[14:20:09,001][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:09,001][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:09,004][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=66eb4ea6-47bb-4d31-91be-ac33637113e5, state=LEFT, lastHeartbeat=1353320409003, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320404269]
[14:20:09,004][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xB903D209]
[14:20:09,005][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest] Received event: GridDeploymentEvent [alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, nodeId8=66eb4ea6, msg=Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask], type=TASK_UNDEPLOYED, tstamp=1353320409003]
[14:20:09,005][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask]
[14:20:09,005][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest] Received event: GridDeploymentEvent [alias=TestTask, nodeId8=66eb4ea6, msg=Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=TestTask], type=TASK_UNDEPLOYED, tstamp=1353320409003]
[14:20:09,005][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=TestTask]
[14:20:09,006][INFO ][disco-event-worker-#3051%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@433ad7f2
[14:20:09,007][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320407915, depMode=ISOLATED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=060da281b31-66eb4ea6-47bb-4d31-91be-ac33637113e5, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:09,007][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@49677bfc
[14:20:09,009][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:03:696
[14:20:10,925][INFO ][grid-connector-jetty-binder-#3052%resource.GridResourceIocSelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:20:10,926][INFO ][grid-connector-jetty-binder-#3052%resource.GridResourceIocSelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:20:11,010][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest2, id=ae6e38b5-91fe-4bb4-bd7b-b627c4212bd1]
[14:20:12,066][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:12,066][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:12,071][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320407926, depMode=ISOLATED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=760da281b31-ae6e38b5-91fe-4bb4-bd7b-b627c4212bd1, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:12,073][INFO ][test-runner][GridResourceIocSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest2
>>> Grid uptime: 00:00:04:149
[14:20:12,074][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testStopNodeIsolatedMode in 8360 ms <<<
[14:20:12,077][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testStopNodeSharedMode <<<
[14:20:12,082][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:12,082][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:20:12,082][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:20:12,082][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:20:12,083][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:12,083][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:12,083][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:12,083][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:12,083][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:12,083][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:20:12,083][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:20:12,084][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:12,084][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:12,084][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:20:12,588][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:12,593][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:20:12,625][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:20:12,628][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:12,628][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:20:12,629][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:12,630][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a26ef5fb-e674-493f-bb78-c0864866220f, state=READY, lastHeartbeat=1353320412628, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320412628]
[14:20:12,631][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x95724E4]
[14:20:12,631][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:13,655][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:13,657][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:13,657][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:13,657][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:13,657][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:13,660][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=A26EF5FB-E674-493F-BB78-C0864866220F, order=1353320412628]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] << Enterprise Edition >>
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] Config URL: n/a
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] Daemon mode: off
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:13,661][INFO ][test-runner][GridResourceIocSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:13,661][WARN ][test-runner][GridResourceIocSelfTest2] SMTP is not configured - email notifications are off.
[14:20:13,661][WARN ][test-runner][GridResourceIocSelfTest2] Cache is not configured - data grid is off.
[14:20:13,662][INFO ][test-runner][GridResourceIocSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:13,662][INFO ][test-runner][GridResourceIocSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:13,662][INFO ][test-runner][GridResourceIocSelfTest2] Enabled local MACs: C8600068582C
[14:20:14,164][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:14,169][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45281, locHost=/192.168.2.14]
[14:20:14,186][INFO ][test-runner][GridResourceIocSelfTest2] Security status [authentication=on, secure-session=on]
[14:20:14,187][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:14,188][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55281
[14:20:14,188][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:14,188][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a2d743b6-df82-4dfd-b409-56e9c82e9ba4, state=READY, lastHeartbeat=1353320414179, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55281, startTime=1353320414179]
[14:20:14,189][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x6A897826]
[14:20:14,191][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:14,194][INFO ][disco-event-worker-#3084%resource.GridResourceIocSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=a2d743b6-df82-4dfd-b409-56e9c82e9ba4, state=READY, lastHeartbeat=1353320414189, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55281, startTime=1353320414179]
[14:20:14,195][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=a26ef5fb-e674-493f-bb78-c0864866220f, state=READY, lastHeartbeat=1353320414189, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320412628]
[14:20:14,195][INFO ][disco-event-worker-#3084%resource.GridResourceIocSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x1E9A6EED]
[14:20:15,193][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x1E9A6EED]
[14:20:16,269][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:20:16,270][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:20:16,270][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:16,270][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:16,270][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:16,275][INFO ][test-runner][GridResourceIocSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest2
>>> Local node [ID=A2D743B6-DF82-4DFD-B409-56E9C82E9BA4, order=1353320414179]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45281 UDP:50028 TCP:55281
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:16,278][INFO ][gridgain-#3107%resource.GridResourceIocSelfTest1%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@36ef39e5
[14:20:16,287][INFO ][gridgain-#3110%resource.GridResourceIocSelfTest2%][GridDeploymentPerVersionStore] Task was deployed in SHARED or CONTINUOUS mode: class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask
[14:20:16,300][INFO ][gridgain-#3110%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@57b32bf7
[14:20:16,302][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=a26ef5fb-e674-493f-bb78-c0864866220f]
[14:20:17,356][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:17,356][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:17,358][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=a26ef5fb-e674-493f-bb78-c0864866220f, state=LEFT, lastHeartbeat=1353320417350, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320412628]
[14:20:17,359][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x6A897826]
[14:20:17,360][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest] Received event: GridDeploymentEvent [alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, nodeId8=a2d743b6, msg=Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask], type=TASK_UNDEPLOYED, tstamp=1353320417350]
[14:20:17,360][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridDeploymentPerVersionStore] Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask]
[14:20:17,360][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest] Received event: GridDeploymentEvent [alias=TestTask, nodeId8=a2d743b6, msg=Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=TestTask], type=TASK_UNDEPLOYED, tstamp=1353320417350]
[14:20:17,360][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridDeploymentPerVersionStore] Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, alias=TestTask]
[14:20:17,360][INFO ][disco-event-worker-#3104%resource.GridResourceIocSelfTest2%][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@57b32bf7
[14:20:17,361][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320416273, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=690da281b31-a26ef5fb-e674-493f-bb78-c0864866220f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:17,361][INFO ][test-runner][GridResourceIocSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceIocSelfTest$UserResource1@36ef39e5
[14:20:17,363][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:03:705
[14:20:19,281][INFO ][grid-connector-jetty-binder-#3105%resource.GridResourceIocSelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:20:19,281][INFO ][grid-connector-jetty-binder-#3105%resource.GridResourceIocSelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:20:19,364][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest2, id=a2d743b6-df82-4dfd-b409-56e9c82e9ba4]
[14:20:20,419][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:20,420][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:20,427][INFO ][test-runner][GridResourceIocSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest2
>>> Grid uptime: 00:00:04:150
[14:20:20,428][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testStopNodeSharedMode in 8350 ms <<<
[14:20:20,431][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testGarPrivateMode <<<
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:20,444][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:20,444][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:20:20,444][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:20:20,445][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:20,445][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:20,445][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:20:20,947][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:20,953][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:20:20,967][INFO ][grid-uri-scanner-#665%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found new or updated GAR units [uri=file:///tmp/7a1089d4-e891-46de-80b2-500f5603b04c/p2p.gar, file=/tmp/gg.uri.deployment.tmp/cf41b024-e947-4053-ac02-570aa3fb18f7/p2p2597877142523783363.gar, tstamp=1353320420000]
[14:20:20,980][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:20:20,982][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:20,982][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:20:20,982][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:20,983][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=cf41b024-e947-4053-ac02-570aa3fb18f7, state=READY, lastHeartbeat=1353320420976, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320420976]
[14:20:20,983][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x394CFB14]
[14:20:20,984][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:22,012][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:22,013][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:22,014][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:22,014][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:22,014][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:22,017][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=CF41B024-E947-4053-AC02-570AA3FB18F7, order=1353320420976]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:22,050][INFO ][test-runner][GridDeploymentLocalStore] User version is not explicitly defined (will use default version) [file=META-INF/gridgain.xml, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/cf41b024-e947-4053-ac02-570aa3fb18f7/dirzip_p2p2597877142523783363.gar/]]]
[14:20:22,053][INFO ][gridgain-#3143%resource.GridResourceIocSelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@1df8a6e1, subgrid=[cf41b024-e947-4053-ac02-570aa3fb18f7], arg=cf41b024-e947-4053-ac02-570aa3fb18f7]
[14:20:26,067][INFO ][grid-uri-scanner-#665%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found deleted GAR units [uris=[file:///tmp/7a1089d4-e891-46de-80b2-500f5603b04c/p2p.gar]]
[14:20:26,069][INFO ][grid-uri-scanner-#665%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320422042, depMode=PRIVATE, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/cf41b024-e947-4053-ac02-570aa3fb18f7/dirzip_p2p2597877142523783363.gar/]], clsLdrId=fb0da281b31-cf41b024-e947-4053-ac02-570aa3fb18f7, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:26,070][INFO ][grid-uri-scanner-#665%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:28,059][INFO ][test-runner][GridResourceIocSelfTest] Caught expected exception: class org.gridgain.grid.GridDeploymentException: Unknown task name or failed to auto-deploy task (was task (re|un)deployed?): org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:28,059][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=cf41b024-e947-4053-ac02-570aa3fb18f7]
[14:20:29,114][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:29,114][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:29,121][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:07:99
[14:20:29,122][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testGarPrivateMode in 8691 ms <<<
[14:20:29,125][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testGarIsolatedMode <<<
[14:20:29,130][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:29,130][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:29,131][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:29,131][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:20:29,131][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:20:29,132][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:29,133][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:29,133][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:20:29,636][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:29,641][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:20:29,664][INFO ][grid-uri-scanner-#674%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found new or updated GAR units [uri=file:///tmp/1a6d4d9b-92ef-48a5-b984-ad6308380381/p2p.gar, file=/tmp/gg.uri.deployment.tmp/fd28e2a3-1265-4325-b5af-2c4061e03e8d/p2p5649070182098927287.gar, tstamp=1353320429000]
[14:20:29,679][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:20:29,682][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:29,685][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:20:29,685][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:29,686][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=fd28e2a3-1265-4325-b5af-2c4061e03e8d, state=READY, lastHeartbeat=1353320429685, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320429675]
[14:20:29,686][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x5B1ED1C1]
[14:20:29,687][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:30,714][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:30,715][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:30,715][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:30,715][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:30,715][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:30,718][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=FD28E2A3-1265-4325-B5AF-2C4061E03E8D, order=1353320429675]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:30,739][INFO ][test-runner][GridDeploymentLocalStore] User version is not explicitly defined (will use default version) [file=META-INF/gridgain.xml, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/fd28e2a3-1265-4325-b5af-2c4061e03e8d/dirzip_p2p5649070182098927287.gar/]]]
[14:20:30,742][INFO ][gridgain-#3166%resource.GridResourceIocSelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@74e1559a, subgrid=[fd28e2a3-1265-4325-b5af-2c4061e03e8d], arg=fd28e2a3-1265-4325-b5af-2c4061e03e8d]
[14:20:34,709][INFO ][grid-uri-scanner-#674%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found deleted GAR units [uris=[file:///tmp/1a6d4d9b-92ef-48a5-b984-ad6308380381/p2p.gar]]
[14:20:34,711][INFO ][grid-uri-scanner-#674%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320430733, depMode=ISOLATED, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/fd28e2a3-1265-4325-b5af-2c4061e03e8d/dirzip_p2p5649070182098927287.gar/]], clsLdrId=8d0da281b31-fd28e2a3-1265-4325-b5af-2c4061e03e8d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:34,711][INFO ][grid-uri-scanner-#674%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:36,748][INFO ][test-runner][GridResourceIocSelfTest] Caught expected exception: class org.gridgain.grid.GridDeploymentException: Unknown task name or failed to auto-deploy task (was task (re|un)deployed?): org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:36,748][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=fd28e2a3-1265-4325-b5af-2c4061e03e8d]
[14:20:37,804][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:37,804][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:37,810][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:07:89
[14:20:37,811][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testGarIsolatedMode in 8686 ms <<<
[14:20:37,815][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testGarContinuousMode <<<
[14:20:37,820][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:37,820][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:20:37,820][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:20:37,820][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:20:37,820][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:37,820][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:37,821][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:37,821][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:37,821][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:37,821][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:20:37,821][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:20:37,822][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:37,822][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:37,822][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:20:38,326][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:38,331][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:20:38,338][INFO ][grid-uri-scanner-#683%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found new or updated GAR units [uri=file:///tmp/fa9aaa6a-7338-43ae-bb62-200aa6301d3c/p2p.gar, file=/tmp/gg.uri.deployment.tmp/b0685083-9394-423e-9fd7-2bffcd6cb51a/p2p998565344693616667.gar, tstamp=1353320437000]
[14:20:38,384][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:20:38,387][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:38,387][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:20:38,388][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:38,389][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b0685083-9394-423e-9fd7-2bffcd6cb51a, state=READY, lastHeartbeat=1353320438385, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320438385]
[14:20:38,389][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xE4EEA715]
[14:20:38,390][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:39,416][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:39,417][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:39,418][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:39,418][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:39,418][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:39,423][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=B0685083-9394-423E-9FD7-2BFFCD6CB51A, order=1353320438385]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:39,444][INFO ][test-runner][GridDeploymentLocalStore] User version is not explicitly defined (will use default version) [file=META-INF/gridgain.xml, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/b0685083-9394-423e-9fd7-2bffcd6cb51a/dirzip_p2p998565344693616667.gar/]]]
[14:20:39,447][INFO ][gridgain-#3189%resource.GridResourceIocSelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@61d680a5, subgrid=[b0685083-9394-423e-9fd7-2bffcd6cb51a], arg=b0685083-9394-423e-9fd7-2bffcd6cb51a]
[14:20:43,371][INFO ][grid-uri-scanner-#683%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found deleted GAR units [uris=[file:///tmp/fa9aaa6a-7338-43ae-bb62-200aa6301d3c/p2p.gar]]
[14:20:43,373][INFO ][grid-uri-scanner-#683%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320439441, depMode=CONTINUOUS, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/b0685083-9394-423e-9fd7-2bffcd6cb51a/dirzip_p2p998565344693616667.gar/]], clsLdrId=1f0da281b31-b0685083-9394-423e-9fd7-2bffcd6cb51a, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:43,373][INFO ][grid-uri-scanner-#683%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:45,453][INFO ][test-runner][GridResourceIocSelfTest] Caught expected exception: class org.gridgain.grid.GridDeploymentException: Unknown task name or failed to auto-deploy task (was task (re|un)deployed?): org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:45,453][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=b0685083-9394-423e-9fd7-2bffcd6cb51a]
[14:20:46,509][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:46,509][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:46,515][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:07:90
[14:20:46,516][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testGarContinuousMode in 8701 ms <<<
[14:20:46,520][INFO ][main][GridResourceIocSelfTest] >>> Starting test: testGarSharedMode <<<
[14:20:46,525][INFO ][test-runner][GridResourceIocSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:46,525][INFO ][test-runner][GridResourceIocSelfTest1] << Enterprise Edition >>
[14:20:46,525][INFO ][test-runner][GridResourceIocSelfTest1] Config URL: n/a
[14:20:46,525][INFO ][test-runner][GridResourceIocSelfTest1] Daemon mode: off
[14:20:46,525][INFO ][test-runner][GridResourceIocSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:46,525][INFO ][test-runner][GridResourceIocSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:46,526][INFO ][test-runner][GridResourceIocSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:46,526][INFO ][test-runner][GridResourceIocSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:46,526][INFO ][test-runner][GridResourceIocSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:46,526][WARN ][test-runner][GridResourceIocSelfTest1] SMTP is not configured - email notifications are off.
[14:20:46,526][WARN ][test-runner][GridResourceIocSelfTest1] Cache is not configured - data grid is off.
[14:20:46,527][INFO ][test-runner][GridResourceIocSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:46,527][INFO ][test-runner][GridResourceIocSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:46,527][INFO ][test-runner][GridResourceIocSelfTest1] Enabled local MACs: C8600068582C
[14:20:47,031][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:47,036][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45280, locHost=/192.168.2.14]
[14:20:47,043][INFO ][grid-uri-scanner-#692%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found new or updated GAR units [uri=file:///tmp/8edb4288-6b88-4974-8927-ca6ae79a8a6e/p2p.gar, file=/tmp/gg.uri.deployment.tmp/a325b411-e039-4ddb-be4e-74513f7bc419/p2p8485450160477270427.gar, tstamp=1353320446000]
[14:20:47,057][INFO ][test-runner][GridResourceIocSelfTest1] Security status [authentication=on, secure-session=on]
[14:20:47,060][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:47,061][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55280
[14:20:47,061][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50028
[14:20:47,062][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a325b411-e039-4ddb-be4e-74513f7bc419, state=READY, lastHeartbeat=1353320447055, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55280, startTime=1353320447055]
[14:20:47,063][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x17008BF4]
[14:20:47,064][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:48,093][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:48,094][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:48,095][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:48,095][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:48,095][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:48,100][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Local node [ID=A325B411-E039-4DDB-BE4E-74513F7BC419, order=1353320447055]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45280 UDP:50028 TCP:55280
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:48,123][INFO ][test-runner][GridDeploymentLocalStore] User version is not explicitly defined (will use default version) [file=META-INF/gridgain.xml, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/a325b411-e039-4ddb-be4e-74513f7bc419/dirzip_p2p8485450160477270427.gar/]]]
[14:20:48,127][INFO ][gridgain-#3212%resource.GridResourceIocSelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@30c89b79, subgrid=[a325b411-e039-4ddb-be4e-74513f7bc419], arg=a325b411-e039-4ddb-be4e-74513f7bc419]
[14:20:52,078][INFO ][grid-uri-scanner-#692%resource.GridResourceIocSelfTest1][GridUriDeploymentSpi] Found deleted GAR units [uris=[file:///tmp/8edb4288-6b88-4974-8927-ca6ae79a8a6e/p2p.gar]]
[14:20:52,080][INFO ][grid-uri-scanner-#692%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320448121, depMode=SHARED, clsLdr=GridUriDeploymentClassLoader [urls=[file:/tmp/gg.uri.deployment.tmp/a325b411-e039-4ddb-be4e-74513f7bc419/dirzip_p2p8485450160477270427.gar/]], clsLdrId=a01da281b31-a325b411-e039-4ddb-be4e-74513f7bc419, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=0]
[14:20:52,080][INFO ][grid-uri-scanner-#692%resource.GridResourceIocSelfTest1][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:54,133][INFO ][test-runner][GridResourceIocSelfTest] Caught expected exception: class org.gridgain.grid.GridDeploymentException: Unknown task name or failed to auto-deploy task (was task (re|un)deployed?): org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:20:54,133][INFO ][test-runner][GridResourceIocSelfTest] >>> Stopping grid [name=resource.GridResourceIocSelfTest1, id=a325b411-e039-4ddb-be4e-74513f7bc419]
[14:20:55,189][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:20:55,189][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:20:55,196][INFO ][test-runner][GridResourceIocSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceIocSelfTest1
>>> Grid uptime: 00:00:07:101
[14:20:55,197][INFO ][main][GridResourceIocSelfTest] >>> Stopping test: testGarSharedMode in 8677 ms <<<
[14:20:55,200][INFO ][main][GridResourceUserExternalTest] >>> Starting test: testExternalResources <<<
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] << Enterprise Edition >>
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] Config URL: n/a
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] Daemon mode: off
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:55,210][INFO ][test-runner][GridResourceUserExternalTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:55,211][WARN ][test-runner][GridResourceUserExternalTest1] SMTP is not configured - email notifications are off.
[14:20:55,211][WARN ][test-runner][GridResourceUserExternalTest1] Cache is not configured - data grid is off.
[14:20:55,211][INFO ][test-runner][GridResourceUserExternalTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:55,212][INFO ][test-runner][GridResourceUserExternalTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:55,212][INFO ][test-runner][GridResourceUserExternalTest1] Enabled local MACs: C8600068582C
[14:20:55,715][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:55,726][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45290, locHost=/192.168.2.14]
[14:20:55,747][INFO ][test-runner][GridResourceUserExternalTest1] Security status [authentication=on, secure-session=on]
[14:20:55,748][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:55,748][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55290
[14:20:55,749][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50029
[14:20:55,749][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=2241ab27-6b07-4b08-a7ef-a0028129ddd4, state=READY, lastHeartbeat=1353320455746, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55290, startTime=1353320455746]
[14:20:55,750][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9F408420]
[14:20:55,750][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:56,776][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:20:56,777][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:20:56,777][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:56,777][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:56,777][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:56,780][INFO ][test-runner][GridResourceUserExternalTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceUserExternalTest1
>>> Local node [ID=2241AB27-6B07-4B08-A7EF-A0028129DDD4, order=1353320455746]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45290 UDP:50029 TCP:55290
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] << Enterprise Edition >>
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] Config URL: n/a
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] Daemon mode: off
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:20:56,781][INFO ][test-runner][GridResourceUserExternalTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:20:56,782][INFO ][test-runner][GridResourceUserExternalTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:20:56,782][WARN ][test-runner][GridResourceUserExternalTest2] SMTP is not configured - email notifications are off.
[14:20:56,782][WARN ][test-runner][GridResourceUserExternalTest2] Cache is not configured - data grid is off.
[14:20:56,782][INFO ][test-runner][GridResourceUserExternalTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:20:56,782][INFO ][test-runner][GridResourceUserExternalTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:20:56,782][INFO ][test-runner][GridResourceUserExternalTest2] Enabled local MACs: C8600068582C
[14:20:57,284][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:20:57,290][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45291, locHost=/192.168.2.14]
[14:20:57,306][INFO ][test-runner][GridResourceUserExternalTest2] Security status [authentication=on, secure-session=on]
[14:20:57,307][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:20:57,308][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55291
[14:20:57,308][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50029
[14:20:57,308][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=753f0699-7180-423f-97f7-24d2ac7a7e1d, state=READY, lastHeartbeat=1353320457306, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55291, startTime=1353320457306]
[14:20:57,309][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xED3D6DB5]
[14:20:57,309][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:20:57,314][INFO ][disco-event-worker-#3229%resource.GridResourceUserExternalTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=753f0699-7180-423f-97f7-24d2ac7a7e1d, state=READY, lastHeartbeat=1353320457306, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55291, startTime=1353320457306]
[14:20:57,314][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=2241ab27-6b07-4b08-a7ef-a0028129ddd4, state=READY, lastHeartbeat=1353320457306, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55290, startTime=1353320455746]
[14:20:57,314][INFO ][disco-event-worker-#3229%resource.GridResourceUserExternalTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xB5D3C09E]
[14:20:58,312][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xB5D3C09E]
[14:20:59,386][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:20:59,387][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:20:59,388][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:20:59,388][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:20:59,388][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:20:59,394][INFO ][test-runner][GridResourceUserExternalTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceUserExternalTest2
>>> Local node [ID=753F0699-7180-423F-97F7-24D2AC7A7E1D, order=1353320457306]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45291 UDP:50029 TCP:55291
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:20:59,404][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResource1] Deploying resource: GridUserExternalResource1 []
[14:20:59,404][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResource2] Deploying resource: GridUserExternalResource2 []
[14:20:59,404][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResource1] Deploying resource: GridUserExternalResource1 []
[14:20:59,404][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResource2] Deploying resource: GridUserExternalResource2 []
[14:20:59,405][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource1 into task: GridUserExternalResource1 []
[14:20:59,405][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource2 into task: GridUserExternalResource2 []
[14:20:59,405][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource3 into task: GridUserExternalResource1 []
[14:20:59,405][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource4 into task: GridUserExternalResource2 []
[14:20:59,405][INFO ][gridgain-#3252%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected log resource into task: GridLoggerProxy [gridName=resource.GridResourceUserExternalTest1, id8=2241ab27, gg=true]
[14:20:59,409][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource1 into job: GridUserExternalResource1 []
[14:20:59,409][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource2 into job: GridUserExternalResource2 []
[14:20:59,409][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource3 into job: GridUserExternalResource1 []
[14:20:59,410][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource4 into job: GridUserExternalResource2 []
[14:20:59,410][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource5 into job: GridUserExternalResource1 []
[14:20:59,410][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource6 into job: GridUserExternalResource2 []
[14:20:59,410][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource7 into job: GridUserExternalResource1 []
[14:20:59,410][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected shared resource8 into job: GridUserExternalResource2 []
[14:20:59,410][INFO ][gridgain-#3253%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceUserExternalTest1, id8=2241ab27, gg=true]
[14:20:59,418][INFO ][gridgain-#3255%resource.GridResourceUserExternalTest2%][GridDeploymentPerVersionStore] Task was deployed in SHARED or CONTINUOUS mode: class org.gridgain.grid.external.resource.GridUserExternalResourceTask1
[14:20:59,433][INFO ][gridgain-#3255%resource.GridResourceUserExternalTest2%][GridUserExternalResource1] Deploying resource: GridUserExternalResource1 []
[14:20:59,433][INFO ][gridgain-#3255%resource.GridResourceUserExternalTest2%][GridUserExternalResource2] Deploying resource: GridUserExternalResource2 []
[14:20:59,434][INFO ][gridgain-#3255%resource.GridResourceUserExternalTest2%][GridUserExternalResource1] Deploying resource: GridUserExternalResource1 []
[14:20:59,434][INFO ][gridgain-#3255%resource.GridResourceUserExternalTest2%][GridUserExternalResource2] Deploying resource: GridUserExternalResource2 []
[14:20:59,434][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource1 into job: GridUserExternalResource1 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource2 into job: GridUserExternalResource2 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource3 into job: GridUserExternalResource1 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource4 into job: GridUserExternalResource2 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource5 into job: GridUserExternalResource1 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource6 into job: GridUserExternalResource2 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource7 into job: GridUserExternalResource1 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected shared resource8 into job: GridUserExternalResource2 []
[14:20:59,435][INFO ][gridgain-#3266%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask1] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceUserExternalTest2, id8=753f0699, gg=true]
[14:20:59,439][INFO ][gridgain-#3268%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource1 into task: GridUserExternalResource1 []
[14:20:59,439][INFO ][gridgain-#3268%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource2 into task: GridUserExternalResource2 []
[14:20:59,439][INFO ][gridgain-#3268%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource3 into task: GridUserExternalResource1 []
[14:20:59,439][INFO ][gridgain-#3268%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource4 into task: GridUserExternalResource2 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource1 into job: GridUserExternalResource1 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource2 into job: GridUserExternalResource2 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource3 into job: GridUserExternalResource1 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource4 into job: GridUserExternalResource2 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource5 into job: GridUserExternalResource1 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource6 into job: GridUserExternalResource2 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource7 into job: GridUserExternalResource1 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected shared resource8 into job: GridUserExternalResource2 []
[14:20:59,446][INFO ][gridgain-#3270%resource.GridResourceUserExternalTest1%][GridUserExternalResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceUserExternalTest1, id8=2241ab27, gg=true]
[14:20:59,447][INFO ][gridgain-#3269%resource.GridResourceUserExternalTest2%][GridDeploymentPerVersionStore] Task was deployed in SHARED or CONTINUOUS mode: class org.gridgain.grid.external.resource.GridUserExternalResourceTask2
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource1 into job: GridUserExternalResource1 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource2 into job: GridUserExternalResource2 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource3 into job: GridUserExternalResource1 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource4 into job: GridUserExternalResource2 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource5 into job: GridUserExternalResource1 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource6 into job: GridUserExternalResource2 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource7 into job: GridUserExternalResource1 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected shared resource8 into job: GridUserExternalResource2 []
[14:20:59,454][INFO ][gridgain-#3272%resource.GridResourceUserExternalTest2%][GridUserExternalResourceTask2] Injected log resource into job: GridLoggerProxy [gridName=resource.GridResourceUserExternalTest2, id8=753f0699, gg=true]
[14:21:00,517][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:00,517][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:00,520][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=2241ab27-6b07-4b08-a7ef-a0028129ddd4, state=LEFT, lastHeartbeat=1353320460509, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55290, startTime=1353320455746]
[14:21:00,520][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xED3D6DB5]
[14:21:00,521][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridDeploymentPerVersionStore] Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.external.resource.GridUserExternalResourceTask2, alias=org.gridgain.grid.external.resource.GridUserExternalResourceTask2]
[14:21:00,521][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridDeploymentPerVersionStore] Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.external.resource.GridUserExternalResourceTask1, alias=org.gridgain.grid.external.resource.GridUserExternalResourceTask1]
[14:21:00,521][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridUserExternalResource2] Undeploying resource: GridUserExternalResource2 []
[14:21:00,521][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridUserExternalResource2] Undeploying resource: GridUserExternalResource2 []
[14:21:00,521][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridUserExternalResource1] Undeploying resource: GridUserExternalResource1 []
[14:21:00,521][INFO ][disco-event-worker-#3249%resource.GridResourceUserExternalTest2%][GridUserExternalResource1] Undeploying resource: GridUserExternalResource1 []
[14:21:00,522][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320459391, depMode=SHARED, clsLdr=org.gridgain.testframework.GridTestClassLoader@2831dd06, clsLdrId=131da281b31-2241ab27-6b07-4b08-a7ef-a0028129ddd4, userVer=0, loc=true, sampleCls=class org.gridgain.grid.external.resource.GridUserExternalResourceTask1, sampleClsName=org.gridgain.grid.external.resource.GridUserExternalResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:00,522][INFO ][test-runner][GridUserExternalResource1] Undeploying resource: GridUserExternalResource1 []
[14:21:00,522][INFO ][test-runner][GridUserExternalResource1] Undeploying resource: GridUserExternalResource1 []
[14:21:00,522][INFO ][test-runner][GridUserExternalResource2] Undeploying resource: GridUserExternalResource2 []
[14:21:00,523][INFO ][test-runner][GridUserExternalResource2] Undeploying resource: GridUserExternalResource2 []
[14:21:00,525][INFO ][test-runner][GridResourceUserExternalTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceUserExternalTest1
>>> Grid uptime: 00:00:03:746
[14:21:00,526][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:00,526][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:00,532][INFO ][test-runner][GridResourceUserExternalTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceUserExternalTest2
>>> Grid uptime: 00:00:01:138
[14:21:00,532][INFO ][main][GridResourceUserExternalTest] >>> Stopping test: testExternalResources in 5331 ms <<<
[14:21:00,536][INFO ][main][GridResourceEventFilterSelfTest] >>> Starting test: testCustomFilter1 <<<
[14:21:00,541][INFO ][test-runner][GridResourceEventFilterSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:00,541][INFO ][test-runner][GridResourceEventFilterSelfTest1] << Enterprise Edition >>
[14:21:00,541][INFO ][test-runner][GridResourceEventFilterSelfTest1] Config URL: n/a
[14:21:00,541][INFO ][test-runner][GridResourceEventFilterSelfTest1] Daemon mode: off
[14:21:00,541][INFO ][test-runner][GridResourceEventFilterSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:00,542][INFO ][test-runner][GridResourceEventFilterSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:00,542][INFO ][test-runner][GridResourceEventFilterSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:00,542][INFO ][test-runner][GridResourceEventFilterSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:00,542][INFO ][test-runner][GridResourceEventFilterSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:00,542][WARN ][test-runner][GridResourceEventFilterSelfTest1] SMTP is not configured - email notifications are off.
[14:21:00,542][WARN ][test-runner][GridResourceEventFilterSelfTest1] Cache is not configured - data grid is off.
[14:21:00,543][INFO ][test-runner][GridResourceEventFilterSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:00,543][INFO ][test-runner][GridResourceEventFilterSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:00,543][INFO ][test-runner][GridResourceEventFilterSelfTest1] Enabled local MACs: C8600068582C
[14:21:01,047][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:01,052][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45300, locHost=/192.168.2.14]
[14:21:01,068][INFO ][test-runner][GridResourceEventFilterSelfTest1] Security status [authentication=on, secure-session=on]
[14:21:01,070][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:01,070][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55300
[14:21:01,070][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50030
[14:21:01,071][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=562a9784-3dce-47d4-a330-781ce9c5ac89, state=READY, lastHeartbeat=1353320461062, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55300, startTime=1353320461062]
[14:21:01,071][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xECAAB3F8]
[14:21:01,072][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:02,097][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:02,099][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:02,099][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:02,099][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:02,099][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:02,104][INFO ][test-runner][GridResourceEventFilterSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceEventFilterSelfTest1
>>> Local node [ID=562A9784-3DCE-47D4-A330-781CE9C5AC89, order=1353320461062]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45300 UDP:50030 TCP:55300
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] << Enterprise Edition >>
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] Config URL: n/a
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] Daemon mode: off
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:02,107][INFO ][test-runner][GridResourceEventFilterSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:02,108][INFO ][test-runner][GridResourceEventFilterSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:02,108][WARN ][test-runner][GridResourceEventFilterSelfTest2] SMTP is not configured - email notifications are off.
[14:21:02,108][WARN ][test-runner][GridResourceEventFilterSelfTest2] Cache is not configured - data grid is off.
[14:21:02,109][INFO ][test-runner][GridResourceEventFilterSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:02,109][INFO ][test-runner][GridResourceEventFilterSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:02,109][INFO ][test-runner][GridResourceEventFilterSelfTest2] Enabled local MACs: C8600068582C
[14:21:02,613][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:02,618][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45301, locHost=/192.168.2.14]
[14:21:02,635][INFO ][test-runner][GridResourceEventFilterSelfTest2] Security status [authentication=on, secure-session=on]
[14:21:02,637][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:02,637][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55301
[14:21:02,637][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50030
[14:21:02,637][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=7f5a3489-fc7f-4833-91d5-c6f467d1f380, state=READY, lastHeartbeat=1353320462633, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55301, startTime=1353320462633]
[14:21:02,638][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x334224D6]
[14:21:02,639][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:02,643][INFO ][disco-event-worker-#3288%resource.GridResourceEventFilterSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=7f5a3489-fc7f-4833-91d5-c6f467d1f380, state=READY, lastHeartbeat=1353320462633, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55301, startTime=1353320462633]
[14:21:02,643][INFO ][disco-event-worker-#3308%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=562a9784-3dce-47d4-a330-781ce9c5ac89, state=READY, lastHeartbeat=1353320462633, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55300, startTime=1353320461062]
[14:21:02,643][INFO ][disco-event-worker-#3288%resource.GridResourceEventFilterSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xDBC57739]
[14:21:03,641][INFO ][disco-event-worker-#3308%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xDBC57739]
[14:21:04,716][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:04,717][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:04,718][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:04,718][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:04,718][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:04,723][INFO ][test-runner][GridResourceEventFilterSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceEventFilterSelfTest2
>>> Local node [ID=7F5A3489-FC7F-4833-91D5-C6F467D1F380, order=1353320462633]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45301 UDP:50030 TCP:55301
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:04,745][INFO ][gridgain-#3318%resource.GridResourceEventFilterSelfTest1%][GridResourceEventFilterSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@2a9a0033
[14:21:04,746][INFO ][gridgain-#3319%resource.GridResourceEventFilterSelfTest2%][GridResourceEventFilterSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@64832a1e
[14:21:04,756][INFO ][test-runner][GridResourceEventFilterSelfTest] >>> Stopping grid [name=resource.GridResourceEventFilterSelfTest1, id=562a9784-3dce-47d4-a330-781ce9c5ac89]
[14:21:05,811][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:05,812][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:05,814][INFO ][disco-event-worker-#3308%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=562a9784-3dce-47d4-a330-781ce9c5ac89, state=LEFT, lastHeartbeat=1353320465805, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55300, startTime=1353320461062]
[14:21:05,815][INFO ][disco-event-worker-#3308%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x334224D6]
[14:21:05,817][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320464717, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=c71da281b31-562a9784-3dce-47d4-a330-781ce9c5ac89, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:05,817][INFO ][test-runner][GridResourceEventFilterSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@2a9a0033
[14:21:05,819][INFO ][test-runner][GridResourceEventFilterSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceEventFilterSelfTest1
>>> Grid uptime: 00:00:03:716
[14:21:05,820][INFO ][test-runner][GridResourceEventFilterSelfTest] >>> Stopping grid [name=resource.GridResourceEventFilterSelfTest2, id=7f5a3489-fc7f-4833-91d5-c6f467d1f380]
[14:21:05,820][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:05,820][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:05,825][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320464727, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=481da281b31-7f5a3489-fc7f-4833-91d5-c6f467d1f380, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:05,825][INFO ][test-runner][GridResourceEventFilterSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@64832a1e
[14:21:05,827][INFO ][test-runner][GridResourceEventFilterSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceEventFilterSelfTest2
>>> Grid uptime: 00:00:01:108
[14:21:05,827][INFO ][main][GridResourceEventFilterSelfTest] >>> Stopping test: testCustomFilter1 in 5291 ms <<<
[14:21:05,831][INFO ][main][GridResourceEventFilterSelfTest] >>> Starting test: testCustomFilter2 <<<
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] << Enterprise Edition >>
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] Config URL: n/a
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] Daemon mode: off
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:05,836][INFO ][test-runner][GridResourceEventFilterSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:05,837][INFO ][test-runner][GridResourceEventFilterSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:05,837][WARN ][test-runner][GridResourceEventFilterSelfTest1] SMTP is not configured - email notifications are off.
[14:21:05,837][WARN ][test-runner][GridResourceEventFilterSelfTest1] Cache is not configured - data grid is off.
[14:21:05,837][INFO ][test-runner][GridResourceEventFilterSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:05,838][INFO ][test-runner][GridResourceEventFilterSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:05,838][INFO ][test-runner][GridResourceEventFilterSelfTest1] Enabled local MACs: C8600068582C
[14:21:06,342][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:06,347][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45300, locHost=/192.168.2.14]
[14:21:06,364][INFO ][test-runner][GridResourceEventFilterSelfTest1] Security status [authentication=on, secure-session=on]
[14:21:06,366][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:06,366][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55300
[14:21:06,367][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50030
[14:21:06,367][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=cdd4a51b-55ab-4048-8d03-bd61bb325a98, state=READY, lastHeartbeat=1353320466359, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55300, startTime=1353320466359]
[14:21:06,367][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9A14DBB]
[14:21:06,368][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:07,394][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:07,395][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:07,395][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:07,395][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:07,395][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:07,398][INFO ][test-runner][GridResourceEventFilterSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceEventFilterSelfTest1
>>> Local node [ID=CDD4A51B-55AB-4048-8D03-BD61BB325A98, order=1353320466359]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45300 UDP:50030 TCP:55300
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:07,399][INFO ][test-runner][GridResourceEventFilterSelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:07,399][INFO ][test-runner][GridResourceEventFilterSelfTest2] << Enterprise Edition >>
[14:21:07,399][INFO ][test-runner][GridResourceEventFilterSelfTest2] Config URL: n/a
[14:21:07,399][INFO ][test-runner][GridResourceEventFilterSelfTest2] Daemon mode: off
[14:21:07,400][INFO ][test-runner][GridResourceEventFilterSelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:07,400][INFO ][test-runner][GridResourceEventFilterSelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:07,400][INFO ][test-runner][GridResourceEventFilterSelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:07,400][INFO ][test-runner][GridResourceEventFilterSelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:07,400][INFO ][test-runner][GridResourceEventFilterSelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:07,400][WARN ][test-runner][GridResourceEventFilterSelfTest2] SMTP is not configured - email notifications are off.
[14:21:07,400][WARN ][test-runner][GridResourceEventFilterSelfTest2] Cache is not configured - data grid is off.
[14:21:07,401][INFO ][test-runner][GridResourceEventFilterSelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:07,401][INFO ][test-runner][GridResourceEventFilterSelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:07,401][INFO ][test-runner][GridResourceEventFilterSelfTest2] Enabled local MACs: C8600068582C
[14:21:07,903][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:07,908][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45301, locHost=/192.168.2.14]
[14:21:07,952][INFO ][test-runner][GridResourceEventFilterSelfTest2] Security status [authentication=on, secure-session=on]
[14:21:07,955][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:07,956][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55301
[14:21:07,956][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50030
[14:21:07,957][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1955d921-9f0b-4330-b5bc-d0fccfa85b59, state=READY, lastHeartbeat=1353320467950, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55301, startTime=1353320467950]
[14:21:07,958][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xADCF27C1]
[14:21:07,959][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:07,964][INFO ][disco-event-worker-#3336%resource.GridResourceEventFilterSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=1955d921-9f0b-4330-b5bc-d0fccfa85b59, state=READY, lastHeartbeat=1353320467950, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55301, startTime=1353320467950]
[14:21:07,964][INFO ][disco-event-worker-#3356%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=cdd4a51b-55ab-4048-8d03-bd61bb325a98, state=READY, lastHeartbeat=1353320467960, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55300, startTime=1353320466359]
[14:21:07,964][INFO ][disco-event-worker-#3336%resource.GridResourceEventFilterSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xA56636A5]
[14:21:08,961][INFO ][disco-event-worker-#3356%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xA56636A5]
[14:21:10,036][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:10,037][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:10,038][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:10,038][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:10,038][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:10,043][INFO ][test-runner][GridResourceEventFilterSelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceEventFilterSelfTest2
>>> Local node [ID=1955D921-9F0B-4330-B5BC-D0FCCFA85B59, order=1353320467950]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45301 UDP:50030 TCP:55301
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:10,054][INFO ][gridgain-#3366%resource.GridResourceEventFilterSelfTest1%][GridResourceEventFilterSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@17278332
[14:21:10,055][INFO ][gridgain-#3366%resource.GridResourceEventFilterSelfTest1%][GridResourceEventFilterSelfTest$CustomEventFilter2] Received task event: [evt=GridTaskEvent [taskName=name, taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sesId=aa1da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, nodeId8=cdd4a51b, msg=Task started., type=TASK_STARTED, tstamp=1353320470034]]
[14:21:10,055][INFO ][gridgain-#3366%resource.GridResourceEventFilterSelfTest1%][GridResourceEventFilterSelfTest$CustomEventFilter2] Received task event: [evt=GridTaskEvent [taskName=name, taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sesId=aa1da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, nodeId8=cdd4a51b, msg=Task reduced., type=TASK_REDUCED, tstamp=1353320470044]]
[14:21:10,055][INFO ][gridgain-#3366%resource.GridResourceEventFilterSelfTest1%][GridResourceEventFilterSelfTest$CustomEventFilter2] Received task event: [evt=GridTaskEvent [taskName=name, taskClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sesId=aa1da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, nodeId8=cdd4a51b, msg=Task finished., type=TASK_FINISHED, tstamp=1353320470044]]
[14:21:10,055][INFO ][gridgain-#3367%resource.GridResourceEventFilterSelfTest2%][GridResourceEventFilterSelfTest$UserResource1] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@ec38731
[14:21:10,056][INFO ][test-runner][GridResourceEventFilterSelfTest] >>> Stopping grid [name=resource.GridResourceEventFilterSelfTest1, id=cdd4a51b-55ab-4048-8d03-bd61bb325a98]
[14:21:11,111][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:11,112][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:11,114][INFO ][disco-event-worker-#3356%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=cdd4a51b-55ab-4048-8d03-bd61bb325a98, state=LEFT, lastHeartbeat=1353320471112, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55300, startTime=1353320466359]
[14:21:11,115][INFO ][disco-event-worker-#3356%resource.GridResourceEventFilterSelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xADCF27C1]
[14:21:11,118][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320470034, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=aa1da281b31-cdd4a51b-55ab-4048-8d03-bd61bb325a98, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:11,118][INFO ][test-runner][GridResourceEventFilterSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@17278332
[14:21:11,120][INFO ][test-runner][GridResourceEventFilterSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceEventFilterSelfTest1
>>> Grid uptime: 00:00:03:717
[14:21:11,121][INFO ][test-runner][GridResourceEventFilterSelfTest] >>> Stopping grid [name=resource.GridResourceEventFilterSelfTest2, id=1955d921-9f0b-4330-b5bc-d0fccfa85b59]
[14:21:11,121][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:11,121][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:11,126][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320470044, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=6b1da281b31-1955d921-9f0b-4330-b5bc-d0fccfa85b59, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:11,126][INFO ][test-runner][GridResourceEventFilterSelfTest$UserResource1] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceEventFilterSelfTest$UserResource1@ec38731
[14:21:11,128][INFO ][test-runner][GridResourceEventFilterSelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceEventFilterSelfTest2
>>> Grid uptime: 00:00:01:88
[14:21:11,129][INFO ][main][GridResourceEventFilterSelfTest] >>> Stopping test: testCustomFilter2 in 5298 ms <<<
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0] << Enterprise Edition >>
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0] Config URL: n/a
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0] Daemon mode: off
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:11,137][INFO ][main][GridLoggerInjectionSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:11,138][INFO ][main][GridLoggerInjectionSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:11,138][INFO ][main][GridLoggerInjectionSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:11,138][WARN ][main][GridLoggerInjectionSelfTest0] SMTP is not configured - email notifications are off.
[14:21:11,138][WARN ][main][GridLoggerInjectionSelfTest0] Cache is not configured - data grid is off.
[14:21:11,138][INFO ][main][GridLoggerInjectionSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:11,139][INFO ][main][GridLoggerInjectionSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:11,139][INFO ][main][GridLoggerInjectionSelfTest0] Enabled local MACs: C8600068582C
[14:21:11,643][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:11,648][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45310, locHost=/192.168.2.14]
[14:21:11,683][INFO ][main][GridLoggerInjectionSelfTest0] Security status [authentication=on, secure-session=on]
[14:21:11,686][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:11,687][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55310
[14:21:11,687][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50031
[14:21:11,688][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=22961bc0-36fe-451d-9bac-f2d89d71a69d, state=READY, lastHeartbeat=1353320471686, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55310, startTime=1353320471676]
[14:21:11,689][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2E474A50]
[14:21:11,690][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:12,722][INFO ][main][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:12,723][INFO ][main][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:12,723][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:12,723][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:12,723][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:12,726][INFO ][main][GridLoggerInjectionSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridLoggerInjectionSelfTest0
>>> Local node [ID=22961BC0-36FE-451D-9BAC-F2D89D71A69D, order=1353320471676]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45310 UDP:50031 TCP:55310
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] << Enterprise Edition >>
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] Config URL: n/a
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] Daemon mode: off
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:12,727][INFO ][main][GridLoggerInjectionSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:12,727][WARN ][main][GridLoggerInjectionSelfTest1] SMTP is not configured - email notifications are off.
[14:21:12,727][WARN ][main][GridLoggerInjectionSelfTest1] Cache is not configured - data grid is off.
[14:21:12,728][INFO ][main][GridLoggerInjectionSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:12,728][INFO ][main][GridLoggerInjectionSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:12,728][INFO ][main][GridLoggerInjectionSelfTest1] Enabled local MACs: C8600068582C
[14:21:13,230][INFO ][main][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:13,236][INFO ][main][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45311, locHost=/192.168.2.14]
[14:21:13,255][INFO ][main][GridLoggerInjectionSelfTest1] Security status [authentication=on, secure-session=on]
[14:21:13,257][WARN ][main][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:13,257][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55311
[14:21:13,257][INFO ][main][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50031
[14:21:13,258][INFO ][main][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=80927476-e3f6-43b8-b5fa-2369dc3b1bd6, state=READY, lastHeartbeat=1353320473256, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55311, startTime=1353320473256]
[14:21:13,258][INFO ][main][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2994E7CE]
[14:21:13,259][INFO ][main][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:13,706][INFO ][disco-event-worker-#3404%resource.GridLoggerInjectionSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=22961bc0-36fe-451d-9bac-f2d89d71a69d, state=READY, lastHeartbeat=1353320473699, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55310, startTime=1353320471676]
[14:21:13,706][INFO ][disco-event-worker-#3384%resource.GridLoggerInjectionSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=80927476-e3f6-43b8-b5fa-2369dc3b1bd6, state=READY, lastHeartbeat=1353320473256, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55311, startTime=1353320473256]
[14:21:13,706][INFO ][disco-event-worker-#3384%resource.GridLoggerInjectionSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x4AD8AC01]
[14:21:14,262][INFO ][disco-event-worker-#3404%resource.GridLoggerInjectionSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x4AD8AC01]
[14:21:15,339][WARN ][main][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:15,339][WARN ][main][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:15,340][INFO ][main][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:15,340][INFO ][main][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:15,340][INFO ][main][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:15,345][INFO ][main][GridLoggerInjectionSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridLoggerInjectionSelfTest1
>>> Local node [ID=80927476-E3F6-43B8-B5FA-2369DC3B1BD6, order=1353320473256]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45311 UDP:50031 TCP:55311
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:15,345][INFO ][main][GridLoggerInjectionSelfTest] >>> Starting test: testClosureField <<<
[14:21:15,358][INFO ][main][GridLoggerInjectionSelfTest] >>> Stopping test: testClosureField in 13 ms <<<
[14:21:15,361][INFO ][main][GridLoggerInjectionSelfTest] >>> Starting test: testClosureMethod <<<
[14:21:15,368][INFO ][main][GridLoggerInjectionSelfTest] >>> Stopping test: testClosureMethod in 7 ms <<<
[14:21:15,371][INFO ][main][GridLoggerInjectionSelfTest] >>> Starting test: testStringCategory <<<
[14:21:15,376][INFO ][main][GridLoggerInjectionSelfTest] >>> Stopping test: testStringCategory in 5 ms <<<
[14:21:15,376][INFO ][main][GridLoggerInjectionSelfTest] >>> Stopping grid [name=resource.GridLoggerInjectionSelfTest0, id=22961bc0-36fe-451d-9bac-f2d89d71a69d]
[14:21:16,434][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:16,434][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:16,437][INFO ][disco-event-worker-#3404%resource.GridLoggerInjectionSelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=22961bc0-36fe-451d-9bac-f2d89d71a69d, state=LEFT, lastHeartbeat=1353320476428, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55310, startTime=1353320471676]
[14:21:16,437][INFO ][disco-event-worker-#3404%resource.GridLoggerInjectionSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2994E7CE]
[14:21:16,439][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320475341, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=7d1da281b31-22961bc0-36fe-451d-9bac-f2d89d71a69d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridLoggerInjectionSelfTest$1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridLoggerInjectionSelfTest$1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:16,441][INFO ][main][GridLoggerInjectionSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridLoggerInjectionSelfTest0
>>> Grid uptime: 00:00:03:715
[14:21:16,441][INFO ][main][GridLoggerInjectionSelfTest] >>> Stopping grid [name=resource.GridLoggerInjectionSelfTest1, id=80927476-e3f6-43b8-b5fa-2369dc3b1bd6]
[14:21:16,442][INFO ][main][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:16,442][INFO ][main][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:16,447][INFO ][main][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320475351, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=ed1da281b31-80927476-e3f6-43b8-b5fa-2369dc3b1bd6, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridLoggerInjectionSelfTest$1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridLoggerInjectionSelfTest$1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:16,448][INFO ][main][GridLoggerInjectionSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridLoggerInjectionSelfTest1
>>> Grid uptime: 00:00:01:107
[14:21:16,452][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testNodeLeftInSharedMode <<<
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:16,457][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:16,458][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:16,458][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:16,458][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:16,459][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:16,459][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:16,962][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:16,968][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:17,023][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:17,026][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:17,026][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:17,027][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:17,028][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=15eacc95-ca7a-46ad-96ce-bef277bdbd79, state=READY, lastHeartbeat=1353320477022, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320477022]
[14:21:17,029][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x44734490]
[14:21:17,030][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:18,055][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:18,056][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:18,056][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:18,056][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:18,057][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:18,059][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=15EACC95-CA7A-46AD-96CE-BEF277BDBD79, order=1353320477022]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:18,060][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:18,060][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:21:18,060][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:21:18,060][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:21:18,060][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:18,060][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:18,061][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:18,061][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:18,061][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:18,061][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:21:18,061][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:21:18,061][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:18,061][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:18,061][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:21:18,563][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:18,569][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:21:18,586][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:21:18,588][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:18,588][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:21:18,588][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:18,588][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=f3e0e674-d1ab-41dc-b2b6-831c1ed68e31, state=READY, lastHeartbeat=1353320478584, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320478584]
[14:21:18,589][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8B276B56]
[14:21:18,590][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:19,043][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=15eacc95-ca7a-46ad-96ce-bef277bdbd79, state=READY, lastHeartbeat=1353320479037, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320477022]
[14:21:19,043][INFO ][disco-event-worker-#3439%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=f3e0e674-d1ab-41dc-b2b6-831c1ed68e31, state=READY, lastHeartbeat=1353320478584, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320478584]
[14:21:19,043][INFO ][disco-event-worker-#3439%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xFE2BB894]
[14:21:19,592][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xFE2BB894]
[14:21:20,666][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:20,672][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:20,673][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:20,673][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:20,673][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:20,678][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=F3E0E674-D1AB-41DC-B2B6-831C1ED68E31, order=1353320478584]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] << Enterprise Edition >>
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Config URL: n/a
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Daemon mode: off
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Language runtime: Java Platform API Specification ver. 1.6
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:20,681][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:20,681][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest3] SMTP is not configured - email notifications are off.
[14:21:20,681][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest3] Cache is not configured - data grid is off.
[14:21:20,682][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:20,683][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:20,683][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Enabled local MACs: C8600068582C
[14:21:21,186][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:21,192][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45322, locHost=/192.168.2.14]
[14:21:21,207][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3] Security status [authentication=on, secure-session=on]
[14:21:21,209][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:21,209][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55322
[14:21:21,210][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:21,210][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=d6aee9e2-0b75-4625-a952-24e2dc068b95, state=READY, lastHeartbeat=1353320481205, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55322, startTime=1353320481205]
[14:21:21,210][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8C822052]
[14:21:21,212][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:21,610][INFO ][disco-event-worker-#3476%resource.GridResourceConcurrentUndeploySelfTest3%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=f3e0e674-d1ab-41dc-b2b6-831c1ed68e31, state=READY, lastHeartbeat=1353320481598, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320478584]
[14:21:21,610][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d6aee9e2-0b75-4625-a952-24e2dc068b95, state=READY, lastHeartbeat=1353320481205, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55322, startTime=1353320481205]
[14:21:21,611][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0x301A7EE2]
[14:21:22,059][INFO ][disco-event-worker-#3439%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d6aee9e2-0b75-4625-a952-24e2dc068b95, state=READY, lastHeartbeat=1353320481205, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55322, startTime=1353320481205]
[14:21:22,059][INFO ][disco-event-worker-#3439%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0x301A7EE2]
[14:21:22,214][INFO ][disco-event-worker-#3476%resource.GridResourceConcurrentUndeploySelfTest3%][GridDiscoveryManager] Topology snapshot [nodes=3, CPUs=4, hash=0x301A7EE2]
[14:21:22,215][INFO ][disco-event-worker-#3476%resource.GridResourceConcurrentUndeploySelfTest3%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=15eacc95-ca7a-46ad-96ce-bef277bdbd79, state=READY, lastHeartbeat=1353320482051, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320477022]
[14:21:23,295][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:23,295][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:23,296][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:23,296][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:23,296][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:23,301][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest3
>>> Local node [ID=D6AEE9E2-0B75-4625-A952-24E2DC068B95, order=1353320481205]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45322 UDP:50032 TCP:55322
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:23,306][INFO ][gridgain-#3480%resource.GridResourceConcurrentUndeploySelfTest3%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@6f893d41
[14:21:23,306][INFO ][gridgain-#3479%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@1b14af9c
[14:21:23,316][INFO ][gridgain-#3481%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@7f6538dd
[14:21:23,316][INFO ][gridgain-#3481%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@4e787682
[14:21:23,317][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:23,318][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:23,319][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=d6aee9e2-0b75-4625-a952-24e2dc068b95, state=LEFT, lastHeartbeat=1353320483310, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55322, startTime=1353320481205]
[14:21:23,319][INFO ][disco-event-worker-#3439%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=d6aee9e2-0b75-4625-a952-24e2dc068b95, state=LEFT, lastHeartbeat=1353320483310, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55322, startTime=1353320481205]
[14:21:23,319][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xFE2BB894]
[14:21:23,319][INFO ][disco-event-worker-#3439%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xFE2BB894]
[14:21:23,320][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320483300, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=a42da281b31-d6aee9e2-0b75-4625-a952-24e2dc068b95, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask2, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask2, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:23,320][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@6f893d41
[14:21:23,321][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest3]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest3
>>> Grid uptime: 00:00:00:31
[14:21:23,822][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest] Waiting for task to complete...
[14:21:24,879][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:24,880][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:24,882][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=15eacc95-ca7a-46ad-96ce-bef277bdbd79, state=LEFT, lastHeartbeat=1353320484872, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320477022]
[14:21:24,883][INFO ][disco-event-worker-#3459%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x8B276B56]
[14:21:24,886][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320483300, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=642da281b31-15eacc95-ca7a-46ad-96ce-bef277bdbd79, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:24,886][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@1b14af9c
[14:21:24,888][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:06:832
[14:21:24,889][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:24,889][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:24,893][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320483310, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=152da281b31-f3e0e674-d1ab-41dc-b2b6-831c1ed68e31, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:24,894][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@7f6538dd
[14:21:24,894][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@4e787682
[14:21:24,896][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:04:221
[14:21:24,896][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testNodeLeftInSharedMode in 8444 ms <<<
[14:21:24,901][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testLocalNodePrivateMode <<<
[14:21:24,906][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:24,906][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:24,906][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:24,906][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:24,907][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:24,907][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:24,907][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:24,907][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:24,907][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:24,907][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:24,907][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:24,908][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:24,908][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:24,908][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:25,412][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:25,417][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:25,434][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:25,436][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:25,436][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:25,436][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:25,437][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=2b4a66b0-ed06-4ea4-b0bd-3dd5b9b4820f, state=READY, lastHeartbeat=1353320485436, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320485426]
[14:21:25,437][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xCD09992E]
[14:21:25,438][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:26,464][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:26,465][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:26,466][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:26,466][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:26,466][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:26,469][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=2B4A66B0-ED06-4EA4-B0BD-3DD5B9B4820F, order=1353320485426]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:26,471][INFO ][gridgain-#3508%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@273a28ac
[14:21:26,472][INFO ][gridgain-#3508%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@437f26c
[14:21:26,473][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320486463, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d62da281b31-2b4a66b0-ed06-4ea4-b0bd-3dd5b9b4820f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=2]
[14:21:26,473][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:26,473][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest] Received task result.
[14:21:26,474][INFO ][gridgain-#3509%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@437f26c
[14:21:26,474][INFO ][gridgain-#3509%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@273a28ac
[14:21:28,032][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:28,032][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:28,038][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:01:571
[14:21:28,039][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testLocalNodePrivateMode in 3138 ms <<<
[14:21:28,042][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testLocalNodeIsolatedMode <<<
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:28,047][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:28,048][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:28,048][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:28,048][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:28,049][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:28,049][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:28,552][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:28,558][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:28,576][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:28,578][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:28,578][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:28,579][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:28,579][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=fb61e320-fa0c-4420-9d61-c511f6db10f9, state=READY, lastHeartbeat=1353320488578, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320488578]
[14:21:28,579][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x5FB2AB42]
[14:21:28,580][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:29,607][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:29,608][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:29,608][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:29,608][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:29,608][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:29,611][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=FB61E320-FA0C-4420-9D61-C511F6DB10F9, order=1353320488578]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:29,614][INFO ][gridgain-#3530%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@7684fe50
[14:21:29,615][INFO ][gridgain-#3530%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@765722bb
[14:21:29,616][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320489604, depMode=ISOLATED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d72da281b31-fb61e320-fa0c-4420-9d61-c511f6db10f9, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=2]
[14:21:29,616][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:29,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest] Received task result.
[14:21:29,616][INFO ][gridgain-#3531%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@765722bb
[14:21:29,616][INFO ][gridgain-#3531%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@7684fe50
[14:21:31,171][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:31,171][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:31,177][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:01:570
[14:21:31,178][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testLocalNodeIsolatedMode in 3136 ms <<<
[14:21:31,181][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testLocalNodeContinuousMode <<<
[14:21:31,185][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:31,185][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:31,185][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:31,186][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:31,186][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:31,186][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:31,186][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:31,186][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:31,186][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:31,186][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:31,186][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:31,187][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:31,187][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:31,187][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:31,691][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:31,696][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:31,714][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:31,716][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:31,716][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:31,716][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:31,717][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=64e8643f-d386-4902-8612-09f437c4f4a0, state=READY, lastHeartbeat=1353320491708, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320491708]
[14:21:31,717][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9E6AEE1E]
[14:21:31,718][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:32,744][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:32,746][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:32,746][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:32,746][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:32,746][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:32,748][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=64E8643F-D386-4902-8612-09F437C4F4A0, order=1353320491708]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:32,751][INFO ][gridgain-#3552%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@319f93f
[14:21:32,752][INFO ][gridgain-#3552%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@62db88a8
[14:21:32,752][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320492746, depMode=CONTINUOUS, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d82da281b31-64e8643f-d386-4902-8612-09f437c4f4a0, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=2]
[14:21:32,753][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:32,753][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest] Received task result.
[14:21:32,753][INFO ][gridgain-#3553%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@62db88a8
[14:21:32,753][INFO ][gridgain-#3553%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@319f93f
[14:21:34,310][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:34,310][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:34,317][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:01:561
[14:21:34,317][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testLocalNodeContinuousMode in 3136 ms <<<
[14:21:34,320][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testLocalNodeSharedMode <<<
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:34,325][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:34,325][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:34,326][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:34,326][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:34,327][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:34,327][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:34,830][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:34,835][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:34,892][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:34,895][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:34,895][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:34,895][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:34,896][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=74f42af4-0beb-4b30-98f7-30cc6cbb73eb, state=READY, lastHeartbeat=1353320494891, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320494891]
[14:21:34,896][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xD68AD99B]
[14:21:34,897][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:35,924][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:35,925][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:35,925][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:35,925][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:35,925][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:35,930][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=74F42AF4-0BEB-4B30-98F7-30CC6CBB73EB, order=1353320494891]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:35,932][INFO ][gridgain-#3574%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@38d86f38
[14:21:35,932][INFO ][gridgain-#3574%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@462bcc14
[14:21:35,933][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320495929, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d92da281b31-74f42af4-0beb-4b30-98f7-30cc6cbb73eb, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=2]
[14:21:35,933][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:35,933][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest] Received task result.
[14:21:35,934][INFO ][gridgain-#3575%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@462bcc14
[14:21:35,934][INFO ][gridgain-#3575%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@38d86f38
[14:21:37,490][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:37,490][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:37,497][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:01:560
[14:21:37,497][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testLocalNodeSharedMode in 3177 ms <<<
[14:21:37,501][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testRemoteNodePrivateMode <<<
[14:21:37,505][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:37,505][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:37,505][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:37,505][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:37,506][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:37,506][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:37,506][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:37,506][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:37,506][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:37,506][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:37,506][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:37,507][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:37,507][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:37,507][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:38,011][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:38,016][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:38,034][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:38,036][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:38,037][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:38,037][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:38,037][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=cba75239-41e2-4eda-b1ff-434f0bf99041, state=READY, lastHeartbeat=1353320498033, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320498033]
[14:21:38,038][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x993BCF14]
[14:21:38,039][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:39,071][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:39,072][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:39,073][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:39,073][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:39,073][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:39,075][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=CBA75239-41E2-4EDA-B1FF-434F0BF99041, order=1353320498033]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:39,076][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:39,077][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:21:39,077][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:21:39,077][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:39,078][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:39,078][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:21:39,580][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:39,585][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:21:39,604][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:21:39,606][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:39,607][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:21:39,607][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:39,607][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1918e1a8-42f6-4076-a673-1ae6a41cde84, state=READY, lastHeartbeat=1353320499604, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320499604]
[14:21:39,608][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x661BBFA0]
[14:21:39,609][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:39,614][INFO ][disco-event-worker-#3590%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=1918e1a8-42f6-4076-a673-1ae6a41cde84, state=READY, lastHeartbeat=1353320499604, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320499604]
[14:21:39,614][INFO ][disco-event-worker-#3610%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=cba75239-41e2-4eda-b1ff-434f0bf99041, state=READY, lastHeartbeat=1353320499604, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320498033]
[14:21:39,614][INFO ][disco-event-worker-#3590%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x54112ABC]
[14:21:40,611][INFO ][disco-event-worker-#3610%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x54112ABC]
[14:21:41,686][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:41,687][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:41,687][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:41,687][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:41,687][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:41,692][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=1918E1A8-42F6-4076-A673-1AE6A41CDE84, order=1353320499604]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:41,695][INFO ][gridgain-#3613%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@1d0b4719
[14:21:41,696][INFO ][gridgain-#3614%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:41,699][INFO ][gridgain-#3614%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@1531043f
[14:21:41,699][INFO ][gridgain-#3614%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@450dcef7
[14:21:41,699][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320501688, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=bb2da281b31-cba75239-41e2-4eda-b1ff-434f0bf99041, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]
[14:21:41,700][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:41,700][INFO ][gridgain-#3616%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320501688, depMode=PRIVATE, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=0c2da281b31-1918e1a8-42f6-4076-a673-1ae6a41cde84, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:41,700][INFO ][gridgain-#3616%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:41,701][INFO ][gridgain-#3616%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Undeployed Private or Isolated deployment: IsolatedDeployment [sndNodeId=cba75239-41e2-4eda-b1ff-434f0bf99041, super=GridDeployment [ts=1353320501688, depMode=PRIVATE, clsLdr=GridDeploymentClassLoader [id=bb2da281b31-cba75239-41e2-4eda-b1ff-434f0bf99041, singleNode=true, nodeLdrMap={cba75239-41e2-4eda-b1ff-434f0bf99041=bb2da281b31-cba75239-41e2-4eda-b1ff-434f0bf99041}, p2pTimeout=10000, usrVer=0, depMode=PRIVATE, quiet=false], clsLdrId=bb2da281b31-cba75239-41e2-4eda-b1ff-434f0bf99041, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]]
[14:21:41,701][INFO ][gridgain-#3616%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, alias=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1]
[14:21:42,701][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@1d0b4719
[14:21:42,702][INFO ][gridgain-#3615%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@1531043f
[14:21:42,702][INFO ][gridgain-#3615%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@450dcef7
[14:21:44,256][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:44,257][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:44,259][INFO ][disco-event-worker-#3610%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=cba75239-41e2-4eda-b1ff-434f0bf99041, state=LEFT, lastHeartbeat=1353320504257, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320498033]
[14:21:44,259][INFO ][disco-event-worker-#3610%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x661BBFA0]
[14:21:44,263][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:187
[14:21:44,264][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:44,264][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:44,269][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:02:579
[14:21:44,270][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testRemoteNodePrivateMode in 6769 ms <<<
[14:21:44,274][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testRemoteNodeIsolatedMode <<<
[14:21:44,278][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:44,278][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:44,278][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:44,278][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:44,279][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:44,279][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:44,279][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:44,279][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:44,279][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:44,279][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:44,279][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:44,280][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:44,280][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:44,280][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:44,784][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:44,789][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:44,807][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:44,810][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:44,811][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:44,811][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:44,812][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=2f7194b6-bd1c-4ccd-805c-e40112d9e83d, state=READY, lastHeartbeat=1353320504811, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320504801]
[14:21:44,813][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x1B7DC33F]
[14:21:44,813][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:45,837][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:45,838][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:45,839][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:45,839][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:45,839][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:45,844][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=2F7194B6-BD1C-4CCD-805C-E40112D9E83D, order=1353320504801]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:45,847][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:45,847][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:21:45,847][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:21:45,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:45,849][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:45,849][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:21:46,352][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:46,358][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:21:46,375][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:21:46,376][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:46,377][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:21:46,377][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:46,377][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=5b8cd84a-047f-4752-bd3c-3bdd75fe116b, state=READY, lastHeartbeat=1353320506371, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320506371]
[14:21:46,377][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x1CACF96D]
[14:21:46,378][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:46,383][INFO ][disco-event-worker-#3633%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=5b8cd84a-047f-4752-bd3c-3bdd75fe116b, state=READY, lastHeartbeat=1353320506371, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320506371]
[14:21:46,383][INFO ][disco-event-worker-#3653%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=2f7194b6-bd1c-4ccd-805c-e40112d9e83d, state=READY, lastHeartbeat=1353320506371, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320504801]
[14:21:46,383][INFO ][disco-event-worker-#3633%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xEAD72F68]
[14:21:47,381][INFO ][disco-event-worker-#3653%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xEAD72F68]
[14:21:48,457][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:48,458][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:48,459][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:48,459][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:48,459][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:48,464][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=5B8CD84A-047F-4752-BD3C-3BDD75FE116B, order=1353320506371]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:48,466][INFO ][gridgain-#3656%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@2c6f264b
[14:21:48,468][INFO ][gridgain-#3657%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:48,470][INFO ][gridgain-#3657%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@5556532a
[14:21:48,471][INFO ][gridgain-#3657%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@166e162b
[14:21:48,471][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320508456, depMode=ISOLATED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=7e2da281b31-2f7194b6-bd1c-4ccd-805c-e40112d9e83d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]
[14:21:48,471][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:48,472][INFO ][gridgain-#3659%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320508466, depMode=ISOLATED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=ce2da281b31-5b8cd84a-047f-4752-bd3c-3bdd75fe116b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=0]
[14:21:48,472][INFO ][gridgain-#3659%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:48,472][INFO ][gridgain-#3659%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Undeployed Private or Isolated deployment: IsolatedDeployment [sndNodeId=2f7194b6-bd1c-4ccd-805c-e40112d9e83d, super=GridDeployment [ts=1353320508466, depMode=ISOLATED, clsLdr=GridDeploymentClassLoader [id=7e2da281b31-2f7194b6-bd1c-4ccd-805c-e40112d9e83d, singleNode=true, nodeLdrMap={2f7194b6-bd1c-4ccd-805c-e40112d9e83d=7e2da281b31-2f7194b6-bd1c-4ccd-805c-e40112d9e83d}, p2pTimeout=10000, usrVer=0, depMode=ISOLATED, quiet=false], clsLdrId=7e2da281b31-2f7194b6-bd1c-4ccd-805c-e40112d9e83d, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]]
[14:21:48,472][INFO ][gridgain-#3659%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, alias=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1]
[14:21:49,473][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@2c6f264b
[14:21:49,473][INFO ][gridgain-#3658%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@5556532a
[14:21:49,474][INFO ][gridgain-#3658%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@166e162b
[14:21:51,029][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:51,029][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:51,033][INFO ][disco-event-worker-#3653%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=2f7194b6-bd1c-4ccd-805c-e40112d9e83d, state=LEFT, lastHeartbeat=1353320511024, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320504801]
[14:21:51,033][INFO ][disco-event-worker-#3653%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x1CACF96D]
[14:21:51,036][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:196
[14:21:51,037][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:51,037][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:51,042][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:02:578
[14:21:51,043][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testRemoteNodeIsolatedMode in 6769 ms <<<
[14:21:51,046][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testRemoteNodeContinuousMode <<<
[14:21:51,051][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:51,051][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:51,051][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:51,051][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:51,052][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:51,052][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:51,052][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:51,052][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:51,052][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:51,052][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:51,052][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:51,053][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:51,053][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:51,053][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:51,556][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:51,562][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:51,579][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:51,580][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:51,581][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:51,581][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:51,581][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=d9c4835f-d916-4dba-bda6-f14b74792cb4, state=READY, lastHeartbeat=1353320511578, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320511578]
[14:21:51,582][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xC560749A]
[14:21:51,582][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:52,607][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:52,609][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:52,609][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:52,609][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:52,609][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:52,614][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=D9C4835F-D916-4DBA-BDA6-F14B74792CB4, order=1353320511578]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:52,615][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:52,615][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:21:52,615][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:21:52,615][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:21:52,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:52,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:52,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:52,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:52,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:52,616][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:21:52,616][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:21:52,616][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:52,617][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:52,617][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:21:53,120][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:53,126][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:21:53,168][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:21:53,171][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:53,172][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:21:53,172][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:53,173][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=079d20a4-4aaf-4af5-89cb-f317d561744f, state=READY, lastHeartbeat=1353320513170, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320513170]
[14:21:53,174][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x52ECD5E6]
[14:21:53,174][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:53,180][INFO ][disco-event-worker-#3676%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=079d20a4-4aaf-4af5-89cb-f317d561744f, state=READY, lastHeartbeat=1353320513170, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320513170]
[14:21:53,180][INFO ][disco-event-worker-#3696%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d9c4835f-d916-4dba-bda6-f14b74792cb4, state=READY, lastHeartbeat=1353320513170, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320511578]
[14:21:53,180][INFO ][disco-event-worker-#3676%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x9CA385FA]
[14:21:54,177][INFO ][disco-event-worker-#3696%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x9CA385FA]
[14:21:55,255][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:21:55,256][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:21:55,256][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:55,256][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:55,256][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:55,261][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=079D20A4-4AAF-4AF5-89CB-F317D561744F, order=1353320513170]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:55,264][INFO ][gridgain-#3699%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@1b787d50
[14:21:55,268][INFO ][gridgain-#3700%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@63b8dfe8
[14:21:55,268][INFO ][gridgain-#3700%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@7e742b7d
[14:21:55,269][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320515255, depMode=CONTINUOUS, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=313da281b31-d9c4835f-d916-4dba-bda6-f14b74792cb4, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]
[14:21:55,269][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:55,270][INFO ][gridgain-#3702%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320515265, depMode=CONTINUOUS, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=813da281b31-079d20a4-4aaf-4af5-89cb-f317d561744f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]
[14:21:55,270][INFO ][gridgain-#3702%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:21:56,270][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@1b787d50
[14:21:56,271][INFO ][gridgain-#3701%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@63b8dfe8
[14:21:56,271][INFO ][gridgain-#3701%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@7e742b7d
[14:21:57,825][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:57,826][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:57,828][INFO ][disco-event-worker-#3696%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=d9c4835f-d916-4dba-bda6-f14b74792cb4, state=LEFT, lastHeartbeat=1353320517823, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320511578]
[14:21:57,828][INFO ][disco-event-worker-#3696%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x52ECD5E6]
[14:21:57,832][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:217
[14:21:57,833][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:21:57,833][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:21:57,839][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:02:579
[14:21:57,839][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testRemoteNodeContinuousMode in 6793 ms <<<
[14:21:57,843][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testRemoteNodeSharedMode <<<
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:57,848][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:57,848][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:21:57,848][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:21:57,849][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:57,849][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:57,849][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:21:58,353][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:58,358][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:21:58,377][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:21:58,378][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:58,378][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:21:58,379][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:58,379][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=690b0d0e-61b6-4785-bb8f-9f734ee35e7d, state=READY, lastHeartbeat=1353320518377, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320518377]
[14:21:58,380][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xBFBA2B1F]
[14:21:58,381][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:21:59,407][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:21:59,409][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:21:59,409][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:21:59,409][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:21:59,409][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:21:59,411][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=690B0D0E-61B6-4785-BB8F-9F734EE35E7D, order=1353320518377]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:21:59,413][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:21:59,413][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:21:59,413][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:21:59,414][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:21:59,414][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:21:59,414][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:21:59,916][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:21:59,921][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:21:59,948][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:21:59,951][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:21:59,952][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:21:59,952][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:21:59,953][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=e7d55baa-aa1f-4d82-bc8a-8ea1bd139a6e, state=READY, lastHeartbeat=1353320519948, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320519948]
[14:21:59,954][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x90C1436E]
[14:21:59,954][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:00,398][INFO ][disco-event-worker-#3739%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=690b0d0e-61b6-4785-bb8f-9f734ee35e7d, state=READY, lastHeartbeat=1353320520392, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320518377]
[14:22:00,398][INFO ][disco-event-worker-#3719%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=e7d55baa-aa1f-4d82-bc8a-8ea1bd139a6e, state=READY, lastHeartbeat=1353320519948, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320519948]
[14:22:00,399][INFO ][disco-event-worker-#3719%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x88771B9C]
[14:22:00,957][INFO ][disco-event-worker-#3739%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x88771B9C]
[14:22:02,035][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:02,036][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:02,036][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:02,036][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:02,036][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:02,041][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=E7D55BAA-AA1F-4D82-BC8A-8EA1BD139A6E, order=1353320519948]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:02,044][INFO ][gridgain-#3742%resource.GridResourceConcurrentUndeploySelfTest1%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@12d3f4c0
[14:22:02,048][INFO ][gridgain-#3743%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@72015d2e
[14:22:02,048][INFO ][gridgain-#3743%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Deploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@378cb17b
[14:22:02,049][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320522033, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=d33da281b31-690b0d0e-61b6-4785-bb8f-9f734ee35e7d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]
[14:22:02,049][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:22:02,050][INFO ][gridgain-#3745%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320522043, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=243da281b31-e7d55baa-aa1f-4d82-bc8a-8ea1bd139a6e, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, sampleClsName=org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1, undeployed=true, pendingUndeploy=false, usage=1]
[14:22:02,050][INFO ][gridgain-#3745%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResourceTask1
[14:22:03,050][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@12d3f4c0
[14:22:03,051][INFO ][gridgain-#3744%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource2] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource2@72015d2e
[14:22:03,051][INFO ][gridgain-#3744%resource.GridResourceConcurrentUndeploySelfTest2%][GridResourceConcurrentUndeploySelfTest$UserResource] Undeploying resource: org.gridgain.grid.kernal.processors.resource.GridResourceConcurrentUndeploySelfTest$UserResource@378cb17b
[14:22:04,606][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:04,606][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:04,608][INFO ][disco-event-worker-#3739%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=690b0d0e-61b6-4785-bb8f-9f734ee35e7d, state=LEFT, lastHeartbeat=1353320524601, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320518377]
[14:22:04,609][INFO ][disco-event-worker-#3739%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x90C1436E]
[14:22:04,612][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:207
[14:22:04,613][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:04,613][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:04,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:02:578
[14:22:04,619][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testRemoteNodeSharedMode in 6776 ms <<<
[14:22:04,622][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testP2PRemoteNodePrivateMode <<<
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:04,627][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:04,627][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:22:04,627][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:22:04,628][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:04,629][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:04,629][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:22:05,132][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:05,137][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:22:05,156][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:22:05,158][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:05,158][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:22:05,158][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:05,159][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b9e4cc11-8803-4dac-ae65-59c831f4d01d, state=READY, lastHeartbeat=1353320525155, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320525155]
[14:22:05,159][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xE314AE70]
[14:22:05,160][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:06,192][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:06,193][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:06,193][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:06,193][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:06,193][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:06,198][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=B9E4CC11-8803-4DAC-AE65-59C831F4D01D, order=1353320525155]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:06,201][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:06,201][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:22:06,201][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:22:06,202][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:06,203][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:06,203][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:22:06,706][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:06,712][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:22:06,729][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:22:06,730][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:06,730][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:22:06,731][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:06,731][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=d830c11e-f834-41e6-bd12-1bc2dbf7305b, state=READY, lastHeartbeat=1353320526726, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320526726]
[14:22:06,731][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x888DE2F1]
[14:22:06,732][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:06,738][INFO ][disco-event-worker-#3762%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=d830c11e-f834-41e6-bd12-1bc2dbf7305b, state=READY, lastHeartbeat=1353320526726, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320526726]
[14:22:06,738][INFO ][disco-event-worker-#3782%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=b9e4cc11-8803-4dac-ae65-59c831f4d01d, state=READY, lastHeartbeat=1353320526726, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320525155]
[14:22:06,738][INFO ][disco-event-worker-#3762%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xE5935109]
[14:22:07,735][INFO ][disco-event-worker-#3782%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xE5935109]
[14:22:08,810][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:08,811][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:08,811][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:08,811][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:08,811][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:08,816][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=D830C11E-F834-41E6-BD12-1BC2DBF7305B, order=1353320526726]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:08,821][INFO ][gridgain-#3785%resource.GridResourceConcurrentUndeploySelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@6e3a5c6c, subgrid=[b9e4cc11-8803-4dac-ae65-59c831f4d01d, d830c11e-f834-41e6-bd12-1bc2dbf7305b], arg=[Ljava.lang.Object;@3989eefd]
[14:22:08,831][INFO ][gridgain-#3786%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:08,839][INFO ][gridgain-#3793%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Running job on node: d830c11e-f834-41e6-bd12-1bc2dbf7305b
[14:22:09,820][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320528811, depMode=PRIVATE, clsLdr=java.net.URLClassLoader@6cf81c97, clsLdrId=863da281b31-b9e4cc11-8803-4dac-ae65-59c831f4d01d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]
[14:22:09,820][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:09,820][INFO ][gridgain-#3794%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Undeployed Private or Isolated deployment: IsolatedDeployment [sndNodeId=b9e4cc11-8803-4dac-ae65-59c831f4d01d, super=GridDeployment [ts=1353320528821, depMode=PRIVATE, clsLdr=GridDeploymentClassLoader [id=863da281b31-b9e4cc11-8803-4dac-ae65-59c831f4d01d, singleNode=true, nodeLdrMap={b9e4cc11-8803-4dac-ae65-59c831f4d01d=863da281b31-b9e4cc11-8803-4dac-ae65-59c831f4d01d}, p2pTimeout=10000, usrVer=0, depMode=PRIVATE, quiet=false], clsLdrId=863da281b31-b9e4cc11-8803-4dac-ae65-59c831f4d01d, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]]
[14:22:09,820][INFO ][gridgain-#3794%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, alias=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1]
[14:22:10,321][INFO ][gridgain-#3793%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Job has been cancelled. Caught exception: java.lang.InterruptedException: sleep interrupted
[14:22:11,820][INFO ][grid-connector-jetty-binder-#3783%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:22:11,820][INFO ][grid-connector-jetty-binder-#3783%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:22:11,876][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:11,876][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:11,878][INFO ][disco-event-worker-#3782%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=b9e4cc11-8803-4dac-ae65-59c831f4d01d, state=LEFT, lastHeartbeat=1353320531872, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320525155]
[14:22:11,878][INFO ][disco-event-worker-#3782%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x888DE2F1]
[14:22:11,882][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:690
[14:22:12,938][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:12,938][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:12,944][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:04:129
[14:22:12,945][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testP2PRemoteNodePrivateMode in 8323 ms <<<
[14:22:12,948][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testP2PRemoteNodeIsolatedMode <<<
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:12,953][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:12,953][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:22:12,953][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:22:12,954][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:12,955][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:12,955][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:22:13,458][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:13,464][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:22:13,479][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:22:13,481][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:13,481][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:22:13,481][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:13,482][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, state=READY, lastHeartbeat=1353320533473, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320533473]
[14:22:13,482][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xE6B37342]
[14:22:13,483][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:14,509][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:14,511][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:14,511][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:14,511][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:14,511][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:14,516][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=2C5C6FCE-C1C3-472F-8F74-EFBAC3FB70A5, order=1353320533473]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:14,519][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:14,519][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:22:14,519][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:22:14,521][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:14,521][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:14,521][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:22:15,025][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:15,030][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:22:15,058][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:22:15,061][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:15,062][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:22:15,062][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:15,063][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1e6cb277-1465-4835-ac47-b832373cb77e, state=READY, lastHeartbeat=1353320535056, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320535056]
[14:22:15,064][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xBB6D8855]
[14:22:15,064][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:15,507][INFO ][disco-event-worker-#3831%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, state=READY, lastHeartbeat=1353320535500, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320533473]
[14:22:15,507][INFO ][disco-event-worker-#3811%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=1e6cb277-1465-4835-ac47-b832373cb77e, state=READY, lastHeartbeat=1353320535056, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320535056]
[14:22:15,508][INFO ][disco-event-worker-#3811%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x2B5E6E2B]
[14:22:16,067][INFO ][disco-event-worker-#3831%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x2B5E6E2B]
[14:22:17,144][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:17,145][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:17,146][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:17,146][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:17,146][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:17,151][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=1E6CB277-1465-4835-AC47-B832373CB77E, order=1353320535056]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:17,155][INFO ][gridgain-#3834%resource.GridResourceConcurrentUndeploySelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@6623094, subgrid=[1e6cb277-1465-4835-ac47-b832373cb77e, 2c5c6fce-c1c3-472f-8f74-efbac3fb70a5], arg=[Ljava.lang.Object;@186347d2]
[14:22:17,164][INFO ][gridgain-#3835%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was deployed in Private or Isolated mode: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:17,173][INFO ][gridgain-#3842%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Running job on node: 1e6cb277-1465-4835-ac47-b832373cb77e
[14:22:18,154][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320537151, depMode=ISOLATED, clsLdr=java.net.URLClassLoader@35f812b2, clsLdrId=793da281b31-2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]
[14:22:18,154][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:18,155][INFO ][gridgain-#3843%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Undeployed Private or Isolated deployment: IsolatedDeployment [sndNodeId=2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, super=GridDeployment [ts=1353320537151, depMode=ISOLATED, clsLdr=GridDeploymentClassLoader [id=793da281b31-2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, singleNode=true, nodeLdrMap={2c5c6fce-c1c3-472f-8f74-efbac3fb70a5=793da281b31-2c5c6fce-c1c3-472f-8f74-efbac3fb70a5}, p2pTimeout=10000, usrVer=0, depMode=ISOLATED, quiet=false], clsLdrId=793da281b31-2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]]
[14:22:18,155][INFO ][gridgain-#3843%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerLoaderStore] Task was undeployed in Private or Isolated mode [cls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, alias=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1]
[14:22:18,656][INFO ][gridgain-#3842%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Job has been cancelled. Caught exception: java.lang.InterruptedException: sleep interrupted
[14:22:20,154][INFO ][grid-connector-jetty-binder-#3832%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:22:20,154][INFO ][grid-connector-jetty-binder-#3832%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:22:20,210][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:20,211][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:20,213][INFO ][disco-event-worker-#3831%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=2c5c6fce-c1c3-472f-8f74-efbac3fb70a5, state=LEFT, lastHeartbeat=1353320540203, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320533473]
[14:22:20,213][INFO ][disco-event-worker-#3831%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xBB6D8855]
[14:22:20,218][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:700
[14:22:21,273][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:21,273][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:21,279][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:04:130
[14:22:21,280][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testP2PRemoteNodeIsolatedMode in 8332 ms <<<
[14:22:21,283][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testP2PRemoteNodeContinuousMode <<<
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:21,288][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:21,289][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:21,289][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:21,289][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:22:21,289][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:22:21,289][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:21,290][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:21,290][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:22:21,793][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:21,799][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:22:21,816][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:22:21,818][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:21,818][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:22:21,818][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:21,819][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=fb201571-c866-4795-8e08-de371283f4f6, state=READY, lastHeartbeat=1353320541815, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320541815]
[14:22:21,819][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xDEC7ABF6]
[14:22:21,820][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:22,845][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:22,847][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:22,847][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:22,847][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:22,847][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:22,850][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=FB201571-C866-4795-8E08-DE371283F4F6, order=1353320541815]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:22,851][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:22,851][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:22:22,851][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:22:22,852][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:22,852][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:22,852][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:22:23,354][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:23,360][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:22:23,389][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:22:23,392][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:23,392][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:22:23,393][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:23,394][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=138a27c3-72fb-42e3-a844-c14d6fa138fa, state=READY, lastHeartbeat=1353320543385, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320543385]
[14:22:23,394][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xFC5A818A]
[14:22:23,395][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:23,399][INFO ][disco-event-worker-#3860%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=138a27c3-72fb-42e3-a844-c14d6fa138fa, state=READY, lastHeartbeat=1353320543396, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320543385]
[14:22:23,399][INFO ][disco-event-worker-#3880%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=fb201571-c866-4795-8e08-de371283f4f6, state=READY, lastHeartbeat=1353320543396, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320541815]
[14:22:23,399][INFO ][disco-event-worker-#3860%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x4FCE13AB]
[14:22:24,397][INFO ][disco-event-worker-#3880%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x4FCE13AB]
[14:22:25,474][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:25,475][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:25,475][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:25,475][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:25,475][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:25,481][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=138A27C3-72FB-42E3-A844-C14D6FA138FA, order=1353320543385]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:25,485][INFO ][gridgain-#3883%resource.GridResourceConcurrentUndeploySelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@237d2cc8, subgrid=[138a27c3-72fb-42e3-a844-c14d6fa138fa, fb201571-c866-4795-8e08-de371283f4f6], arg=[Ljava.lang.Object;@6f0710ab]
[14:22:25,497][INFO ][gridgain-#3884%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerVersionStore] Task was deployed in SHARED or CONTINUOUS mode: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:25,506][INFO ][gridgain-#3893%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Running job on node: 138a27c3-72fb-42e3-a844-c14d6fa138fa
[14:22:26,484][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320545481, depMode=CONTINUOUS, clsLdr=java.net.URLClassLoader@672827fe, clsLdrId=7c3da281b31-fb201571-c866-4795-8e08-de371283f4f6, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]
[14:22:26,484][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:26,485][INFO ][gridgain-#3894%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerVersionStore] Undeployed per-version class loader: SharedDeployment [rmv=true, super=GridDeployment [ts=1353320545491, depMode=CONTINUOUS, clsLdr=GridDeploymentClassLoader [id=ec3da281b31-138a27c3-72fb-42e3-a844-c14d6fa138fa, singleNode=false, nodeLdrMap={fb201571-c866-4795-8e08-de371283f4f6=7c3da281b31-fb201571-c866-4795-8e08-de371283f4f6}, p2pTimeout=10000, usrVer=0, depMode=CONTINUOUS, quiet=false], clsLdrId=ec3da281b31-138a27c3-72fb-42e3-a844-c14d6fa138fa, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]]
[14:22:26,485][INFO ][gridgain-#3894%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerVersionStore] Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, alias=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1]
[14:22:26,985][INFO ][gridgain-#3893%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Job has been cancelled. Caught exception: java.lang.InterruptedException: sleep interrupted
[14:22:28,484][INFO ][grid-connector-jetty-binder-#3881%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:22:28,484][INFO ][grid-connector-jetty-binder-#3881%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:22:28,540][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:28,541][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:28,543][INFO ][disco-event-worker-#3880%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=fb201571-c866-4795-8e08-de371283f4f6, state=LEFT, lastHeartbeat=1353320548533, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320541815]
[14:22:28,543][INFO ][disco-event-worker-#3880%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xFC5A818A]
[14:22:28,547][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:701
[14:22:29,603][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:29,603][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:29,609][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:04:128
[14:22:29,609][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testP2PRemoteNodeContinuousMode in 8326 ms <<<
[14:22:29,613][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Starting test: testP2PRemoteNodeSharedMode <<<
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] << Enterprise Edition >>
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Config URL: n/a
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Daemon mode: off
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:29,618][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:29,618][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] SMTP is not configured - email notifications are off.
[14:22:29,618][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest1] Cache is not configured - data grid is off.
[14:22:29,619][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:29,620][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:29,620][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Enabled local MACs: C8600068582C
[14:22:30,123][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:30,128][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45320, locHost=/192.168.2.14]
[14:22:30,182][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1] Security status [authentication=on, secure-session=on]
[14:22:30,185][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:30,185][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55320
[14:22:30,185][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:30,186][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619, state=READY, lastHeartbeat=1353320550183, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320550183]
[14:22:30,186][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xB9F1C1F5]
[14:22:30,187][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:31,214][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:31,215][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:31,217][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:31,217][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:31,217][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:31,223][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Local node [ID=1663FDFD-D1C9-4C5B-A93C-99BFE5CBC619, order=1353320550183]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45320 UDP:50032 TCP:55320
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] << Enterprise Edition >>
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Config URL: n/a
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Daemon mode: off
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Language runtime: Java Platform API Specification ver. 1.6
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:31,224][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:31,225][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] SMTP is not configured - email notifications are off.
[14:22:31,225][WARN ][test-runner][GridResourceConcurrentUndeploySelfTest2] Cache is not configured - data grid is off.
[14:22:31,225][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:31,225][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:31,225][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Enabled local MACs: C8600068582C
[14:22:31,728][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:31,733][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45321, locHost=/192.168.2.14]
[14:22:31,753][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2] Security status [authentication=on, secure-session=on]
[14:22:31,755][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:31,755][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55321
[14:22:31,755][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50032
[14:22:31,756][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=ad2aba73-84c6-46d0-b958-83817004b21c, state=READY, lastHeartbeat=1353320551755, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320551745]
[14:22:31,756][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2C1DF8C6]
[14:22:31,757][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:32,204][INFO ][disco-event-worker-#3931%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619, state=READY, lastHeartbeat=1353320552199, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320550183]
[14:22:32,204][INFO ][disco-event-worker-#3911%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=ad2aba73-84c6-46d0-b958-83817004b21c, state=READY, lastHeartbeat=1353320551755, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55321, startTime=1353320551745]
[14:22:32,205][INFO ][disco-event-worker-#3911%resource.GridResourceConcurrentUndeploySelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xAD77B527]
[14:22:32,759][INFO ][disco-event-worker-#3931%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xAD77B527]
[14:22:33,835][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:33,836][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:33,836][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:33,836][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:33,836][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:33,841][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Local node [ID=AD2ABA73-84C6-46D0-B958-83817004B21C, order=1353320551745]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45321 UDP:50032 TCP:55321
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:33,845][INFO ][gridgain-#3934%resource.GridResourceConcurrentUndeploySelfTest1%][GridP2PTestTaskExternalPath1] Mapping [task=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1@229dd4d3, subgrid=[1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619, ad2aba73-84c6-46d0-b958-83817004b21c], arg=[Ljava.lang.Object;@27ff7a66]
[14:22:33,857][INFO ][gridgain-#3935%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerVersionStore] Task was deployed in SHARED or CONTINUOUS mode: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:33,866][INFO ][gridgain-#3944%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Running job on node: ad2aba73-84c6-46d0-b958-83817004b21c
[14:22:34,844][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320553841, depMode=SHARED, clsLdr=java.net.URLClassLoader@30db03a1, clsLdrId=9f3da281b31-1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619, userVer=0, loc=true, sampleCls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]
[14:22:34,844][INFO ][test-runner][GridDeploymentLocalStore] Task locally undeployed: class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1
[14:22:34,845][INFO ][gridgain-#3945%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerVersionStore] Undeployed per-version class loader: SharedDeployment [rmv=true, super=GridDeployment [ts=1353320553851, depMode=SHARED, clsLdr=GridDeploymentClassLoader [id=004da281b31-ad2aba73-84c6-46d0-b958-83817004b21c, singleNode=false, nodeLdrMap={1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619=9f3da281b31-1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619}, p2pTimeout=10000, usrVer=0, depMode=SHARED, quiet=false], clsLdrId=004da281b31-ad2aba73-84c6-46d0-b958-83817004b21c, userVer=0, loc=false, sampleCls=null, sampleClsName=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, undeployed=true, pendingUndeploy=false, usage=1]]
[14:22:34,845][INFO ][gridgain-#3945%resource.GridResourceConcurrentUndeploySelfTest2%][GridDeploymentPerVersionStore] Task was undeployed in SHARED or CONTINUOUS mode [cls=class org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1, alias=org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1]
[14:22:35,345][INFO ][gridgain-#3944%resource.GridResourceConcurrentUndeploySelfTest2%][GridP2PTestTaskExternalPath1$TestJob] Job has been cancelled. Caught exception: java.lang.InterruptedException: sleep interrupted
[14:22:36,844][INFO ][grid-connector-jetty-binder-#3932%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Jetty REST [security: off, URLs: (192.168.2.14:8080)]
[14:22:36,844][INFO ][grid-connector-jetty-binder-#3932%resource.GridResourceConcurrentUndeploySelfTest2%][GridJettyRestProtocol] Successfully started Jetty HTTP server.
[14:22:36,900][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:36,901][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:36,903][INFO ][disco-event-worker-#3931%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=1663fdfd-d1c9-4c5b-a93c-99bfe5cbc619, state=LEFT, lastHeartbeat=1353320556893, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55320, startTime=1353320550183]
[14:22:36,903][INFO ][disco-event-worker-#3931%resource.GridResourceConcurrentUndeploySelfTest2%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x2C1DF8C6]
[14:22:36,906][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest1
>>> Grid uptime: 00:00:05:682
[14:22:37,962][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:37,962][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:37,968][INFO ][test-runner][GridResourceConcurrentUndeploySelfTest2]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: resource.GridResourceConcurrentUndeploySelfTest2
>>> Grid uptime: 00:00:04:130
[14:22:37,969][INFO ][main][GridResourceConcurrentUndeploySelfTest] >>> Stopping test: testP2PRemoteNodeSharedMode in 8356 ms <<<
[14:22:37,972][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testTimeouts <<<
[14:22:37,992][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=8, endTime=1353320557987, id=324da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,004][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=43, endTime=1353320557994, id=644da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,010][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=74, endTime=1353320558002, id=564da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,010][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=51, endTime=1353320558009, id=e44da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,031][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=21, endTime=1353320558022, id=034da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,031][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=88, endTime=1353320558022, id=374da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,041][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=22, endTime=1353320558031, id=134da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,041][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=81, endTime=1353320558040, id=c64da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,053][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=47, endTime=1353320558047, id=a44da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,078][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=10, endTime=1353320558068, id=524da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,091][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=59, endTime=1353320558082, id=654da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,091][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=83, endTime=1353320558085, id=e64da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,107][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=58, endTime=1353320558099, id=554da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,107][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=76, endTime=1353320558099, id=764da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,111][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=37, endTime=1353320558105, id=044da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,124][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=55, endTime=1353320558117, id=254da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,134][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=36, endTime=1353320558126, id=f34da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,134][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=66, endTime=1353320558128, id=d54da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,141][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=92, endTime=1353320558138, id=774da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,156][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=16, endTime=1353320558148, id=b24da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,156][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=26, endTime=1353320558148, id=534da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,156][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=77, endTime=1353320558150, id=864da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,162][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=80, endTime=1353320558154, id=b64da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,184][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=29, endTime=1353320558175, id=834da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,206][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=73, endTime=1353320558197, id=464da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,206][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=94, endTime=1353320558200, id=974da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,206][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=17, endTime=1353320558202, id=c24da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,206][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=69, endTime=1353320558202, id=064da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,212][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=12, endTime=1353320558204, id=724da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,212][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=3, endTime=1353320558211, id=e14da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,223][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=15, endTime=1353320558214, id=a24da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,233][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=50, endTime=1353320558227, id=d44da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,255][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=38, endTime=1353320558246, id=144da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,266][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=13, endTime=1353320558257, id=824da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,276][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=93, endTime=1353320558272, id=874da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,282][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=86, endTime=1353320558273, id=174da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,283][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=57, endTime=1353320558282, id=454da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,303][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=0, endTime=1353320558293, id=b14da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,316][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=64, endTime=1353320558306, id=b54da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,343][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=99, endTime=1353320558339, id=e74da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,353][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=9, endTime=1353320558353, id=424da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,353][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=41, endTime=1353320558353, id=444da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,363][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=70, endTime=1353320558354, id=164da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,363][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=89, endTime=1353320558360, id=474da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,415][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=23, endTime=1353320558409, id=234da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,415][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=40, endTime=1353320558412, id=344da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,424][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=34, endTime=1353320558422, id=d34da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,434][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=42, endTime=1353320558426, id=544da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,434][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=2, endTime=1353320558428, id=d14da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,434][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=18, endTime=1353320558429, id=d24da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,444][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=54, endTime=1353320558443, id=154da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,457][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=61, endTime=1353320558447, id=854da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,467][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=1, endTime=1353320558463, id=c14da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,485][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=39, endTime=1353320558478, id=244da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,485][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=79, endTime=1353320558483, id=a64da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,494][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=27, endTime=1353320558487, id=634da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,494][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=68, endTime=1353320558490, id=f54da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,495][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=33, endTime=1353320558492, id=c34da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,505][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=24, endTime=1353320558499, id=334da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,543][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=46, endTime=1353320558533, id=944da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,553][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=19, endTime=1353320558544, id=e24da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,557][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=67, endTime=1353320558547, id=e54da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,557][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=96, endTime=1353320558553, id=b74da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,579][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=6, endTime=1353320558570, id=124da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,585][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=35, endTime=1353320558575, id=e34da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,605][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=11, endTime=1353320558598, id=624da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,617][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=75, endTime=1353320558611, id=664da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,617][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=91, endTime=1353320558613, id=674da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,635][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=30, endTime=1353320558626, id=934da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,645][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=60, endTime=1353320558640, id=754da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,645][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=53, endTime=1353320558644, id=054da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,668][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=52, endTime=1353320558659, id=f44da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,687][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=84, endTime=1353320558678, id=f64da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,687][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=72, endTime=1353320558685, id=364da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,696][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=85, endTime=1353320558694, id=074da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,706][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=32, endTime=1353320558696, id=b34da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,706][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=44, endTime=1353320558705, id=744da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,716][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=71, endTime=1353320558707, id=264da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,726][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=4, endTime=1353320558718, id=f14da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,726][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=97, endTime=1353320558721, id=c74da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,750][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=56, endTime=1353320558743, id=354da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,758][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=28, endTime=1353320558750, id=734da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,768][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=95, endTime=1353320558766, id=a74da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,778][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=14, endTime=1353320558769, id=924da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,778][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=31, endTime=1353320558776, id=a34da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,786][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=48, endTime=1353320558778, id=b44da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,786][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=20, endTime=1353320558780, id=f24da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,801][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=87, endTime=1353320558793, id=274da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,829][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=98, endTime=1353320558824, id=d74da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,843][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=5, endTime=1353320558833, id=024da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,851][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=78, endTime=1353320558844, id=964da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,857][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=45, endTime=1353320558852, id=844da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,868][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=62, endTime=1353320558866, id=954da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,880][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=7, endTime=1353320558871, id=224da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,932][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=82, endTime=1353320558923, id=d64da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,938][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=49, endTime=1353320558928, id=c44da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,938][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=90, endTime=1353320558933, id=574da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,938][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=63, endTime=1353320558936, id=a54da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,938][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=65, endTime=1353320558936, id=c54da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,956][INFO ][grid-timeout-worker-#3948%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [idx=25, endTime=1353320558946, id=434da281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:38,956][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testTimeouts in 983 ms <<<
[14:22:38,960][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testTimeoutsMultithreaded <<<
[14:22:40,481][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testTimeoutsMultithreaded in 1521 ms <<<
[14:22:40,484][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testTimeoutNeverCalled <<<
[14:22:41,489][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testTimeoutNeverCalled in 1004 ms <<<
[14:22:41,492][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testTimeoutNeverCalledMultithreaded <<<
[14:22:42,574][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testTimeoutNeverCalledMultithreaded in 1082 ms <<<
[14:22:42,577][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testAddRemoveInterleaving <<<
[14:22:43,769][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testAddRemoveInterleaving in 1191 ms <<<
[14:22:43,773][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testTimeoutCallOnce <<<
[14:22:44,345][INFO ][grid-timeout-worker-#3953%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [endTime=1353320564340, id=37e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:45,774][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testTimeoutCallOnce in 2001 ms <<<
[14:22:45,778][INFO ][main][GridTimeoutProcessorSelfTest] >>> Starting test: testTimeoutSameEndTime <<<
[14:22:46,786][INFO ][grid-timeout-worker-#3954%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [endTime=1353320566778, id=47e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:46,786][INFO ][grid-timeout-worker-#3954%null%][GridTimeoutProcessorSelfTest] Received timeout callback: Timeout test object [endTime=1353320566778, id=57e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]
[14:22:46,786][INFO ][main][GridTimeoutProcessorSelfTest] >>> Stopping test: testTimeoutSameEndTime in 1008 ms <<<
[14:22:46,789][INFO ][main][GridJobMetricsProcessorLoadTest] >>> Starting test: testJobMetricsMultiThreaded <<<
[14:22:47,175][INFO ][main][GridJobMetricsProcessorLoadTest] >>> Stopping test: testJobMetricsMultiThreaded in 386 ms <<<
[14:22:47,177][INFO ][main][GridContinuousJobAnnotationSelfTest] >>> Starting test: testContinuousJobAnnotation <<<
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] << Enterprise Edition >>
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Config URL: n/a
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Daemon mode: off
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:47,182][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:47,183][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:47,183][WARN ][test-runner][GridContinuousJobAnnotationSelfTest0] SMTP is not configured - email notifications are off.
[14:22:47,183][WARN ][test-runner][GridContinuousJobAnnotationSelfTest0] Cache is not configured - data grid is off.
[14:22:47,184][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:47,184][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:47,184][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Enabled local MACs: C8600068582C
[14:22:47,688][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:47,693][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45330, locHost=/192.168.2.14]
[14:22:47,708][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0] Security status [authentication=on, secure-session=on]
[14:22:47,710][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:47,710][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55330
[14:22:47,710][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50033
[14:22:47,711][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=8d9d13b2-b98b-4abf-9eec-e9291496fa2e, state=READY, lastHeartbeat=1353320567707, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55330, startTime=1353320567707]
[14:22:47,711][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9D6FF84]
[14:22:47,712][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:48,736][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:48,738][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:48,738][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:48,738][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:48,738][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:48,744][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousJobAnnotationSelfTest0
>>> Local node [ID=8D9D13B2-B98B-4ABF-9EEC-E9291496FA2E, order=1353320567707]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45330 UDP:50033 TCP:55330
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] << Enterprise Edition >>
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Config URL: n/a
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Daemon mode: off
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:48,746][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:48,747][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:48,747][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:48,747][WARN ][test-runner][GridContinuousJobAnnotationSelfTest1] SMTP is not configured - email notifications are off.
[14:22:48,747][WARN ][test-runner][GridContinuousJobAnnotationSelfTest1] Cache is not configured - data grid is off.
[14:22:48,748][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:48,748][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:48,748][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Enabled local MACs: C8600068582C
[14:22:49,252][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:49,257][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45331, locHost=/192.168.2.14]
[14:22:49,283][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1] Security status [authentication=on, secure-session=on]
[14:22:49,287][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:49,287][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55331
[14:22:49,287][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50033
[14:22:49,288][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=75a1d1a3-9d41-449f-8888-af1890144a2e, state=READY, lastHeartbeat=1353320569277, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55331, startTime=1353320569277]
[14:22:49,289][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xDAB33830]
[14:22:49,290][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:49,295][INFO ][disco-event-worker-#3969%kernal.GridContinuousJobAnnotationSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=75a1d1a3-9d41-449f-8888-af1890144a2e, state=READY, lastHeartbeat=1353320569287, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55331, startTime=1353320569277]
[14:22:49,295][INFO ][disco-event-worker-#3989%kernal.GridContinuousJobAnnotationSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=8d9d13b2-b98b-4abf-9eec-e9291496fa2e, state=READY, lastHeartbeat=1353320569287, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55330, startTime=1353320567707]
[14:22:49,295][INFO ][disco-event-worker-#3969%kernal.GridContinuousJobAnnotationSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x6F5A830D]
[14:22:50,292][INFO ][disco-event-worker-#3989%kernal.GridContinuousJobAnnotationSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x6F5A830D]
[14:22:51,367][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:51,368][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:51,368][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:51,368][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:51,368][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:51,373][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousJobAnnotationSelfTest1
>>> Local node [ID=75A1D1A3-9D41-449F-8888-AF1890144A2E, order=1353320569277]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45331 UDP:50033 TCP:55331
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:51,385][ERROR][gridgain-#3994%kernal.GridContinuousJobAnnotationSelfTest1%][GridJobWorker] Failed to execute job [jobId=b8e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, ses=GridJobSessionImpl [ses=GridTaskSessionImpl [taskName=o.g.g.kernal.GridContinuousJobAnnotationSelfTest$TestTask, dep=GridDeployment [ts=1353320571372, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=c8e2d281b31-75a1d1a3-9d41-449f-8888-af1890144a2e, userVer=0, loc=true, sampleCls=class o.g.g.kernal.GridContinuousJobAnnotationSelfTest$TestTask, sampleClsName=o.g.g.kernal.GridContinuousJobAnnotationSelfTest$TestTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=o.g.g.kernal.GridContinuousJobAnnotationSelfTest$TestTask, sesId=78e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320571372, endTime=9223372036854775807, taskNodeId=8d9d13b2-b98b-4abf-9eec-e9291496fa2e, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null], jobId=b8e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6]]
class org.gridgain.grid.GridException: Expected test exception.
at org.gridgain.grid.kernal.GridContinuousJobAnnotationSelfTest$TestJob.execute(GridContinuousJobAnnotationSelfTest.java:184)
at org.gridgain.grid.kernal.GridContinuousJobAnnotationSelfTest$TestJob.execute(GridContinuousJobAnnotationSelfTest.java:121)
at org.gridgain.grid.kernal.processors.job.GridJobWorker$2.call(GridJobWorker.java:473)
at org.gridgain.grid.util.GridUtils.wrapThreadLoader(GridUtils.java:5182)
at org.gridgain.grid.kernal.processors.job.GridJobWorker.execute0(GridJobWorker.java:467)
at org.gridgain.grid.kernal.processors.job.GridJobWorker.body(GridJobWorker.java:420)
at org.gridgain.grid.util.worker.GridWorker$1.run(GridWorker.java:145)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at org.gridgain.grid.util.worker.GridWorker.run(GridWorker.java:192)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
[14:22:51,390][WARN ][gridgain-#3995%kernal.GridContinuousJobAnnotationSelfTest0%][GridAlwaysFailoverSpi] Failed over job to a new node [newNode=8d9d13b2-b98b-4abf-9eec-e9291496fa2e, oldNode=75a1d1a3-9d41-449f-8888-af1890144a2e, sesId=78e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, job=o.g.g.kernal.GridContinuousJobAnnotationSelfTest$TestJob@458982a6, jobCtx=GridJobContextImpl [jobId=b8e2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={gg:failover:failednodelist=[75a1d1a3-9d41-449f-8888-af1890144a2e]}], task=o.g.g.kernal.GridContinuousJobAnnotationSelfTest$TestTask]
[14:22:51,393][INFO ][test-runner][GridContinuousJobAnnotationSelfTest] >>> Stopping grid [name=kernal.GridContinuousJobAnnotationSelfTest0, id=8d9d13b2-b98b-4abf-9eec-e9291496fa2e]
[14:22:52,448][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:52,448][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:52,450][INFO ][disco-event-worker-#3989%kernal.GridContinuousJobAnnotationSelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=8d9d13b2-b98b-4abf-9eec-e9291496fa2e, state=LEFT, lastHeartbeat=1353320572450, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55330, startTime=1353320567707]
[14:22:52,451][INFO ][disco-event-worker-#3989%kernal.GridContinuousJobAnnotationSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xDAB33830]
[14:22:52,453][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320571372, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=78e2d281b31-8d9d13b2-b98b-4abf-9eec-e9291496fa2e, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousJobAnnotationSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousJobAnnotationSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:22:52,455][INFO ][test-runner][GridContinuousJobAnnotationSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousJobAnnotationSelfTest0
>>> Grid uptime: 00:00:03:716
[14:22:52,455][INFO ][test-runner][GridContinuousJobAnnotationSelfTest] >>> Stopping grid [name=kernal.GridContinuousJobAnnotationSelfTest1, id=75a1d1a3-9d41-449f-8888-af1890144a2e]
[14:22:52,456][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:52,456][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:52,460][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320571372, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=c8e2d281b31-75a1d1a3-9d41-449f-8888-af1890144a2e, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousJobAnnotationSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousJobAnnotationSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:22:52,462][INFO ][test-runner][GridContinuousJobAnnotationSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousJobAnnotationSelfTest1
>>> Grid uptime: 00:00:01:88
[14:22:52,463][INFO ][main][GridContinuousJobAnnotationSelfTest] >>> Stopping test: testContinuousJobAnnotation in 5286 ms <<<
[14:22:52,467][INFO ][main][GridContinuousJobSiblingsSelfTest] >>> Starting test: testContinuousJobSiblings <<<
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] << Enterprise Edition >>
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Config URL: n/a
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Daemon mode: off
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:52,472][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:52,472][WARN ][test-runner][GridContinuousJobSiblingsSelfTest0] SMTP is not configured - email notifications are off.
[14:22:52,472][WARN ][test-runner][GridContinuousJobSiblingsSelfTest0] Cache is not configured - data grid is off.
[14:22:52,473][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:52,474][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:52,474][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Enabled local MACs: C8600068582C
[14:22:52,977][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:52,982][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45340, locHost=/192.168.2.14]
[14:22:52,998][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0] Security status [authentication=on, secure-session=on]
[14:22:53,000][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:53,000][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55340
[14:22:53,000][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50034
[14:22:53,001][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=c243a234-0d49-4ba1-aee4-364d9b43c615, state=READY, lastHeartbeat=1353320572994, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55340, startTime=1353320572994]
[14:22:53,001][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xFD8509]
[14:22:53,002][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:54,027][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:54,028][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:54,028][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:54,028][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:54,028][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:54,031][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousJobSiblingsSelfTest0
>>> Local node [ID=C243A234-0D49-4BA1-AEE4-364D9B43C615, order=1353320572994]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45340 UDP:50034 TCP:55340
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] << Enterprise Edition >>
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Config URL: n/a
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Daemon mode: off
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:54,032][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:54,033][WARN ][test-runner][GridContinuousJobSiblingsSelfTest1] SMTP is not configured - email notifications are off.
[14:22:54,033][WARN ][test-runner][GridContinuousJobSiblingsSelfTest1] Cache is not configured - data grid is off.
[14:22:54,033][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:54,033][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:54,034][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Enabled local MACs: C8600068582C
[14:22:54,536][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:54,542][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45341, locHost=/192.168.2.14]
[14:22:54,559][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1] Security status [authentication=on, secure-session=on]
[14:22:54,560][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:54,561][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55341
[14:22:54,561][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50034
[14:22:54,561][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b76ec664-9dd6-43d9-aaae-1504186a44a4, state=READY, lastHeartbeat=1353320574553, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55341, startTime=1353320574553]
[14:22:54,561][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x6C5B7A7B]
[14:22:54,562][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:55,014][INFO ][disco-event-worker-#4033%kernal.GridContinuousJobSiblingsSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=c243a234-0d49-4ba1-aee4-364d9b43c615, state=READY, lastHeartbeat=1353320575005, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55340, startTime=1353320572994]
[14:22:55,014][INFO ][disco-event-worker-#4013%kernal.GridContinuousJobSiblingsSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=b76ec664-9dd6-43d9-aaae-1504186a44a4, state=READY, lastHeartbeat=1353320574553, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55341, startTime=1353320574553]
[14:22:55,014][INFO ][disco-event-worker-#4013%kernal.GridContinuousJobSiblingsSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x4AFBFB14]
[14:22:55,564][INFO ][disco-event-worker-#4033%kernal.GridContinuousJobSiblingsSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x4AFBFB14]
[14:22:56,638][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:22:56,639][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:22:56,639][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:56,639][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:56,639][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:56,644][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousJobSiblingsSelfTest1
>>> Local node [ID=B76EC664-9DD6-43D9-AAAE-1504186A44A4, order=1353320574553]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45341 UDP:50034 TCP:55341
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:56,673][INFO ][test-runner][GridContinuousJobSiblingsSelfTest] >>> Stopping grid [name=kernal.GridContinuousJobSiblingsSelfTest0, id=c243a234-0d49-4ba1-aee4-364d9b43c615]
[14:22:57,728][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:57,729][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:57,731][INFO ][disco-event-worker-#4033%kernal.GridContinuousJobSiblingsSelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=c243a234-0d49-4ba1-aee4-364d9b43c615, state=LEFT, lastHeartbeat=1353320577724, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55340, startTime=1353320572994]
[14:22:57,731][INFO ][disco-event-worker-#4033%kernal.GridContinuousJobSiblingsSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x6C5B7A7B]
[14:22:57,734][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320576637, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=1be2d281b31-c243a234-0d49-4ba1-aee4-364d9b43c615, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousJobSiblingsSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousJobSiblingsSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:22:57,736][INFO ][test-runner][GridContinuousJobSiblingsSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousJobSiblingsSelfTest0
>>> Grid uptime: 00:00:03:706
[14:22:57,737][INFO ][test-runner][GridContinuousJobSiblingsSelfTest] >>> Stopping grid [name=kernal.GridContinuousJobSiblingsSelfTest1, id=b76ec664-9dd6-43d9-aaae-1504186a44a4]
[14:22:57,738][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:22:57,738][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:22:57,742][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320576647, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=6be2d281b31-b76ec664-9dd6-43d9-aaae-1504186a44a4, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousJobSiblingsSelfTest$TestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousJobSiblingsSelfTest$TestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:22:57,743][INFO ][test-runner][GridContinuousJobSiblingsSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousJobSiblingsSelfTest1
>>> Grid uptime: 00:00:01:98
[14:22:57,744][INFO ][main][GridContinuousJobSiblingsSelfTest] >>> Stopping test: testContinuousJobSiblings in 5277 ms <<<
[14:22:57,748][INFO ][main][GridContinuousTaskSelfTest] >>> Starting test: testContinuousJobsChain <<<
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] << Enterprise Edition >>
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] Config URL: n/a
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] Daemon mode: off
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:22:57,753][INFO ][test-runner][GridContinuousTaskSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:22:57,753][WARN ][test-runner][GridContinuousTaskSelfTest0] SMTP is not configured - email notifications are off.
[14:22:57,753][WARN ][test-runner][GridContinuousTaskSelfTest0] Cache is not configured - data grid is off.
[14:22:57,754][INFO ][test-runner][GridContinuousTaskSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:22:57,755][INFO ][test-runner][GridContinuousTaskSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:22:57,755][INFO ][test-runner][GridContinuousTaskSelfTest0] Enabled local MACs: C8600068582C
[14:22:58,259][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:22:58,264][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45350, locHost=/192.168.2.14]
[14:22:58,310][INFO ][test-runner][GridContinuousTaskSelfTest0] Security status [authentication=on, secure-session=on]
[14:22:58,313][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:22:58,314][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55350
[14:22:58,314][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50035
[14:22:58,315][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309]
[14:22:58,315][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xDEFFEF38]
[14:22:58,316][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:22:59,343][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:22:59,344][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:22:59,344][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:22:59,344][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:22:59,345][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:22:59,350][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Local node [ID=8F234173-56C5-4EC6-ACF1-8E542C13EB9B, order=1353320578309]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45350 UDP:50035 TCP:55350
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:22:59,352][INFO ][gridgain-#4093%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@646e30ff
[14:22:59,353][INFO ][gridgain-#4092%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1c7e9e0f
[14:22:59,354][INFO ][gridgain-#4096%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@646e30ff, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312591--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312591--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:22:59,354][INFO ][gridgain-#4097%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1c7e9e0f, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312589--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312589--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:22:59,354][INFO ][gridgain-#4096%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,354][INFO ][gridgain-#4097%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,355][INFO ][gridgain-#4100%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@218675c2, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=91f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312601--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312601--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=91f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:22:59,355][INFO ][gridgain-#4101%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@29d24c0, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b1f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312603--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312603--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b1f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:22:59,355][INFO ][gridgain-#4100%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,355][INFO ][gridgain-#4101%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,356][INFO ][gridgain-#4104%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3fc95774, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a2f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312618--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312618--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a2f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:22:59,356][INFO ][gridgain-#4105%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@53b37844, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312615--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312615--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=72f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:22:59,356][INFO ][gridgain-#4104%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,356][INFO ][gridgain-#4105%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,357][INFO ][gridgain-#4108%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@c671964, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=53f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312629--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312629--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=53f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:22:59,357][INFO ][gridgain-#4109%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@784ed4f4, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312631--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312631--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=73f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:22:59,357][INFO ][gridgain-#4108%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,357][INFO ][gridgain-#4109%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,358][INFO ][gridgain-#4112%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1eb26080, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=34f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312643--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312643--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=34f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:22:59,358][INFO ][gridgain-#4113%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@70bba159, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312646--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312646--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=64f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:22:59,358][INFO ][gridgain-#4112%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,358][INFO ][gridgain-#4113%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,359][INFO ][gridgain-#4116%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2cf6d8f3, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312657--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312657--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=15f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:22:59,359][INFO ][gridgain-#4117%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4eafd253, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=35f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312659--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312659--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=35f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:22:59,359][INFO ][gridgain-#4116%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,359][INFO ][gridgain-#4117%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,360][INFO ][gridgain-#4120%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6c7aacb6, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f5f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312671--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312671--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f5f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:22:59,360][INFO ][gridgain-#4121%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@681859ae, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312673--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312673--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=16f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:22:59,360][INFO ][gridgain-#4120%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,360][INFO ][gridgain-#4121%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,361][INFO ][gridgain-#4124%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1a552233, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312685--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312685--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:22:59,361][INFO ][gridgain-#4125%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2b7ee427, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312687--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312687--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:22:59,361][INFO ][gridgain-#4124%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,361][INFO ][gridgain-#4125%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,362][INFO ][gridgain-#4128%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@61bf38c3, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312699--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312699--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:22:59,362][INFO ][gridgain-#4129%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5127bc57, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312701--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312701--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:22:59,362][INFO ][gridgain-#4128%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,362][INFO ][gridgain-#4129%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:22:59,362][INFO ][gridgain-#4132%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@62287142, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312713--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312713--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=98f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:22:59,363][INFO ][gridgain-#4133%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@60b98842, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312715--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312715--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b8f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:22:59,363][INFO ][gridgain-#4132%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@62287142, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=98f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312713--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312713--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=98f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2cf6d8f3, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=15f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312657--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312657--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=15f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1c7e9e0f, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312589--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312589--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1a552233, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312685--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312685--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6c7aacb6, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f5f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312671--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312671--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f5f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@29d24c0, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b1f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312603--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312603--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b1f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@c671964, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=53f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312629--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312629--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=53f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1eb26080, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=34f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312643--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312643--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=34f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@61bf38c3, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312699--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312699--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3fc95774, sib=GridJobSiblingImpl [sesId=70f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a2f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312618--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312618--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a2f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:22:59,364][INFO ][gridgain-#4133%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@70bba159, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=64f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312646--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312646--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=64f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@681859ae, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=16f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312673--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312673--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=16f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@53b37844, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=72f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312615--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312615--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=72f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5127bc57, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312701--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312701--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d7f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4eafd253, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=35f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312659--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312659--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=35f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@60b98842, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b8f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312715--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312715--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b8f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@784ed4f4, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=73f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312631--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312631--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=73f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2b7ee427, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312687--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312687--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f6f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@646e30ff, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312591--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312591--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@218675c2, sib=GridJobSiblingImpl [sesId=a0f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=91f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312601--5984845937630778469--8132584538468167994, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312601--5984845937630778469--8132584538468167994, nodeId=8f234173-56c5-4ec6-acf1-8e542c13eb9b, isJobDone=true], jobCtx=GridJobContextImpl [jobId=91f2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=8f234173-56c5-4ec6-acf1-8e542c13eb9b, state=READY, lastHeartbeat=1353320578309, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320578309], p=GridNodePredicate [ids=[8f234173-56c5-4ec6-acf1-8e542c13eb9b]], isLoc=true, hash=1493461626, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:22:59,364][INFO ][test-runner][GridContinuousTaskSelfTest] >>> Stopping grid [name=kernal.GridContinuousTaskSelfTest0, id=8f234173-56c5-4ec6-acf1-8e542c13eb9b]
[14:23:00,419][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:00,419][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:00,424][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320579345, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=70f2d281b31-8f234173-56c5-4ec6-acf1-8e542c13eb9b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJobsChainTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJobsChainTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:00,426][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Grid uptime: 00:00:01:78
[14:23:00,428][INFO ][main][GridContinuousTaskSelfTest] >>> Stopping test: testContinuousJobsChain in 2680 ms <<<
[14:23:00,431][INFO ][main][GridContinuousTaskSelfTest] >>> Starting test: testContinuousJobsChainMultiThreaded <<<
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] << Enterprise Edition >>
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] Config URL: n/a
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] Daemon mode: off
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:00,436][INFO ][test-runner][GridContinuousTaskSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:00,436][WARN ][test-runner][GridContinuousTaskSelfTest0] SMTP is not configured - email notifications are off.
[14:23:00,436][WARN ][test-runner][GridContinuousTaskSelfTest0] Cache is not configured - data grid is off.
[14:23:00,437][INFO ][test-runner][GridContinuousTaskSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:00,438][INFO ][test-runner][GridContinuousTaskSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:00,438][INFO ][test-runner][GridContinuousTaskSelfTest0] Enabled local MACs: C8600068582C
[14:23:00,941][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:00,946][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45350, locHost=/192.168.2.14]
[14:23:00,970][INFO ][test-runner][GridContinuousTaskSelfTest0] Security status [authentication=on, secure-session=on]
[14:23:00,973][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:00,973][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55350
[14:23:00,973][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50035
[14:23:00,974][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970]
[14:23:00,974][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x650CDEF1]
[14:23:00,975][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:02,002][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:23:02,003][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:23:02,004][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:02,004][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:02,004][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:02,009][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Local node [ID=491012B7-8B88-4017-8050-E6E7951B4CD7, order=1353320580970]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45350 UDP:50035 TCP:55350
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:02,011][INFO ][test-runner][GridContinuousTaskSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:02,011][INFO ][test-runner][GridContinuousTaskSelfTest1] << Enterprise Edition >>
[14:23:02,011][INFO ][test-runner][GridContinuousTaskSelfTest1] Config URL: n/a
[14:23:02,011][INFO ][test-runner][GridContinuousTaskSelfTest1] Daemon mode: off
[14:23:02,012][INFO ][test-runner][GridContinuousTaskSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:23:02,012][INFO ][test-runner][GridContinuousTaskSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:02,012][INFO ][test-runner][GridContinuousTaskSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:02,012][INFO ][test-runner][GridContinuousTaskSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:02,012][INFO ][test-runner][GridContinuousTaskSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:02,012][WARN ][test-runner][GridContinuousTaskSelfTest1] SMTP is not configured - email notifications are off.
[14:23:02,012][WARN ][test-runner][GridContinuousTaskSelfTest1] Cache is not configured - data grid is off.
[14:23:02,013][INFO ][test-runner][GridContinuousTaskSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:02,013][INFO ][test-runner][GridContinuousTaskSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:02,013][INFO ][test-runner][GridContinuousTaskSelfTest1] Enabled local MACs: C8600068582C
[14:23:02,517][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:02,522][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45351, locHost=/192.168.2.14]
[14:23:02,537][INFO ][test-runner][GridContinuousTaskSelfTest1] Security status [authentication=on, secure-session=on]
[14:23:02,539][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:02,539][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55351
[14:23:02,539][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50035
[14:23:02,540][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320582531, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531]
[14:23:02,540][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9FEC6DCA]
[14:23:02,541][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:02,990][INFO ][disco-event-worker-#4168%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320582985, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970]
[14:23:02,990][INFO ][disco-event-worker-#4148%kernal.GridContinuousTaskSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320582541, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531]
[14:23:02,991][INFO ][disco-event-worker-#4148%kernal.GridContinuousTaskSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x20CC2C5E]
[14:23:03,544][INFO ][disco-event-worker-#4168%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x20CC2C5E]
[14:23:04,622][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:23:04,623][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:23:04,624][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:04,624][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:04,624][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:04,629][INFO ][test-runner][GridContinuousTaskSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousTaskSelfTest1
>>> Local node [ID=A0E61EF5-08B2-4F74-B563-AB0637A4999D, order=1353320582531]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45351 UDP:50035 TCP:55351
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:04,633][INFO ][gridgain-#4175%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4f7ac47d
[14:23:04,633][INFO ][gridgain-#4176%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2e2f24b2
[14:23:04,636][INFO ][gridgain-#4182%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@595ecef1
[14:23:04,636][INFO ][gridgain-#4174%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@187e7156
[14:23:04,637][INFO ][gridgain-#4185%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@77f17cac
[14:23:04,637][INFO ][gridgain-#4180%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@37c30f16
[14:23:04,637][INFO ][gridgain-#4183%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4f50a843
[14:23:04,637][INFO ][gridgain-#4188%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@187e7156, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312803--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312803--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,638][INFO ][gridgain-#4172%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@55d2facd
[14:23:04,638][INFO ][gridgain-#4187%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1c069a3b
[14:23:04,638][INFO ][gridgain-#4173%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50d87e1d
[14:23:04,640][INFO ][gridgain-#4191%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@30abb0d1
[14:23:04,640][INFO ][gridgain-#4171%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@deb3f16
[14:23:04,640][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50d87e1d, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312768--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312768--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,640][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,641][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@595ecef1, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312812--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312812--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,641][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,642][INFO ][gridgain-#4202%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f88d6cc
[14:23:04,642][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4f7ac47d, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bcf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312779--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312779--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bcf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,642][INFO ][gridgain-#4205%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5cb7bc5e
[14:23:04,642][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@37c30f16, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312815--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312815--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,642][INFO ][gridgain-#4206%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3c46191a
[14:23:04,643][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2e2f24b2, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ecf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312782--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312782--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ecf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,643][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,643][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,644][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,644][INFO ][gridgain-#4213%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4f50a843, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312817--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312817--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,644][INFO ][gridgain-#4213%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,644][INFO ][gridgain-#4212%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Will return job as map() result: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6771881d
[14:23:04,645][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@13e0c7c6, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312869--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312869--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,645][INFO ][gridgain-#4218%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@55d2facd, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312773--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312773--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,646][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,646][INFO ][gridgain-#4178%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f62406
[14:23:04,646][INFO ][gridgain-#4218%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,646][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@295f65d, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312882--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312882--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,646][INFO ][gridgain-#4179%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2fd34d70
[14:23:04,646][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,646][INFO ][gridgain-#4177%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@681ea816
[14:23:04,647][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4882790f, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312898--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312898--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,647][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,647][INFO ][gridgain-#4181%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper: org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1542d1aa
[14:23:04,648][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f62406, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312788--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312788--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,648][INFO ][gridgain-#4188%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,648][INFO ][gridgain-#4236%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2fd34d70, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312793--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312793--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,649][INFO ][gridgain-#4236%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,649][INFO ][gridgain-#4239%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@681ea816, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312798--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312798--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=edf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,649][INFO ][gridgain-#4239%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,650][INFO ][gridgain-#4244%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@77f17cac, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312823--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312823--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,650][INFO ][gridgain-#4244%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,651][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,651][INFO ][gridgain-#4245%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@30abb0d1, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c003d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312844--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312844--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c003d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,651][INFO ][gridgain-#4249%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f88d6cc, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312866--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312866--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,651][INFO ][gridgain-#4245%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,651][INFO ][gridgain-#4249%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,652][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1542d1aa, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312805--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312805--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,652][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,652][INFO ][gridgain-#4255%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@72a06ae5, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312945--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312945--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,653][INFO ][gridgain-#4257%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6e4884c1, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312981--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312981--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,653][INFO ][gridgain-#4255%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,653][INFO ][gridgain-#4257%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,653][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@75a882c8, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312828--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312828--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,654][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@deb3f16, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312774--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312774--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,654][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,654][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6cc96edc, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312848--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312848--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,655][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,655][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,655][INFO ][gridgain-#4265%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6771881d, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312903--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312903--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,655][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1e1a18e0, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312878--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312878--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,655][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5b03d377, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312983--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312983--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,655][INFO ][gridgain-#4265%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,655][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,655][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,656][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@63264c15, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2c03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313026--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313026--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2c03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,656][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@56b69014, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312860--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312860--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,656][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@344bc831, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313035--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313035--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bc03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,656][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,656][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,657][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1c069a3b, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312831--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312831--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,657][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,657][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,657][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@477fcc08, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313047--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313047--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7d03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,657][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ba0879e, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ad03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313050--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313050--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ad03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,658][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,658][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,659][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5cb7bc5e, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312875--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312875--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,659][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1f5eee43, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313069--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313069--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=de03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,659][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,659][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@bc2d982, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313077--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313077--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5f03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,659][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,659][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,660][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3c46191a, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312880--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312880--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=1]
[14:23:04,660][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,660][INFO ][gridgain-#4292%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@557a7e58, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312908--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312908--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,660][INFO ][gridgain-#4294%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@18cbc321, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312920--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312920--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,661][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@65415df3, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312912--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312912--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,661][INFO ][gridgain-#4294%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,661][INFO ][gridgain-#4292%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,661][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,661][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4bae24fa, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313129--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313129--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,662][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4863aac5, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312926--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312926--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,662][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,662][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f0965c3, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313133--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313133--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,662][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4a3bee68, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3313d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313139--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313139--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3313d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,662][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,662][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,662][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4ed1bfbb, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312950--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312950--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,663][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@376f5445, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312965--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312965--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,663][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,663][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,663][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@8cf3c8b, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313007--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313007--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fa03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,663][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5b69443b, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313012--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313012--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,663][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,663][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,664][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@625afdbb, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313023--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313023--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fb03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,664][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@676dff14, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dd03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313053--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313053--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=dd03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,664][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,664][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,664][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7859bd10, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313015--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313015--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,664][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@600f57c, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313067--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313067--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=be03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,664][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5926674b, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312973--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312973--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,665][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@17a99d84, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313094--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313094--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,664][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,664][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,665][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,665][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,666][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@290e2a5, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313182--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313182--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,666][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@760fbff3, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313184--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313184--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,666][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4032713, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313188--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313188--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,666][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,666][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,666][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6afa5273, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313193--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313193--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,666][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,665][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@116c80cc, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313071--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313071--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fe03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,666][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,666][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,666][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3e9f67a9, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313203--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313203--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,667][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1cc274b1, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313209--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313209--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,667][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,666][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@583b32e3, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313195--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313195--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,665][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1ec0cd51, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313106--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313106--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,667][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,667][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,667][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,667][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,667][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50809fe7, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313113--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313113--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,667][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3c154eca, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313111--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313111--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,668][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,668][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,668][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@600bf773, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313121--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313121--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=2]
[14:23:04,668][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@dabd032, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313241--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313241--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,668][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,668][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,668][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@24978ca1, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313246--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313246--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,668][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@15ccc9fe, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313239--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313239--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,669][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,669][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,669][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@924bda5, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313266--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313266--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,669][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6865dc1d, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313285--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313285--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,669][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,669][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5d3c2160, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313291--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313291--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bc13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,670][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@591a1a0c, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313092--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313092--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,669][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,670][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,670][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@168a0256, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313201--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313201--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,670][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,670][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1077ad47, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ec13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313294--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313294--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ec13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,670][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@494add9e, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fd13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313311--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313311--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fd13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=3]
[14:23:04,670][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,670][INFO ][gridgain-#4197%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,670][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,671][INFO ][gridgain-#4236%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3b5c1e53, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313354--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313354--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,671][INFO ][gridgain-#4236%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,672][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@18b4f7d3, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313169--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313169--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,672][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,672][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ed5f0ae, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313336--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313336--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,672][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2a51fe90, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313343--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313343--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ff13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,672][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,672][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,672][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5991b0cb, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313252--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313252--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,673][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2379b45d, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313345--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313345--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,673][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,673][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,673][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3953b26a, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313350--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313350--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,673][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4e5522ea, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313362--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313362--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,673][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,673][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,674][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1e354bed, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313256--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313256--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,674][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@37e14de0, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ea13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313262--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313262--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ea13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,674][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,674][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@271d0217, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313364--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313364--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,674][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1605c2fe, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ab13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313274--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313274--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ab13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,674][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7e257a35, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3423d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313411--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313411--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3423d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@45ae4bf4, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313433--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313433--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1a01f0f1, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313452--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313452--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=c623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@540c5dd9, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9723d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313465--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313465--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9723d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@432a3a81, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1823d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313473--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313473--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1823d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@172b7441, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313173--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313173--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@201271b8, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313503--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313503--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,673][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1ccaf997, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313359--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313359--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@76cddfef, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9a23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313513--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313513--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9a23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,675][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@d08ef8e, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313493--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313493--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@462900d8, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313519--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313519--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fa23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,676][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@417879d5, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313522--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313522--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5a538aa7, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313544--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313544--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,676][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2ec279b, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313529--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313529--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3b026fb6, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313533--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313533--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=db23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,676][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6bc7f017, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313542--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313542--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,677][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2ca040f1, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313552--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313552--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ef9b079, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313568--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313568--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,677][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4cb9e129, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313572--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313572--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@15c453d8, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313599--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313599--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=ff23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,677][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3672b6f9, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313584--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313584--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7db53de9, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313588--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313588--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,677][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@35b29303, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313608--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313608--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,677][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1dfd457b, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313613--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313613--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,678][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7c317e8a, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313445--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313445--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,678][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@77f485f7, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313626--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313626--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,678][INFO ][gridgain-#4213%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3e889928, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4333d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313652--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313652--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4333d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,678][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4213%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,675][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5359aded, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313427--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313427--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,675][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1e769d32, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313282--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313282--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,674][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2168745c, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5e13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313317--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313317--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5e13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,678][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,679][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7d98127e, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313670--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313670--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,679][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1d5edc65, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313684--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313684--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,679][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@432e2d1a, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313674--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313674--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,679][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,679][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,679][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@47b29e8f, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313711--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313711--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,679][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1fc7e30f, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313713--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313713--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,679][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,679][INFO ][gridgain-#4275%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,679][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4e5522ea, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313362--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313362--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1f5eee43, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313069--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313069--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=de03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7d98127e, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313670--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313670--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3c154eca, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313111--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313111--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@56b69014, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312860--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312860--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1077ad47, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ec13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313294--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313294--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ec13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1dfd457b, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313613--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313613--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6bc7f017, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313542--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313542--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@595ecef1, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312812--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312812--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@432a3a81, sib=GridJobSiblingImpl [sesId=5df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1823d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313473--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313473--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1823d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,679][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@44ba10b3, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313727--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313727--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,679][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@139e7b05, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313729--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313729--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@99e8f53, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313735--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313735--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,680][INFO ][gridgain-#4281%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4032713, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313188--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313188--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@44ba10b3, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313727--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313727--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4cb9e129, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313572--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313572--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@d08ef8e, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313493--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313493--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@77f485f7, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313626--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313626--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4882790f, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312898--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312898--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1e354bed, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313256--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313256--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4f50a843, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312817--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312817--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1d5edc65, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313684--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313684--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4863aac5, sib=GridJobSiblingImpl [sesId=9bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312926--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312926--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5fef84ad, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313737--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313737--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,674][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5a555508, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7413d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313159--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313159--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7413d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,674][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3423f1b6, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313766--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313766--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6e1a9f90, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313499--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313499--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=b923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@779a9a3f, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313762--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313762--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,680][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4225%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7e5cab5a, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313778--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313778--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,674][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4c47bc41, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313254--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313254--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=4]
[14:23:04,681][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6fb976a0, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313791--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313791--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,681][INFO ][gridgain-#4268%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,674][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@34c56dd3, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313271--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313271--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,681][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7c84f4a3, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313788--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313788--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=cb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,681][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,674][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2414598, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0223d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313376--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313376--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0223d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,674][INFO ][gridgain-#4265%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1acb8e56, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313334--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313334--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,681][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@72ea74b4, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313826--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313826--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,681][INFO ][gridgain-#4265%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50c93228, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313809--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313809--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=5]
[14:23:04,681][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@32a69a7c, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313830--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313830--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,680][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,680][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@75f5e285, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313780--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313780--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,680][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@29f52ab5, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313709--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313709--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,682][INFO ][gridgain-#4213%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1ad5a380, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313811--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313811--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,682][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6dc1456e, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=af33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313850--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313850--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=af33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,682][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@103cb718, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313687--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313687--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,678][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4697d3c6, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313664--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313664--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,678][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@568758a7, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313629--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313629--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,678][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@65f020b9, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313621--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313621--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,682][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,682][INFO ][gridgain-#4213%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@139e7b05, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313729--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313729--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2fd34d70, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312793--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312793--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1ad5a380, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313811--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313811--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4ed1bfbb, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312950--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312950--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@779a9a3f, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313762--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313762--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7c317e8a, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313445--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313445--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@290e2a5, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313182--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313182--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@432e2d1a, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313674--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313674--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5991b0cb, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313252--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313252--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6fb976a0, sib=GridJobSiblingImpl [sesId=6bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313791--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313791--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,678][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5edc9d9e, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313618--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313618--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,682][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@924bda5, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313266--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313266--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7db53de9, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313588--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313588--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@344bc831, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313035--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313035--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bc03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4697d3c6, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313664--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313664--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50d87e1d, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312768--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312768--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@417879d5, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313522--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313522--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@116c80cc, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fe03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313071--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313071--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fe03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@45ae4bf4, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313433--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313433--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2a51fe90, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313343--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313343--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ff13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6cc96edc, sib=GridJobSiblingImpl [sesId=4bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312848--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312848--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0103d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,683][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,678][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,677][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6aec7259, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313601--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313601--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,683][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@11cd6657, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313667--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313667--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,683][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,676][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,683][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,682][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2a8dd7e2, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313886--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313886--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,683][INFO ][gridgain-#4244%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5b60965e, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313903--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313903--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,683][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7d77e7f5, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313924--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313924--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,683][INFO ][gridgain-#4244%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,682][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,682][INFO ][gridgain-#4218%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@358b2f73, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313860--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313860--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=4043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,683][INFO ][gridgain-#4218%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,683][INFO ][gridgain-#4245%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ba8a556, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313937--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313937--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,684][INFO ][gridgain-#4249%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4bc5c0d6, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313949--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313949--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,684][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5d3c2160, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bc13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313291--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313291--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bc13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7d77e7f5, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313924--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313924--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1c069a3b, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312831--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312831--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@11cd6657, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313667--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313667--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3433d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@35b29303, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313608--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313608--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50809fe7, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313113--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313113--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3953b26a, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313350--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313350--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@bc2d982, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5f03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313077--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313077--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5f03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3b026fb6, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=db23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313533--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313533--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=db23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@540c5dd9, sib=GridJobSiblingImpl [sesId=abf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9723d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313465--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313465--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9723d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,682][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@e5ae112, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313910--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313910--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,684][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@bb27985, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313891--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313891--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,684][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,682][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1b794559, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313905--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313905--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,684][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7883b064, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313875--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313875--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,682][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4790c3ca, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fc33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313807--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313807--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=fc33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,684][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6f32b072, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313974--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313974--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,684][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@61eac643, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313785--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313785--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,681][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4292%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@73ede58f, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0f33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313840--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313840--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0f33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,684][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4137c6e4, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313856--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313856--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,685][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@290251b7, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313994--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313994--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,685][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,681][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,685][INFO ][gridgain-#4292%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,685][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@57e85cde, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313837--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313837--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=de33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,685][INFO ][gridgain-#4294%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@43d87aa5, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314019--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314019--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=3a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,685][INFO ][gridgain-#4259%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,685][INFO ][gridgain-#4294%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4260%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,685][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5742da69, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313997--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313997--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,685][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3d0d2141, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313990--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313990--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=6843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,685][INFO ][gridgain-#4211%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,686][INFO ][gridgain-#4250%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@76cddfef, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9a23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313513--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313513--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9a23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@65f020b9, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313621--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313621--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7859bd10, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313015--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313015--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1cc274b1, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313209--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313209--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3d0d2141, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313990--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313990--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1b794559, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313905--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313905--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1605c2fe, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ab13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313274--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313274--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ab13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@30abb0d1, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c003d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312844--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312844--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c003d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ef9b079, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313568--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313568--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0e23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6e4884c1, sib=GridJobSiblingImpl [sesId=3cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312981--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312981--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,686][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@68de4566, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313978--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313978--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,687][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,687][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2c4fba38, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314014--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314014--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,687][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,687][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@67d299e5, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314032--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314032--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,687][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,687][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1b16c51d, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314064--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314064--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,688][INFO ][gridgain-#4289%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@bb27985, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313891--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313891--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@72ea74b4, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313826--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313826--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@34c56dd3, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313271--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313271--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7b13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@676dff14, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=dd03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313053--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313053--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=dd03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5b03d377, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312983--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312983--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7903d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6dc1456e, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=af33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313850--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313850--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=af33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@68de4566, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313978--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313978--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1b16c51d, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314064--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314064--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3e9f67a9, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313203--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313203--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f88d6cc, sib=GridJobSiblingImpl [sesId=0df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312866--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312866--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,688][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1eef848d, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bd43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314075--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314075--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bd43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,688][INFO ][gridgain-#4283%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,688][INFO ][gridgain-#4282%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,684][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@8f19f04, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313921--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313921--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,684][INFO ][gridgain-#4249%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,688][INFO ][gridgain-#4249%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@fe15fa0, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313968--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313968--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,689][INFO ][gridgain-#4249%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@fe15fa0, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313968--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313968--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7c84f4a3, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313788--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313788--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cb33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4bc5c0d6, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313949--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313949--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6e1a9f90, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313499--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313499--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@37e14de0, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ea13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313262--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313262--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ea13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6afa5273, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313193--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313193--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1542d1aa, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312805--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312805--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@358b2f73, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313860--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313860--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@32a69a7c, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313830--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313830--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6e33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@8cf3c8b, sib=GridJobSiblingImpl [sesId=8bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313007--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313007--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fa03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,684][INFO ][gridgain-#4245%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,683][INFO ][gridgain-#4298%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3e889928, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4333d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313652--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313652--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4333d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@18cbc321, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312920--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312920--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@462900d8, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fa23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313519--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313519--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fa23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@103cb718, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313687--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313687--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7533d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3672b6f9, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313584--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313584--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0f23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7e257a35, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3423d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313411--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313411--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3423d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f0965c3, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313133--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313133--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@295f65d, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312882--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312882--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@18b4f7d3, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313169--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313169--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2e2f24b2, sib=GridJobSiblingImpl [sesId=ebf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ecf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312782--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312782--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ecf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,683][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,689][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@705056c7, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313934--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313934--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,689][INFO ][gridgain-#4271%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,683][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@10b43eb8, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313560--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313560--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=6]
[14:23:04,689][INFO ][gridgain-#4245%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@15c773ba, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e643d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313966--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313966--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e643d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,688][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,690][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@26340673, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314093--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314093--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=de43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,688][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@42e6517b, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314071--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314071--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,685][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1fc50733, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314005--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314005--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,690][INFO ][gridgain-#4245%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ba8a556, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313937--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313937--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1543d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@15c453d8, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ff23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313599--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313599--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ff23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@15c773ba, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e643d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313966--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313966--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e643d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@55d2facd, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312773--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312773--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@65415df3, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312912--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312912--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0503d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@568758a7, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313629--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313629--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5a538aa7, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313544--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313544--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8c23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@172b7441, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313173--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313173--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5513d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5b60965e, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313903--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313903--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f243d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4a3bee68, sib=GridJobSiblingImpl [sesId=3bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3313d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313139--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313139--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3313d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,690][INFO ][gridgain-#4262%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,690][INFO ][gridgain-#4207%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,690][INFO ][gridgain-#4229%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@47b29e8f, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313711--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313711--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@583b32e3, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313195--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313195--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@99e8f53, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313735--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313735--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@f62406, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312788--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312788--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1fc50733, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314005--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314005--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5b69443b, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313012--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313012--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4b03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3423f1b6, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313766--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313766--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6a33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@72a06ae5, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312945--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312945--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1703d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@61eac643, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313785--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313785--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1e769d32, sib=GridJobSiblingImpl [sesId=5bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313282--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313282--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,691][INFO ][gridgain-#4230%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,685][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,691][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@341d88f6, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314025--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314025--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,691][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@66ea4ad9, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314034--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314034--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=2b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,691][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,691][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5258040a, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314043--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314043--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=bb43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,691][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6f366393, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d153d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314141--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314141--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=d153d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,691][INFO ][gridgain-#4266%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5258040a, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bb43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314043--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314043--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bb43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7e5cab5a, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313778--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313778--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5926674b, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312973--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312973--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4790c3ca, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fc33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313807--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313807--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fc33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5fef84ad, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313737--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313737--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9833d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1fc7e30f, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313713--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313713--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1733d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2168745c, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5e13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313317--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313317--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5e13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@dabd032, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313241--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313241--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@77f17cac, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312823--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312823--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7ff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5742da69, sib=GridJobSiblingImpl [sesId=aef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313997--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313997--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,690][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2f819249, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=af43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314106--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314106--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=af43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,692][INFO ][gridgain-#4200%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@557a7e58, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312908--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312908--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@13e0c7c6, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312869--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312869--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@290251b7, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313994--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313994--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4bae24fa, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313129--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313129--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@7883b064, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313875--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313875--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5a555508, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7413d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313159--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313159--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7413d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4f7ac47d, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bcf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312779--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312779--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bcf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@341d88f6, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314025--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314025--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6f366393, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d153d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314141--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314141--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d153d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@75f5e285, sib=GridJobSiblingImpl [sesId=cbf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313780--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313780--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4b33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,692][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@66115040, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313999--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313999--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=f843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,692][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2a8dd7e2, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313886--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313886--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e143d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@15ccc9fe, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313239--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313239--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2f819249, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=af43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314106--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314106--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=af43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5359aded, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313427--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313427--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3523d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@deb3f16, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312774--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312774--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6cf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@705056c7, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313934--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313934--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@63264c15, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2c03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313026--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313026--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2c03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@29f52ab5, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=d633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313709--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313709--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=d633d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ed5f0ae, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313336--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313336--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@600f57c, sib=GridJobSiblingImpl [sesId=faf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=be03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313067--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313067--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=be03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,692][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3bd6432d, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314113--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314113--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=1053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=7]
[14:23:04,693][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,693][INFO ][gridgain-#4276%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@66115040, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313999--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313999--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f843d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@201271b8, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313503--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313503--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f923d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@e5ae112, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313910--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313910--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6343d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@271d0217, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313364--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313364--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4123d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@600bf773, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313121--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313121--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1213d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@494add9e, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fd13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313311--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313311--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fd13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3c46191a, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312880--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312880--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0303d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6f32b072, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313974--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313974--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6743d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5edc9d9e, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313618--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313618--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2133d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2ca040f1, sib=GridJobSiblingImpl [sesId=2df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313552--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313552--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,691][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,693][INFO ][gridgain-#4218%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@51e938f2, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314181--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314181--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=8]
[14:23:04,693][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6a579994, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314119--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314119--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=7053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,692][INFO ][gridgain-#4244%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5e411f24, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8e43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314088--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314088--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=8e43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,693][INFO ][gridgain-#4218%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,693][INFO ][gridgain-#4244%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,693][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5bc380ef, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0253d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314144--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314144--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0253d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,693][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6cda45bb, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314192--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314192--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=0553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,693][INFO ][gridgain-#4223%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,693][INFO ][gridgain-#4203%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@17a99d84, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313094--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313094--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@37c30f16, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312815--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312815--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@73ede58f, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0f33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313840--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313840--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0f33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6a579994, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314119--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314119--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@24978ca1, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313246--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313246--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e913d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2c4fba38, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314014--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314014--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e943d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5ba0879e, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=ad03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313050--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313050--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=ad03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1e1a18e0, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312878--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312878--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@42e6517b, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314071--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314071--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7d43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1acb8e56, sib=GridJobSiblingImpl [sesId=7bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313334--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313334--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6f13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,693][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@693264fd, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314117--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314117--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=5053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,694][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3887ae93, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314190--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314190--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=e453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=9]
[14:23:04,694][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@75eb7ace, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314202--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314202--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=false], jobCtx=GridJobContextImpl [jobId=a553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,694][INFO ][gridgain-#4270%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Sent test task by continuous mapper (from result() method).
[14:23:04,694][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5e411f24, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8e43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314088--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314088--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8e43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@591a1a0c, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=4013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313092--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313092--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=4013d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@477fcc08, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7d03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313047--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313047--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7d03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2414598, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0223d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313376--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313376--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0223d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6cda45bb, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314192--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314192--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6771881d, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=7403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312903--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312903--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=7403d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1eef848d, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=bd43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314075--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314075--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=bd43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@57e85cde, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313837--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313837--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=de33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@67d299e5, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314032--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314032--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3b5c1e53, sib=GridJobSiblingImpl [sesId=8df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313354--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313354--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,694][INFO ][gridgain-#4296%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2ec279b, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313529--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313529--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9b23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5cb7bc5e, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=b203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312875--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312875--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=b203d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1a01f0f1, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=c623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313452--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313452--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=c623d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6865dc1d, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313285--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313285--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5c13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2379b45d, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313345--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313345--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@6aec7259, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313601--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313601--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1033d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@693264fd, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314117--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314117--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1ec0cd51, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313106--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313106--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2113d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@26340673, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=de43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314093--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314093--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=de43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@8f19f04, sib=GridJobSiblingImpl [sesId=1df2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313921--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313921--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1443d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,694][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Received job result [result=GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2aeef84e, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9653d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314217--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314217--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=false], jobCtx=GridJobContextImpl [jobId=9653d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], count=10]
[14:23:04,694][INFO ][gridgain-#4288%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@5bc380ef, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0253d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314144--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314144--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0253d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4137c6e4, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313856--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313856--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0043d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@50c93228, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313809--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313809--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1d33d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@43d87aa5, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314019--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314019--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3a43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@760fbff3, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=0613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313184--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313184--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=0613d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@75eb7ace, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=a553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314202--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314202--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=a553d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@376f5445, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312965--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312965--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5803d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@66ea4ad9, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=2b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314034--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314034--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=2b43d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@4c47bc41, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=6a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313254--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313254--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=6a13d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@681ea816, sib=GridJobSiblingImpl [sesId=eaf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=edf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312798--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312798--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=edf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,695][INFO ][gridgain-#4273%kernal.GridContinuousTaskSelfTest0%][GridContinuousTaskSelfTest$TestJobsChainTask] Called reduce() method [results=[GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@51e938f2, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=5453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314181--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314181--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=5453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3bd6432d, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314113--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314113--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1053d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@10b43eb8, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=8d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313560--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313560--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=8d23d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@3887ae93, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=e453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314190--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314190--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=e453d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@1ccaf997, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=f023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313359--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313359--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=f023d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@625afdbb, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=fb03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313023--5376265486958552675--6852755745235906700, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313023--5376265486958552675--6852755745235906700, nodeId=a0e61ef5-08b2-4f74-b563-ab0637a4999d, isJobDone=true], jobCtx=GridJobContextImpl [jobId=fb03d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=a0e61ef5-08b2-4f74-b563-ab0637a4999d, state=READY, lastHeartbeat=1353320584556, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320582531], p=GridNodePredicate [ids=[a0e61ef5-08b2-4f74-b563-ab0637a4999d]], isLoc=false, hash=714302234, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@168a0256, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=1713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320313201--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320313201--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=1713d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@187e7156, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=3ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312803--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312803--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=3ef2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@2aeef84e, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=9653d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320314217--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320314217--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=9653d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=true], GridJobResultImpl [job=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJob@75a882c8, sib=GridJobSiblingImpl [sesId=2bf2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, jobId=cff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, taskTopic=TOPIC_TASK--5725799524765009754-5763191950221394699-1353320312828--9200600156404495145-5264728543925387287, jobTopic=TOPIC_JOB--5725799524765009754-5763191950221394699-1353320312828--9200600156404495145-5264728543925387287, nodeId=491012b7-8b88-4017-8050-e6e7951b4cd7, isJobDone=true], jobCtx=GridJobContextImpl [jobId=cff2d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, attrs={}], node=GridRichNodeImpl [node=GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=READY, lastHeartbeat=1353320580970, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970], p=GridNodePredicate [ids=[491012b7-8b88-4017-8050-e6e7951b4cd7]], isLoc=true, hash=-673974128, daemon=false], ex=null, hasRes=true, isCancelled=false, isOccupied=false]]]
[14:23:04,695][INFO ][test-runner][GridContinuousTaskSelfTest] >>> Stopping grid [name=kernal.GridContinuousTaskSelfTest0, id=491012b7-8b88-4017-8050-e6e7951b4cd7]
[14:23:05,751][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:05,752][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:05,754][INFO ][disco-event-worker-#4168%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=491012b7-8b88-4017-8050-e6e7951b4cd7, state=LEFT, lastHeartbeat=1353320585745, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320580970]
[14:23:05,755][INFO ][disco-event-worker-#4168%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x9FEC6DCA]
[14:23:05,758][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320584627, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=faf2d281b31-491012b7-8b88-4017-8050-e6e7951b4cd7, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJobsChainTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJobsChainTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:05,760][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Grid uptime: 00:00:03:747
[14:23:05,763][INFO ][test-runner][GridContinuousTaskSelfTest] >>> Stopping grid [name=kernal.GridContinuousTaskSelfTest1, id=a0e61ef5-08b2-4f74-b563-ab0637a4999d]
[14:23:05,763][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:05,763][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:05,768][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320584637, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=8ff2d281b31-a0e61ef5-08b2-4f74-b563-ab0637a4999d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJobsChainTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$TestJobsChainTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:05,770][INFO ][test-runner][GridContinuousTaskSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousTaskSelfTest1
>>> Grid uptime: 00:00:01:138
[14:23:05,773][INFO ][main][GridContinuousTaskSelfTest] >>> Stopping test: testContinuousJobsChainMultiThreaded in 5342 ms <<<
[14:23:05,776][INFO ][main][GridContinuousTaskSelfTest] >>> Starting test: testContinuousJobsSessionChain <<<
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] << Enterprise Edition >>
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] Config URL: n/a
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] Daemon mode: off
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:05,781][INFO ][test-runner][GridContinuousTaskSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:05,782][INFO ][test-runner][GridContinuousTaskSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:05,782][WARN ][test-runner][GridContinuousTaskSelfTest0] SMTP is not configured - email notifications are off.
[14:23:05,782][WARN ][test-runner][GridContinuousTaskSelfTest0] Cache is not configured - data grid is off.
[14:23:05,782][INFO ][test-runner][GridContinuousTaskSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:05,783][INFO ][test-runner][GridContinuousTaskSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:05,783][INFO ][test-runner][GridContinuousTaskSelfTest0] Enabled local MACs: C8600068582C
[14:23:06,287][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:06,292][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45350, locHost=/192.168.2.14]
[14:23:06,322][INFO ][test-runner][GridContinuousTaskSelfTest0] Security status [authentication=on, secure-session=on]
[14:23:06,325][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:06,326][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55350
[14:23:06,326][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50035
[14:23:06,327][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=c7c4c7c6-6913-42b7-a26b-340d692a112f, state=READY, lastHeartbeat=1353320586319, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320586319]
[14:23:06,328][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x4F2DFFC1]
[14:23:06,330][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:07,356][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:23:07,358][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:23:07,358][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:07,358][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:07,358][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:07,361][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Local node [ID=C7C4C7C6-6913-42B7-A26B-340D692A112F, order=1353320586319]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45350 UDP:50035 TCP:55350
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:07,364][INFO ][test-runner][GridContinuousTaskSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:07,364][INFO ][test-runner][GridContinuousTaskSelfTest1] << Enterprise Edition >>
[14:23:07,364][INFO ][test-runner][GridContinuousTaskSelfTest1] Config URL: n/a
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] Daemon mode: off
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:07,365][WARN ][test-runner][GridContinuousTaskSelfTest1] SMTP is not configured - email notifications are off.
[14:23:07,365][WARN ][test-runner][GridContinuousTaskSelfTest1] Cache is not configured - data grid is off.
[14:23:07,365][INFO ][test-runner][GridContinuousTaskSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:07,366][INFO ][test-runner][GridContinuousTaskSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:07,366][INFO ][test-runner][GridContinuousTaskSelfTest1] Enabled local MACs: C8600068582C
[14:23:07,868][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:07,873][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45351, locHost=/192.168.2.14]
[14:23:07,889][INFO ][test-runner][GridContinuousTaskSelfTest1] Security status [authentication=on, secure-session=on]
[14:23:07,891][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:07,891][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55351
[14:23:07,891][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50035
[14:23:07,892][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=c4f811fb-1d8f-4137-98ff-230bfeed505d, state=READY, lastHeartbeat=1353320587890, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320587890]
[14:23:07,892][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x477B2584]
[14:23:07,893][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:08,350][INFO ][disco-event-worker-#4353%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=c7c4c7c6-6913-42b7-a26b-340d692a112f, state=READY, lastHeartbeat=1353320588344, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320586319]
[14:23:08,351][INFO ][disco-event-worker-#4333%kernal.GridContinuousTaskSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=c4f811fb-1d8f-4137-98ff-230bfeed505d, state=READY, lastHeartbeat=1353320587890, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55351, startTime=1353320587890]
[14:23:08,351][INFO ][disco-event-worker-#4333%kernal.GridContinuousTaskSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xF3B6A01F]
[14:23:08,895][INFO ][disco-event-worker-#4353%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0xF3B6A01F]
[14:23:09,969][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:23:09,971][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:23:09,971][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:09,971][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:09,971][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:09,976][INFO ][test-runner][GridContinuousTaskSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousTaskSelfTest1
>>> Local node [ID=C4F811FB-1D8F-4137-98FF-230BFEED505D, order=1353320587890]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45351 UDP:50035 TCP:55351
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:10,040][INFO ][test-runner][GridContinuousTaskSelfTest] >>> Stopping grid [name=kernal.GridContinuousTaskSelfTest0, id=c7c4c7c6-6913-42b7-a26b-340d692a112f]
[14:23:11,116][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:11,117][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:11,119][INFO ][disco-event-worker-#4353%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=c7c4c7c6-6913-42b7-a26b-340d692a112f, state=LEFT, lastHeartbeat=1353320591114, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320586319]
[14:23:11,120][INFO ][disco-event-worker-#4353%kernal.GridContinuousTaskSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x477B2584]
[14:23:11,122][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320589976, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=f853d281b31-c7c4c7c6-6913-42b7-a26b-340d692a112f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousTaskSelfTest$SessionChainTestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$SessionChainTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:11,124][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Grid uptime: 00:00:03:767
[14:23:11,127][INFO ][test-runner][GridContinuousTaskSelfTest] >>> Stopping grid [name=kernal.GridContinuousTaskSelfTest1, id=c4f811fb-1d8f-4137-98ff-230bfeed505d]
[14:23:11,128][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:11,128][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:11,134][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320589976, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=6a53d281b31-c4f811fb-1d8f-4137-98ff-230bfeed505d, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousTaskSelfTest$SessionChainTestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$SessionChainTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:11,135][INFO ][test-runner][GridContinuousTaskSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousTaskSelfTest1
>>> Grid uptime: 00:00:01:168
[14:23:11,136][INFO ][main][GridContinuousTaskSelfTest] >>> Stopping test: testContinuousJobsSessionChain in 5360 ms <<<
[14:23:11,138][INFO ][main][GridContinuousTaskSelfTest] >>> Starting test: testContinuousSlowMap <<<
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] << Enterprise Edition >>
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] Config URL: n/a
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] Daemon mode: off
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:11,142][INFO ][test-runner][GridContinuousTaskSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:11,142][WARN ][test-runner][GridContinuousTaskSelfTest0] SMTP is not configured - email notifications are off.
[14:23:11,142][WARN ][test-runner][GridContinuousTaskSelfTest0] Cache is not configured - data grid is off.
[14:23:11,143][INFO ][test-runner][GridContinuousTaskSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:11,143][INFO ][test-runner][GridContinuousTaskSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:11,143][INFO ][test-runner][GridContinuousTaskSelfTest0] Enabled local MACs: C8600068582C
[14:23:11,646][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:11,652][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45350, locHost=/192.168.2.14]
[14:23:11,671][INFO ][test-runner][GridContinuousTaskSelfTest0] Security status [authentication=on, secure-session=on]
[14:23:11,674][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:11,674][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55350
[14:23:11,674][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50035
[14:23:11,674][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=1964b1fd-d295-4e44-a727-a8a8f4a3ce1f, state=READY, lastHeartbeat=1353320591668, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55350, startTime=1353320591668]
[14:23:11,675][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xEB9E9391]
[14:23:11,676][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:12,702][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:23:12,704][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:23:12,704][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:12,704][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:12,704][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:12,707][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Local node [ID=1964B1FD-D295-4E44-A727-A8A8F4A3CE1F, order=1353320591668]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45350 UDP:50035 TCP:55350
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:22,711][INFO ][test-runner][GridContinuousTaskSelfTest] >>> Stopping grid [name=kernal.GridContinuousTaskSelfTest0, id=1964b1fd-d295-4e44-a727-a8a8f4a3ce1f]
[14:23:23,766][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:23,766][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:23,772][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320592705, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=fb83d281b31-1964b1fd-d295-4e44-a727-a8a8f4a3ce1f, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridContinuousTaskSelfTest$SlowMapTestTask, sampleClsName=org.gridgain.grid.kernal.GridContinuousTaskSelfTest$SlowMapTestTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:23,773][INFO ][test-runner][GridContinuousTaskSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridContinuousTaskSelfTest0
>>> Grid uptime: 00:00:11:68
[14:23:23,774][INFO ][main][GridContinuousTaskSelfTest] >>> Stopping test: testContinuousSlowMap in 12636 ms <<<
[14:23:23,778][INFO ][main][GridTaskContinuousMapperSelfTest] >>> Starting test: testContinuousMapperMethods <<<
[14:23:23,782][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:23,782][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] << Enterprise Edition >>
[14:23:23,782][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Config URL: n/a
[14:23:23,782][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Daemon mode: off
[14:23:23,783][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:23:23,783][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:23,783][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:23,783][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:23,783][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:23,783][WARN ][test-runner][GridTaskContinuousMapperSelfTest0] SMTP is not configured - email notifications are off.
[14:23:23,783][WARN ][test-runner][GridTaskContinuousMapperSelfTest0] Cache is not configured - data grid is off.
[14:23:23,784][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:23,784][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:23,784][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Enabled local MACs: C8600068582C
[14:23:24,288][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:24,293][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45360, locHost=/192.168.2.14]
[14:23:24,324][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Security status [authentication=on, secure-session=on]
[14:23:24,327][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:24,327][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55360
[14:23:24,328][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50036
[14:23:24,328][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=9149098a-1aaa-47e0-a98e-4bb71b820067, state=READY, lastHeartbeat=1353320604320, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55360, startTime=1353320604320]
[14:23:24,329][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xA3EB8B04]
[14:23:24,330][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:25,361][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:23:25,363][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:23:25,363][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:25,363][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:25,363][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:25,366][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest0
>>> Local node [ID=9149098A-1AAA-47E0-A98E-4BB71B820067, order=1353320604320]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45360 UDP:50036 TCP:55360
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] << Enterprise Edition >>
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Config URL: n/a
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Daemon mode: off
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Language runtime: Java Platform API Specification ver. 1.6
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:25,368][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:25,368][WARN ][test-runner][GridTaskContinuousMapperSelfTest1] SMTP is not configured - email notifications are off.
[14:23:25,368][WARN ][test-runner][GridTaskContinuousMapperSelfTest1] Cache is not configured - data grid is off.
[14:23:25,369][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:25,369][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:25,369][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Enabled local MACs: C8600068582C
[14:23:25,871][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:25,877][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45361, locHost=/192.168.2.14]
[14:23:25,895][INFO ][test-runner][GridTaskContinuousMapperSelfTest1] Security status [authentication=on, secure-session=on]
[14:23:25,897][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:25,897][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55361
[14:23:25,897][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50036
[14:23:25,897][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=eb822cac-4f4c-45c8-b89a-78e63651803b, state=READY, lastHeartbeat=1353320605892, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55361, startTime=1353320605892]
[14:23:25,898][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x84285C6]
[14:23:25,898][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:25,904][INFO ][disco-event-worker-#4543%kernal.GridTaskContinuousMapperSelfTest0%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=eb822cac-4f4c-45c8-b89a-78e63651803b, state=READY, lastHeartbeat=1353320605892, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55361, startTime=1353320605892]
[14:23:25,904][INFO ][disco-event-worker-#4563%kernal.GridTaskContinuousMapperSelfTest1%][GridDiscoveryManager] Added new node to topology: GridMulticastDiscoveryNode [id=9149098a-1aaa-47e0-a98e-4bb71b820067, state=READY, lastHeartbeat=1353320605902, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55360, startTime=1353320604320]
[14:23:25,904][INFO ][disco-event-worker-#4543%kernal.GridTaskContinuousMapperSelfTest0%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x91483A0B]
[14:23:26,902][INFO ][disco-event-worker-#4563%kernal.GridTaskContinuousMapperSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=2, CPUs=4, hash=0x91483A0B]
[14:23:27,976][WARN ][test-runner][GridJettyRestProtocol] Jetty failed to start (retrying every 3000 ms). Another node on this host?
[14:23:27,977][WARN ][test-runner][GridTcpRestProtocol] TCP binary REST server failed to start (retrying every 3000 ms). Another node on this host?
[14:23:27,977][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:27,978][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:27,978][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:27,983][INFO ][test-runner][GridTaskContinuousMapperSelfTest1]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest1
>>> Local node [ID=EB822CAC-4F4C-45C8-B89A-78E63651803B, order=1353320605892]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:45361 UDP:50036 TCP:55361
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:27,993][INFO ][test-runner][GridTaskContinuousMapperSelfTest] >>> Stopping grid [name=kernal.GridTaskContinuousMapperSelfTest0, id=9149098a-1aaa-47e0-a98e-4bb71b820067]
[14:23:29,047][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:29,047][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:29,049][INFO ][disco-event-worker-#4563%kernal.GridTaskContinuousMapperSelfTest1%][GridDiscoveryManager] Node left topology: GridMulticastDiscoveryNode [id=9149098a-1aaa-47e0-a98e-4bb71b820067, state=LEFT, lastHeartbeat=1353320609044, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55360, startTime=1353320604320]
[14:23:29,050][INFO ][disco-event-worker-#4563%kernal.GridTaskContinuousMapperSelfTest1%][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x84285C6]
[14:23:29,052][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320607976, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=fe83d281b31-9149098a-1aaa-47e0-a98e-4bb71b820067, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestAllMethodsTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestAllMethodsTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:29,053][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest0
>>> Grid uptime: 00:00:03:686
[14:23:29,054][INFO ][test-runner][GridTaskContinuousMapperSelfTest] >>> Stopping grid [name=kernal.GridTaskContinuousMapperSelfTest1, id=eb822cac-4f4c-45c8-b89a-78e63651803b]
[14:23:29,054][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:29,055][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:29,058][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320607986, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=3093d281b31-eb822cac-4f4c-45c8-b89a-78e63651803b, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestAllMethodsTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestAllMethodsTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:29,060][INFO ][test-runner][GridTaskContinuousMapperSelfTest1]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest1
>>> Grid uptime: 00:00:01:78
[14:23:29,061][INFO ][main][GridTaskContinuousMapperSelfTest] >>> Stopping test: testContinuousMapperMethods in 5283 ms <<<
[14:23:29,064][INFO ][main][GridTaskContinuousMapperSelfTest] >>> Starting test: testContinuousMapperLifeCycle <<<
[14:23:29,069][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:29,069][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] << Enterprise Edition >>
[14:23:29,069][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Config URL: n/a
[14:23:29,069][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Daemon mode: off
[14:23:29,070][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:23:29,070][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:29,070][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:29,070][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:29,070][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:29,070][WARN ][test-runner][GridTaskContinuousMapperSelfTest0] SMTP is not configured - email notifications are off.
[14:23:29,070][WARN ][test-runner][GridTaskContinuousMapperSelfTest0] Cache is not configured - data grid is off.
[14:23:29,071][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:29,071][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:29,071][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Enabled local MACs: C8600068582C
[14:23:29,575][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:29,580][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45360, locHost=/192.168.2.14]
[14:23:29,598][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Security status [authentication=on, secure-session=on]
[14:23:29,599][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:29,599][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55360
[14:23:29,600][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50036
[14:23:29,600][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=84838308-579b-4909-9aee-932435b1b8df, state=READY, lastHeartbeat=1353320609598, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55360, startTime=1353320609598]
[14:23:29,600][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0xB20DA685]
[14:23:29,602][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:30,627][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:23:30,629][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:23:30,629][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:30,629][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:30,629][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:30,631][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest0
>>> Local node [ID=84838308-579B-4909-9AEE-932435B1B8DF, order=1353320609598]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45360 UDP:50036 TCP:55360
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:30,637][INFO ][gridgain-#4607%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestLifeCycleTask] Expected exception: class org.gridgain.grid.GridException: Task is not in waiting state: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, dep=GridDeployment [ts=1353320610626, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=9293d281b31-84838308-579b-4909-9aee-932435b1b8df, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sesId=9293d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320610626, endTime=9223372036854775807, taskNodeId=84838308-579b-4909-9aee-932435b1b8df, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:23:30,637][INFO ][gridgain-#4607%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestLifeCycleTask] Expected exception: class org.gridgain.grid.GridException: Task is not in waiting state: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, dep=GridDeployment [ts=1353320610626, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=9293d281b31-84838308-579b-4909-9aee-932435b1b8df, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sesId=9293d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320610626, endTime=9223372036854775807, taskNodeId=84838308-579b-4909-9aee-932435b1b8df, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:23:30,637][INFO ][gridgain-#4607%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestLifeCycleTask] Expected exception: class org.gridgain.grid.GridException: Task is not in waiting state: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, dep=GridDeployment [ts=1353320610626, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=9293d281b31-84838308-579b-4909-9aee-932435b1b8df, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sesId=9293d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320610626, endTime=9223372036854775807, taskNodeId=84838308-579b-4909-9aee-932435b1b8df, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:23:30,638][INFO ][gridgain-#4607%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestLifeCycleTask] Expected exception: class org.gridgain.grid.GridException: Task is not in waiting state: GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, dep=GridDeployment [ts=1353320610626, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=9293d281b31-84838308-579b-4909-9aee-932435b1b8df, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sesId=9293d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320610626, endTime=9223372036854775807, taskNodeId=84838308-579b-4909-9aee-932435b1b8df, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]
[14:23:30,638][INFO ][test-runner][GridTaskContinuousMapperSelfTest] >>> Stopping grid [name=kernal.GridTaskContinuousMapperSelfTest0, id=84838308-579b-4909-9aee-932435b1b8df]
[14:23:31,692][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:31,693][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:31,697][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320610626, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=9293d281b31-84838308-579b-4909-9aee-932435b1b8df, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestLifeCycleTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:31,699][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest0
>>> Grid uptime: 00:00:01:67
[14:23:31,700][INFO ][main][GridTaskContinuousMapperSelfTest] >>> Stopping test: testContinuousMapperLifeCycle in 2635 ms <<<
[14:23:31,703][INFO ][main][GridTaskContinuousMapperSelfTest] >>> Starting test: testContinuousMapperNegative <<<
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> _____ _ _______ _
>>> / ___/____(_)___/ / ___/___ _(_)___
>>> / (_ // __/ // _ / (_ // _ `/ // _ \
>>> \___//_/ /_/ \_,_/\___/ \_,_/_//_//_/
>>>
>>> ---==++ IN-MEMORY BIG DATA ++==---
>>> ver. x.x.x-DDMMYYYY
>>> Copyright (C) 2012 GridGain Systems
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] << Enterprise Edition >>
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Config URL: n/a
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Daemon mode: off
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Language runtime: Java Platform API Specification ver. 1.6
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] JVM name: Java HotSpot(TM) 64-Bit Server VM
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Remote Management [restart: off, REST: on, JMX (remote: off)]
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] GRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2
[14:23:31,708][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] VM arguments: [-ea, -XX:MaxPermSize=128m, -Xms512m, -Xmx1024m, -Duser.name=bamboo, -DGRIDGAIN_UPDATE_NOTIFIER=false, -DGRIDGAIN_DISABLED=true, -DGRIDGAIN_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_STABLE_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -DGRIDGAIN_ROUTER_PREFER_REMOTE=true, -DGRIDGAIN_NO_DISCO_ORDER=true, -DGRIDGAIN_QUIET=false, -DGG_TEST_HOME=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.id=34324, -Dteamcity.buildType.id=bt5, -Dagent.ownPort=9090, -Dteamcity.build.checkoutDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dteamcity.build.workingDir=/usr/local/TeamCityAgent/work/d46fc9c3d71112c2, -Dagent.work.dir=/usr/local/TeamCityAgent/work, -Dagent.name=teamcity-4, -Dagent.home.dir=/usr/local/TeamCityAgent, -Dteamcity.runtime.props.file=/usr/local/TeamCityAgent/temp/agentTmp/ant2684847485530994862runtime]
[14:23:31,708][WARN ][test-runner][GridTaskContinuousMapperSelfTest0] SMTP is not configured - email notifications are off.
[14:23:31,708][WARN ][test-runner][GridTaskContinuousMapperSelfTest0] Cache is not configured - data grid is off.
[14:23:31,709][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] 3-rd party licenses can be found at: /usr/local/TeamCityAgent/work/d46fc9c3d71112c2/libs/licenses
[14:23:31,710][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Non-loopback local IPs: fe80:0:0:0:ca60:ff:fe68:582c%2, 192.168.2.14
[14:23:31,710][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Enabled local MACs: C8600068582C
[14:23:32,214][INFO ][test-runner][GridJdkLocalMetricsSpi] Hyperic Sigar 'CpuPerc.getCombined()' method will be used to detect average CPU load.
[14:23:32,219][INFO ][test-runner][GridTcpCommunicationSpi] Successfully bound to TCP port [port=45360, locHost=/192.168.2.14]
[14:23:32,236][INFO ][test-runner][GridTaskContinuousMapperSelfTest0] Security status [authentication=on, secure-session=on]
[14:23:32,238][WARN ][test-runner][GridMulticastDiscoverySpi] Heartbeat frequency is too low (at least 2000 ms): 1000
[14:23:32,238][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to TCP port: 55360
[14:23:32,239][INFO ][test-runner][GridMulticastDiscoverySpi] Successfully bound to Multicast port: 50036
[14:23:32,239][INFO ][test-runner][GridMulticastDiscoverySpi] Local node: GridMulticastDiscoveryNode [id=b78abc63-8166-4d2b-8a70-e325146e10a9, state=READY, lastHeartbeat=1353320612237, addrs=[192.168.2.14], addr=/192.168.2.14, tcpPort=55360, startTime=1353320612237]
[14:23:32,239][INFO ][test-runner][GridDiscoveryManager] Topology snapshot [nodes=1, CPUs=4, hash=0x15A4465B]
[14:23:32,240][INFO ][test-runner][GridMulticastDiscoverySpi] Waiting for initial heartbeat timeout (1000 ms)
[14:23:33,266][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully started: Jetty REST
[14:23:33,267][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully started: TCP binary
[14:23:33,267][INFO ][test-runner][GridLicenseControllerImpl] Licensed to 'GridGain Systems, Internal Development Only' on Feb 3, 2011
[14:23:33,267][INFO ][test-runner][GridLicenseControllerImpl] License [ID=7D5CB773-225C-4165-8162-3BB67337894B, type=ENT]
[14:23:33,267][INFO ][test-runner][GridLicenseControllerImpl] License limits [expire-date: never]
[14:23:33,270][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> +--------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY
>>> +--------------------------+
>>> OS name: Linux 2.6.32-38-generic amd64
>>> OS user: bamboo
>>> CPU(s): 4
>>> VM information: Java(TM) SE Runtime Environment 1.6.0_30-b12 Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM 20.5-b03
>>> VM name: 573@gg-teamcity-4
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest0
>>> Local node [ID=B78ABC63-8166-4D2B-8A70-E325146E10A9, order=1353320612237]
>>> Local node addresses: [192.168.2.14]
>>> Local ports: TCP:8080 TCP:11211 TCP:45360 UDP:50036 TCP:55360
>>> GridGain documentation: http://www.gridgain.com/product.html
[14:23:33,272][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: java.lang.NullPointerException: Ouch! Argument cannot be null: node
[14:23:33,273][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: java.lang.NullPointerException: Ouch! Argument cannot be null: job
[14:23:33,273][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: java.lang.NullPointerException: Ouch! Argument cannot be null: mappedJobs
[14:23:33,273][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: class org.gridgain.grid.GridException: Node can not be null [mappedJob=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestJob@7c120de=null, ses=GridTaskSessionImpl [taskName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestNegativeTask, dep=GridDeployment [ts=1353320613265, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=0593d281b31-b78abc63-8166-4d2b-8a70-e325146e10a9, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestNegativeTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestNegativeTask, undeployed=false, pendingUndeploy=false, usage=1], taskClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestNegativeTask, sesId=0593d281b31-4ffaf88b-4556-430b-b089-dfab3747f8a6, startTime=1353320613265, endTime=9223372036854775807, taskNodeId=b78abc63-8166-4d2b-8a70-e325146e10a9, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, closed=false, topSpi=null, cpSpi=null, failSpi=null, loadSpi=null, nodeFilter=null]]
[14:23:33,273][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: java.lang.NullPointerException: Ouch! Argument cannot be null: job
[14:23:33,273][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: java.lang.NullPointerException: Ouch! Argument cannot be null: jobs
[14:23:33,273][INFO ][gridgain-#4628%kernal.GridTaskContinuousMapperSelfTest0%][GridTaskContinuousMapperSelfTest$TestNegativeTask] Expected exception: class org.gridgain.grid.GridException: Null job passed to send(...) method.
[14:23:33,275][INFO ][test-runner][GridTaskContinuousMapperSelfTest] >>> Stopping grid [name=kernal.GridTaskContinuousMapperSelfTest0, id=b78abc63-8166-4d2b-8a70-e325146e10a9]
[14:23:34,329][INFO ][test-runner][GridJettyRestProtocol] Command protocol successfully stopped: Jetty REST
[14:23:34,329][INFO ][test-runner][GridTcpRestProtocol] Command protocol successfully stopped: TCP binary
[14:23:34,334][INFO ][test-runner][GridDeploymentLocalStore] Removed undeployed class: GridDeployment [ts=1353320613265, depMode=SHARED, clsLdr=sun.misc.Launcher$AppClassLoader@3326b249, clsLdrId=0593d281b31-b78abc63-8166-4d2b-8a70-e325146e10a9, userVer=0, loc=true, sampleCls=class org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestNegativeTask, sampleClsName=org.gridgain.grid.kernal.GridTaskContinuousMapperSelfTest$TestNegativeTask, undeployed=true, pendingUndeploy=false, usage=0]
[14:23:34,335][INFO ][test-runner][GridTaskContinuousMapperSelfTest0]
>>> +-------------------------------------+
>>> GridGain ver. x.x.x-DDMMYYYY stopped OK
>>> +-------------------------------------+
>>> Grid name: kernal.GridTaskContinuousMapperSelfTest0
>>> Grid uptime: 00:00:01:66
[14:23:34,336][INFO ][main][GridTaskContinuousMapperSelfTest] >>> Stopping test: testContinuousMapperNegative in 2633 ms <<<
|
4383ef1fed2a7101fc03c139d77dad7bdb88a937 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH20/EX20.7/207.sce | 355a45fa030a5f76c58c09d6534754d7b3843505 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 618 | sce | 207.sce | clc;
//Example 20.7
//page no 276
printf("\n Example 20.7 page no 276\n\n");
//refer to illustrative Example 20.5
//(1)
//we have to calculate minimum air ventilation flow rate into the room containing 10 ng/m^3 of a toxic chemical
//ng means nanograms
rV=250//chemical generated in the laboratory,ng/min
c_o=10//room containg toxic chemical of 10ng/m^3
c=35//limit of chemical concentration,ng/m^3
//applicable modal in this case
//q_o(c_o-c) + rV =V*dc/dt
//substituting gives
q_o=(-rV)/(c_o-c)//minimum air ventilation flow rate
printf("\n q_o min. air ventilation flow rate=%f m^3/min",q_o);
|
d45ad3499b5052987f71d30e16b9e8f2b9e66a76 | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH10/EX10.14/exp10_14pp.sce | b67f88b2c0545e6e390e55a006f39c792388a652 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 645 | sce | exp10_14pp.sce | clear
clc
disp("example10.14")
a1=5000;b1=450;c1=0.5;//for system 1
e1=0.02;e2=-0.02//error
a1c=a1*(1-e1);b1c=b1*(1-e1);c1c=c1*(1-e1)
a2c=a1*(1-e2);b2c=b1*(1-e2);c2c=c1*(1-e2)
tl=200
function [co]=cost(a,b,c,p)
co=a+b*p+c*p^2
endfunction
p11=(b2c-b1c+2*c2c*tl)/(2*(c1c+c2c))
p22=tl-p11
totco=cost(a1c,b1c,c1c,p11)+cost(a2c,b2c,c2c,p22)
printf("\npower at station 1 is %dMW \t power at station 2 is %dMW \n total cost on economic critieria method Rs%d per hour",p11,p22,totco)
tocoe=cost(a1c,b1c,c1c,tl/2)+cost(a2c,b2c,c2c,tl/2)
eop=tocoe-totco
printf("\nextra operating cost due to erroneous scheduling Rs.%d per hour",eop) |
aa51945d530a250c6e5f40d14bfc2ca5f85ddb17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH3/EX3.11/ex3_11.sce | 81a982223042a572528bf51d1b2c2b4000efa81f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 656 | sce | ex3_11.sce | // Example 3.11, page no-99
clear
clc
theta_l=30 //earth station's location 30°W longitude
theta_s=50 //satellite's location 50°W longitude
theta_L=60 //earth station's location 60°N latitude
r=42164 // orbital radius of the satellite in km
R=6378 //Earth's radius in km
A_dash=atan((tand(theta_s-theta_l))/sind(60))
A_dash=A_dash*180/%pi
A=180+A_dash //Azimuth angle
x=(180/%pi)*acos(cosd(theta_s-theta_l)*cosd(theta_L))
y=r-ceil(R*(cosd(theta_s-theta_l)*cosd(theta_L)))
z=R*sind(x)
E=(atan(y/z)*180/%pi)-x
printf("Azimuth angle =%.1f°\n Elevation angle =%.1f°",A,E)
|
627f1d7aa99f75966f92a3f02f0d2562244cce13 | 975bff4cfbf67b318995dc4c925cb18317ae38a3 | /OraclePG.sci | 1dc3c8d712d029a9d8cead876790dac7973f4dba | [] | no_license | VictorSanh/Optimisation | 98da003def697207e0fb967abe07b99ac7afc7e1 | 5dc3a2dec09982d066ee1e0504cecd0a6f2b71a6 | refs/heads/master | 2021-01-18T21:16:30.468266 | 2016-05-21T16:46:13 | 2016-05-21T16:46:13 | 55,126,828 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 568 | sci | OraclePG.sci | function[F, G, ind] = OraclePG(qc, ind)
// Si ind = 2, on calcule seulement F
if ind == 2 then
F = 1/3*(q0+B*qc)'*(r .* (q0+B*qc) .* abs(q0+B*qc)) + pr'*Ar*(q0+B*qc) ;
// Si ind = 3, on calcule seulement G
elseif ind == 3 then
G = B'*Ar'*pr + B'*(r.*(q0+B*qc).*abs(q0+B*qc));
F = 0
// Si ind = 4, on calcule F et G
elseif ind == 4 then
F = 1/3*(q0+B*qc)'*(r .* (q0+B*qc) .* abs(q0+B*qc)) + (pr'*Ar*(q0+B*qc));
G = B'*Ar'*pr + B'*(r .* (q0+B*qc) .* abs(q0+B*qc));
end
endfunction
|
d9aaaa400db4bf1a7015c5064b6436ae9a744e99 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/macrocab_pfet1.sce | de166135fdebbede3896f96758e9bbc87e07913d | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | macrocab_pfet1.sce | style.fontSize=12;
style.displayedLabel="<table> <tr> <td><b>G<br>S</b></td> <td align=center>pFET1</td> <td align=left><b>D</b></td> </tr> </table>";
pal11 = xcosPalAddBlock(pal11,"macrocab_pfet1",[],style);
|
5a5ec94d67e878dd59e40b4714ffb0735fabef9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH1/EX1.22/22.sce | 9b78395a26c4562ab99d35a2cfc399f3048f07fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | 22.sce | clc
clear
//Input data
T=300+273 //Static Temperature in K
C=200 //Velocity in m/s
Cp=1005 //Specific heat capacity at constant pressure in J/kg-K
//Calculation
To=T+(C^2/(2*Cp)) //Stagnation Temperature in K
C_max=sqrt(2*Cp*To) //Maximum possible velocity obtained by air in m/s
//Output
printf('Maximum possible velocity obtained by air is %3.2f m/s',C_max)
|
715c6fe17474012529b67bf2aa3b14cd364524bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH4/EX4.19.b/solution4_19.sce | d7fa73adc4bd2041dfcb066293a75d299666bcd7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 898 | sce | solution4_19.sce |
//Obtain path of solution file
path = get_absolute_file_path('solution4_19.sce')
//Obtain path of data file
datapath = path + filesep() + 'data4_19.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
//Calculate the permissible stresses for steel parts sigmat (N/mm2)
sigmat = Syt/fs
//Calculate the eccentricity e (mm)
Rn = (((bi + bo)/2)*h)/((((bi * Ro) - (bo * Ri))/h)*log(Ro/Ri)-(bi - bo))
R = Ri + ((h*(bi + (2 * bo)))/(3 * (bi + bo)))
e = R - Rn
hi = Rn - Ri
A = (h * (bi + bo))/2
//Assume the value load P to be 1N
P = 1
//Calculate the bending moment Mb (N-mm)
Mb = R * P
//Calculate bending stress at the inner fibre B (N/mm2)
B = (Mb * hi)/(A * e * Ri)
//Calculate the direct tensile stress T (N/mm2)
T = P/A
//Calculate the actual load carrying capacity P (N)
P = sigmat/(B + T)
//Print results
printf('\nThe load carrying capacity(P) = %f N\n',P)
|
2cfc904e2c70e493d24497b454226112faece439 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2150/CH8/EX8.20/ex8_20.sce | 2322e7966fcad52732ae1d1a7fbd1b19a6a4a689 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 389 | sce | ex8_20.sce | // Exa 8.20
clc;
clear;
close;
// Given data
R_f = 200;// in kΩ
R_i = 30;// in kΩ
V_i = 0.1;// in V
V_im = 0.5;// in V
Vo_min = -((R_f/R_i)*V_i);// in V
disp(Vo_min,"The minimum output voltage in V is");
Vo_max = -((R_f/R_i)*V_im);// in V
disp(Vo_max,"The minimum output voltage in V is");
disp("The output voltage range is : "+string(Vo_min)+" V to "+string(Vo_max)+" V")
|
993c511c2201892df8f8ce780562629554472cc8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH2/EX2.7/Ex2_7.sce | d435aa62a7b2b8326f9de048b98a9f69155010ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 664 | sce | Ex2_7.sce | //Ex2_7 Pg-88
clc
disp("Relaxation time in terms of mobility is given by")
disp(" t=m*u/e")
printf("\n\n Taking effective mass of electron an holes in consideration,\n relaxation time is given by \n")
disp(" t=m_star*u/e")
disp("(a) foe electrons,m_star = 0.259*m_0")
m0=9.1*10^(-31)
ue=0.135 //mobility of electrons
e=1.6*10^(-19) //electron charge
t_e=(0.259*m0*ue)/e
printf("\n Average relaxation time of eletrons = %.2f*1e-13 secs\n ",t_e*1e13)
uh=0.048 //mobility of holes
disp("(b) For holes in the valance band,m=0.537*m_0")
t_h=(0.537*m0*uh)/e
printf("\n Average relaxation time of eletrons = %.2f*1e-13 secs\n ",t_h*1e13)
|
a5213996664ee16f2be6313d439a2400ffb0dbca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH18/EX18.2.e/E18_2.sce | d654654de4684e8556a2fe749dd8adb5c79a6d77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 948 | sce | E18_2.sce | clc
//Initialization of variables
function [coefs]=regress(x,y)
coefs=[]
if (type(x) <> 1)|(type(y)<>1) then error(msprintf(gettext("%s: Wrong type for input arguments: Numerical expected.\n"),"regress")), end
lx=length(x)
if lx<>length(y) then error(msprintf(gettext("%s: Wrong size for both input arguments: same size expected.\n"),"regress")), end
if lx==0 then error(msprintf(gettext("%s: Wrong size for input argument #%d: Must be > %d.\n"),"regress", 1, 0)), end
x=matrix(x,lx,1)
y=matrix(y,lx,1)
xbar=sum(x)/lx
ybar=sum(y)/lx
coefs(2)=sum((x-xbar).*(y-ybar))/sum((x-xbar).^2)
coefs(1)=ybar-coefs(2)*xbar
endfunction
Q=[1 2 3 4 5]
t1=[5.2 9.4 13.7 18 22.2]
t2=[1.1 2 2.9 4 4.5]
//calculations
kqbykf=regress(Q,t1)
slope1=kqbykf(2) *10^3
kq=regress(Q,t2)
slope2=kq(2) *10^10
kq=slope2
kf=kq/slope1
thalf=log (2) /kf
//results
printf("Quenching rate constant = %.1e L ml^-1 s^-1",kq)
printf("\n Half life= %.1e s",thalf) |
f14eb59511fc3179d04f26ab65f47e5ce1d6c232 | c85cd177767bb7028f15fecb201143f86b35ae94 | /td.sce | 236dbef561bbae268d9e6a1fcbcec3ae9cd8c3a0 | [] | no_license | Neucrede/Dummy | c879b8b8f2e32da33d53576ce4f56b4638da7df7 | 7f3f158c78620d66abd089dca658297fac0da069 | refs/heads/master | 2021-06-18T00:47:59.632096 | 2021-03-31T09:19:08 | 2021-03-31T09:19:08 | 179,017,060 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 947 | sce | td.sce | td = [1.1786885 1.2666667
3.952459 2.3217391
4.1098361 -0.3565217
6.3918033 5.2434783
5.0934426 2.4028986
2.3786885 2.3623188
1.847541 2.6463768
0.942623 6.9884058
0.9819672 4.3913043
1.847541 8.0028986
3.6180328 7.3942029
1.2770492 6.2173913
4.6803279 6.9072464
2.7131148 5.6086957
3.2245902 7.5565217
2.7327869 4.8376812
4.2672131 6.7043478
5.2311475 8.6521739
5.7032787 6.9884058
5.2311475 3.6202899
5.7229508 5.7304348
5.5655738 5.0405797
4.0311475 7.515942
3.3819672 4.4724638
5.3295082 8.2463768
2.2016393 8.9768116
1.8081967 6.257971
1.7295082 9.4231884
-1.6737705 9.9101449
3.0868852 8.0028986
1.7491803 3.6608696
0.7065574 0.2521739
4.6213115 0.2115942
5.2508197 7.515942
6.5295082 4.026087
6.4114754 1.3884058]';
|
cb0b6eb2c2c70f392c5ffb275d890079dee989a7 | 2937c156b49cd6ff5e1da79887b533c03a6118e8 | /part c/test_delete_station_procedure.tst | 66c66a1aefd2d1fc05d1663a4ead8834f7f2f9b2 | [] | no_license | eti-walis/Travel-Agencies-Database | ba6e83a5a5bde3950b6540d7c02ff6360e10ba8d | 7284414f5d725fd09f11f73781945168cddc6802 | refs/heads/main | 2023-08-19T04:17:54.751162 | 2021-09-30T16:28:16 | 2021-09-30T16:28:16 | 412,138,503 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | tst | test_delete_station_procedure.tst | PL/SQL Developer Test script 3.0
4
begin
-- Call the procedure
delete_stop_procedure(delAddress => :delAddress);
end;
1
delAddress
1
JerusalemBenGurion15
5
0
|
716f7c6bfd30e1a23bac7326ce8627496632d3b7 | d897696cc5ab77f0fa78fb32a26fba4611f9b9ea | /recog_momcom.sce | 846148877f055cb8dd96efb99ce88484b1e18268 | [] | no_license | hnizdil/it3105-image-processing | 3ebf6ae8f18a6dfb4b1e91dd88fee594fc322ffb | 26ac31b32c6b8012094583b128a7b2b304f021e0 | refs/heads/master | 2021-03-12T22:41:42.261537 | 2009-10-26T10:51:57 | 2009-10-26T10:51:57 | 32,507,477 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,087 | sce | recog_momcom.sce | getf('functions.sci');
//
// get reference images and do the threshold
//
// function for converting ascii to pgm
function fnames = patt_ascii_to_pgm(patt)
clr = 'red';
path = 'recog/';
fnames = list();
for i = 1 : 3
fname = path + patt + string(i) + '.' + clr;
pgm_from_ascii(fname, [128 128]);
fnames($+1) = fname + '.pgm';
end
endfunction
// do conversions
pattsc = patt_ascii_to_pgm('circle');
pattss = patt_ascii_to_pgm('square');
pattst = patt_ascii_to_pgm('triangle');
// threshold
for fname = lstcat(pattsc, pattss, pattst)
pgm = pgm_read(fname);
thres = thres_otsu_get(pgm(1));
pgm(1) = thres_gray_apply(pgm(1), thres, pgm(2));
pgm_write(fname, pgm(1), pgm(2));
end
//
// calculate moment combinations
//
function fname = momcom_calc(fnames, patt)
fname = patt + '_momcom.txt';
combos = zeros(size(fnames), 4);
for i = 1 : size(fnames)
pgm = pgm_read(fnames(i));
combos(i, :) = bcms_bi_get(pgm(1));
end
fprintfMat(fname, combos);
endfunction
momcom_calc(pattsc, 'circle');
momcom_calc(pattss, 'square');
momcom_calc(pattst, 'triangle');
exit;
|
ec3e7c53a0d75716a7abb1ea82c4f6363368fc92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH5/EX5.4/5_4.sce | e644d15c65ef076a773f183012d30cb787d326e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | 5_4.sce | clc
//initialisation of variables
L= 200 //m
D= 18 //m
h= 6 //m
w= 10 //KN/m
//CALCULATIONS
L2= L/(sqrt((D-h)/D)+1)
H= w*L2^2/(2*D)
Tmax= sqrt((w*L2)^2+H^2)
alphamax= atand(w*L2/H)
printf ('L2= %.1f m',L2)
printf (' \n H=%.1f KN',H)
printf (' \n Tmax=%.1f KN',Tmax)
printf (' \n alphamax=%.1f degrees',alphamax)
|
84181c68f3dec727e03e93a7f170b5ed501de7e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2606/CH8/EX8.10/ex8_10.sce | 9140b92b4e38169f750f734b74918676dd1c925c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 353 | sce | ex8_10.sce | //Page Number: 8.12
//Example 8.10
clc;
//Given
K=1.38D-23;
B=40D+6;
Tant=600; //Kelvin
Trec=3000; //Kelvin
G=80; //dB
GG=(10^(G/10));
//Input noise power from antenna
Nant=K*Tant*B; //W
disp('W',Nant,'Nant=');
Nrec=K*Trec*B; //W
disp('W',Nrec,'Nant=');
Nout=(Nant+Nrec)*GG;
disp('W',Nout,'Reciver Noise Power Output');
|
e6af0a5f12edf28d8cd1f9b1629b5128aacf1a4d | fdc5047b7bf8122bad1e621df236b0481226c36e | /exemplos/xls-link-0.5.0-src/macros/xls_SelectRange.sci | a35f99d713992fb9fed8a33bdf2bac16d9113941 | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 606 | sci | xls_SelectRange.sci | // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2013 - Scilab Enterprises - Antoine ELIAS
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function ret = xls_SelectRange(aRange)
ret = xls_callMethod("worksheet", "Range", list(aRange));
endfunction
// =============================================================================
|
2bd477e9615f4c11cadd0d8ab033c8df479ef40c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH23/EX23.5/Ex23_5.sce | 1b5052ca87ceb87dfeebb0e3163ebb9f8102a3db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 795 | sce | Ex23_5.sce | //Example 23.5
Np=50;//Number of loops in the primary
Vp=120;//Primary voltage (V)
Vs=100*10^3;//Secondary voltage (V)
Ns=Np*Vs/Vp;//Number of loops in the secondary
printf('a.Number of loops in the secondary coil = %0.2e',Ns)
Ip=10;//Current in the primary coil (A)
Is=Ip*Np/Ns;//Current in the secondary coil (A)
printf('\nb.Current in the secondary coil = %0.1f mA',Is*1000)
printf('\n\nDiscussion for (b):')
Pp=Ip*Vp;//Power input (W)
printf('\nPower input = %0.2f kW',Pp/1000)
Ps=Is*Vs;//Power output (W)
printf('\nPower output = %0.2f kW',Ps/1000)
if Ps==Pp
printf('\nPower output is equal to power input')
else
printf('\nPower output is not equal to power input')
end
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
4b65de09eb5bcc9061b3b7867e377a68f2bb7ec0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH7/EX7.57/57.sci | 2089cb64d5cd609377cd93c326234f0c370e5e7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 406 | sci | 57.sci | clc;
clear all;
disp("heat transfer coefficient")
s=20/1000;//m side of channel
L=2.5;//m length of channel
U=4.5;//m/s
tb=30;// degree C
ts=70;// degree C
rho=995.7;// kg/m^3
k=0.6175;// W/m.C
v=0.805*10^(-6);// m^2/s
Pr=5.42;
Prs=2.55;// Pr at 70 degree C
Deq=4*s*s/(4*s)//m
Re=U*Deq/v
Nu=0.021*Re^0.8*Pr^0.43*(Pr/Prs)^0.25
h=Nu*k/Deq;
disp("W/m^2.C",h,"heat transfer coefficient =")
|
dc0ca58512cd622b29b1979491b1c03f3e32cd90 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH1/EX1.6/1_6.sce | fe0a774ed222a9a6a4ebd64659a0dbdda6e7e2d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sce | 1_6.sce | clc();
clear;
// To calculate the lowest energy of electron
n1=1;
n2=1;
n3=1; //values in lowest energy
h=6.62*10^(-34);
M=9.1*10^-31; //mass in kg
L=0.1; //side in nm
L=L*10^-9; //side in m
n=(n1^2)+(n2^2)+(n3^2);
E1=(n*h^2)/(8*M*L^2); //energy in j
E1eV=E1/(1.6*10^-19); //energy in eV
printf("lowest energy of electron in Joule is");
disp(E1);
printf("lowest energy of electron is %f eV",E1eV);
//answer for lowest energy in eV given in the book is wrong
|
c59277de51d5111b77f2d8113b01ea053498a64d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3753/CH3/EX3.3/Ex3_3.sce | dbb482907857e5bedbc7f034b4c8aec9888d819f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sce | Ex3_3.sce | //Example number 3.3, Page number 3.33
clc;clear;close
// Variable declaration
T=1.2 // in s
V=7500 // in m^3
// Calculation
A=(0.16*V)/T // in m^2
// Result
printf("Total absorpttion = %.f m**2 of O.W.U.",A)
|
ef451c31cc4169187311ba068b9ac84ea8e4e524 | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/PCIeGen3/PulseResponseConvolver/PulseResponseConverter.sce | 39ad81b1f39c2a8c7185f4e923bbec3e876f7b33 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,390 | sce | PulseResponseConverter.sce | // Pulse Response to impulse response (Freq Domain) converter.
// Imports pulse response from HSpice *.tr files and
// computes impulse response in frequency domain file
//
//
// Use for bus simulations from Intel
//
//
// (c)2009 L. Rayzman
// Created : 04/03/2009
// Last Modified: 04/03/2009 - Initial
//
//
// NOTES:
//
//
//stacksize(16*1024*1024);
clear; //Clear all user created variables
getf("HSPiceUtilities.sci"); // Include PWL extraction function
//////////////////////////////////////SPECIFY////////////////////////////////////
//////////////////////////////////////Main Routine////////////////////////////////////
fsource = emptystr(); // Filename of HSpice source file
fwvfrm = emptystr(); // Converted waveform filename
fcnvpar = emptystr(); // Converter instructions file
fhpwlout=emptystr(); // PWL output
cmdlinestr=emptystr(); // HSpice converter command line string.
olddir=emptystr(); // Original directory path
dialogstr=emptystr(); // Temporary string for storing dialog information
waveformstr=emptystr(); // Waveform to be converted
t = []; // Time points vector from tr* file
Doft = []; // Waveform vector from tr* file
///////////////////
// Load PWL file
///////////////////
version_str=getversion();
version_str=tokens(version_str,'-');
version_str=tokens(version_str(2),'.');
version(1)=msscanf(version_str(1), '%d');
version(2)=msscanf(version_str(2), '%d');
if (version(1)==5) & (version(2) >= 1) then // Source file
fsource=uigetfile("*.tr*", boxTitle="Please choose input *.tr* file");
else
fsource=tk_getfile("*.tr*", Title="Please choose input *.tr* file");
end
if fsource==emptystr() then
if (version(1)==5) & (version(2) >= 1) then // Source file check
messagebox("Invalid file selection. Script aborted", "","error","Abort");
else
buttondialog("Invalid file selection. Script aborted", "Abort");
end
abort;
end
fhpwlout=tk_savefile("*.inc", strsubst(fileparts(fsource, "path"),"\","/"), Title="Please choose output file"); // S2P file
if fhpwlout==emptystr() then
if (version(1)==5) & (version(2) >= 1) then // S2P file check
messagebox("Invalid file selection. Script aborted", "","error","Abort");
else
buttondialog("Invalid file selection. Script aborted", "Abort");
end
abort;
end
//Set new directory name for Hspice conversion
olddir=getcwd();
chdir(fileparts(fsource, "path"));
//Get waveform info
dialogstr=x_mdialog('Enter waveform name:', ' ', 'diff_lecroy_lai2');
if length(dialogstr)==0 then
if (version(1)==5) & (version(2) >= 1) then // Source file
messagebox("Invalid parameters selection. Script aborted", "","error","Abort");
else
buttondialog("Invalid parameters selection. Script aborted", "Abort");
end
chdir(olddir);
abort;
end
waveformstr=strcat(tokens(dialogstr(1), " ")); // Strip spaces in the waveform string (workaround Hspice bug)
//Create conversion command line
cmdlinestr="converter -t PWL -i " + strcat([fileparts(fsource, "fname"), fileparts(fsource, "extension")]) + " -o " + strcat([fileparts(fsource, "fname"), ".dat"]) + " < cnvparams.txt";
//Create converter input file
fcnvpar=strcat([fileparts(fsource, "path"), "cnvparams.txt"]); // Set instructions file.
[fhandle,err]=mopen(fcnvpar, "w");
if err<0 then
chdir(olddir);
error("Unable to create conversion instructions file");
abort;
end
mfprintf(fhandle,"1\n%s\n\n%s\n\n\n",waveformstr,waveformstr);
mclose(fhandle);
disp("***Begin tr* conversion***");
//run converter
if unix(cmdlinestr) ~= 0 then // Run simulation
if (version(1)==5) & (version(2) >= 1) then // Source file
messagebox("Conversion Failed. Script aborted", "","error","Abort");
else
buttondialog("Conversion Failed. Script aborted", "Abort");
end
chdir(olddir);
abort;
end
//fwvfrm = strcat([fileparts(fsource, "fname"), ".dat", part(fileparts(fsource, "extension"), [4:length(fileparts(fsource, "extension"))])]);
fwvfrm = strcat([fileparts(fsource, "fname"), ".dat0"]);
disp("***Begin data extraction***");
//Extract frequency response from file
[t, Doft]=extract_from_PWL(fwvfrm);
//Revert to original directory
chdir(olddir);
//Plot the unmodified data
xinit()
plot2d(t, Doft, style=2);
xtitle("Pulse Response", "Time(s)", waveformstr);
//Remove duplicate initial entry
if(t(1)==t(2)) then
t=t(2:$);
Doft=Doft(2:$);
end
//Restart at t=0
t=t-t(1);
//Remove DC offset
Doft=Doft-Doft(1);
//clear fsource;
clear fwvfrm;
clear fcnvpar;
clear dialogstr;
clear waveformstr;
clear cmdlinestr;
///////////////////
// Create PWL source file
///////////////////
[fhandle, err]=mopen(fhpwlout, 'w');
mfprintf(fhandle, ".SUBCKT impulse_src Out Gnd_Src\n");
mfprintf(fhandle, "Vsrc Out Gnd_Src PWL (\n");
for i=1:length(t),
mfprintf(fhandle, "+ %0.6e %0.16e\n", t(i),Doft(i));
end
mfprintf(fhandle, ")\n");
mfprintf(fhandle, ".ENDS\n");
mclose(fhandle);
clear fhandle;
clear t;
clear Doft;
disp("***Conversion Complete***");
|
36f709188b427442e066517f1e610e8c3105b52c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH28/EX27.12/EX27_12.sce | eedbd8ff7120c0c78f23f393b4ea83c9975b053e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 672 | sce | EX27_12.sce | // Grob's Basic Electronics 11e
// Chapter No. 27
// Example No. 27_12
clc; clear;
// If R L increases to 250 Ohms, calculate the following: Is, Il, Iz, and Pz.
// Given data
Vin = 25; // Input voltage=25 Volts
Vz = 7.5; // Zener voltage=7.5 Volts
Rl = 250; // Load Resistance=250 Ohms
Is = 75*10^-3; // Source current=75 mAmps
disp (Is,'The Source Current in Amps')
disp ('i.e 75 mAmps')
Il = Vz/Rl;
disp (Il,'The Load Current in Amps')
disp ('i.e 30 mAmps')
Iz = Is-Il;
disp (Iz,'The Zener Current in Amps')
disp ('i.e 45 mAmps')
Pz = Vz*Iz;
disp (Pz,'The Power Dissipation of Zener in Watts')
disp ('i.e 337.5 mWatts')
|
f439e6a9af9b1cea7fcb88b50854ea7270fec8cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH3/EX3.14/ex3_14.sce | 29c946624878a64d6f393812416d8c1152b46bdb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | ex3_14.sce | //Find the capacitance of a varactor diode
clear;
clc;
//soltion
//given
C=5;//pf//capcitance of varactor diode at V=4V
V=4;//V
K=C*sqrt(4);
//When bias voltage is increased upto 6 V
Vn=6;//V//new bias voltage
Cn=K/(sqrt(Vn));
printf("Capacitance (At 6 V ) = %.3f pf",Cn);
|
da9b66cbfd08fdaac1eaa9f267de87469f7a0479 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH15/EX9.15.4/Ex9_15_4.sce | 8cfe7d0db9579961f518b26be7d32498f6d1ecfa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sce | Ex9_15_4.sce | //Section-9,Example-4,Page no.-E.6
//To calcuate the pH of unknown solution.
clc;
R=8.314
T=298
F=96500
E=0.4188
E_ref=0.2415
pH=(E-E_ref)/((2.303*R*T)/F)
disp(pH,'pH of the unknown solution')
|
9746ff2646e10b827922811bbc3774d5e94e69d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /462/CH3/EX3.7.a/ex_3_7_a.sce | dee7428c3af0c457afcd855a45f7ba875a858034 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | ex_3_7_a.sce | //example 3.7(a)//
clc
//clears the screen//
clear
//clears existing variables//
disp('when V(i)=0, the transistor T(1) is operating at point B')
t=5;
//input voltage as given in question//
x=0;
V=t-x;
//output voltage in volts//
disp('here V(o)(in volts)=')
disp(V) |
886e4fd805b7d1c373daf4e3491d123c5a674709 | 42fdf741bf64ea2e63d1546bb08356286f994505 | /test_20170217_xor/xor_in.sce | 85a05206f47823f4c4c66ca0b58a035b1505fa46 | [] | no_license | skim819/RASP_Workspace_sihwan | 7e3cd403dc3965b8306ec203007490e3ea911e3b | 0799e146586595577c8efa05c647b8cb92b962f4 | refs/heads/master | 2020-12-24T05:22:25.775823 | 2017-04-01T22:15:18 | 2017-04-01T22:15:18 | 41,511,563 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 896 | sce | xor_in.sce | //xor_clk_sr = [0 1 0 0 0 0 linspace(0,0,32)]; // 1st
//xor_clk_sr = [0 1 0 1 0 0 linspace(0,0,32)]; // 2nd
xor_clk_sr = [0 1 0 1 0 1 linspace(0,0,32)]; // 3rd XOR output
xor_data_sr = [1 1 linspace(0,0,36)];
xor_in=[
linspace(1.9,1.9,6) linspace(2.1,2.1,8) linspace(2.1,2.1,8) linspace(2.1,2.1,8) linspace(2.1,2.1,8);
linspace(1.9,1.9,6) linspace(1.9,1.9,8) linspace(1.9,1.9,8) linspace(2.1,2.1,8) linspace(2.1,2.1,8);
linspace(1.9,1.9,6) linspace(2.1,2.1,8) linspace(1.9,1.9,8) linspace(1.9,1.9,8) linspace(2.1,2.1,8);
linspace(1.9,1.9,6) linspace(1.9,1.9,8) linspace(1.9,1.9,8) linspace(1.9,1.9,8) linspace(1.9,1.9,8);];
//xor_weight4x4=[
//4e-06,1e-10,1e-10,1e-10;
//1e-10,4e-06,4e-06,1e-10;
//3e-06,2e-06,2e-06,1e-10;
//1e-10,1e-10,1e-10,1e-10];
xor_weight4x4=[ // chip 18 3.0a
6e-06,1e-10,1e-10,1e-10;
1e-10,4e-06,4e-06,1e-10;
4e-06,2.5e-06,2.55e-06,1e-10;
1e-10,1e-10,1e-10,1e-10];
|
40ea83d63a62481fb32fbff6ffb7a1b790cbde2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH11/EX11.3e/11_03_example.sci | bf1d6f6a8104f37f3ecf6d79c7cacdb6711823a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sci | 11_03_example.sci | //Example 11-3 Flow of Hot Oil over a Flat Plate
T = 40 //temperature of hot oil [C]
L = 5 //length of flat plate [m]
V = 2 //free stream velocity of oil [m/s]
rho = 876 //density of oil at 40 C [kg/m^3]
nu = 2.485 * 10**-4 //kinematic viscosity of oil at 40 C [m^2/s]
Re_cr = 5 * 10**5 //critical Reynold's number
|
fe3c75015c04743fc073f4728e5e8e55135b5392 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH3/EX3.4/EX3_4.sce | 0e77235a495dfd1cd1f9877448ad759012f9f5bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 369 | sce | EX3_4.sce | //Chapter 3, Example 3.4
clc
R1=25 //resistance in ohm
R2=400 //resistance in ohm
//To solve simultaneous equation by converting them into matrices form
a=[R1 -2;R2 -8]
b=[50;3200]
x=a\b
//Results
printf("Voc = %d V\n",x(1)) //display voltage Voc
printf("R = %d Ohm",x(2)) //display Resistance R
|
c6997f5ae76abc211e63ee64e997089d97677dad | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH7/EX7.12/Ex7_12.sce | 2eaead7699e285a9097b70e33f9e3bb90311ff35 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 605 | sce | Ex7_12.sce | //Example 7.12
//Transformation of Thermal System from state description
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
// State space model of Thermal System
s=%s;
F=[-7 -12; 1 0];
G=[1;0];
H=[1 2];
J=0;
sys=syslin('c',F,G,H,J)
//------------------------------------------------------------------
//Transfer function model of Thermal System
[ch num den]=ss2tf(sys);
disp(num/den, "G=","Transfer function model of Thermal System")
//------------------------------------------------------------------
|
531b05b7d8edc96ded201671542ba4b75bd66110 | 316e1170fe9699fa45e025d6d6064fc6da74ca0d | /retaMinimosQuadrados.sce | 03058551cab72305eae3a1b3053887858ad3ac4f | [] | no_license | RafaelRMMarsol/MetodosMinimosQuadrados | e0c6c82dbee390551da2d53036e9a2be11777ee0 | 08d6dbae7fb57b9c9e35cacef1e38402eae3dd74 | refs/heads/main | 2023-01-11T11:09:09.105578 | 2020-11-13T03:44:57 | 2020-11-13T03:44:57 | 312,466,003 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | retaMinimosQuadrados.sce | clear
x=[0 1 2 3 4 7]';
y=[1 3 4 6 5 7]';
n=size(x,1);
M=[n sum(x)
sum(x) sum(x.^2)]
b=[sum(y)
sum(x.*y)]
a=inv(M)*b;
XX = 0:0.1:10;
YY = a(1)+a(2)*XX;
plot(XX, YY, 'b')
plot(x,y,'r*');xgrid
|
e3a990bbd93f176c68cc757e5632c343f9bc770f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH3/EX3.36/36.sce | c93e9b40419d2ce191357112cbb9e81be4d8f70b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sce | 36.sce | clc
// Given that
lambda = 5890 // wavelength of light in angstrom
a = 1 // Diameter of aperture in cm
// Sample Problem 36 on page no. 176
printf("\n # PROBLEM 36 # \n")
printf(" Standard formula used \n")
printf(" theta = 1.22*lambda/a \n")
theta = 1.22*lambda*1e-10/(a*1e-2) // Calculation of resolving limit of telescope
printf("\n Resolving limit of telescope is %e rad.",theta)
|
35a68249cf445ab4508a5920283ab3c9860a83d4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.2/macros/algebre/fullrf.sci | d11083f80336bda7cd82bdf3403642f496d1af6d | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 442 | sci | fullrf.sci | function [Q,M,rk]=fullrf(A,tol)
//[Q,M,rk]=fullrf(A)
//Full rank factorization : A=Q.M
//with range(Q)=range(A) and ker(M)=ker(A),
//Q full column rank , M full row rank
// rk = rank(A) = #columns(Q) = #rows(M)
//F.D.
//!
[lhs,rhs]=argn(0)
na1=norm(A,1);
if rhs==1 then tol=sqrt(%eps);end
if na1 < 1.d-10 then Q=[];M=[];rk=0;return;end
tol1=tol*na1;
[U,s,V,rk]=svd(A,tol1);
sq=diag(sqrt(diag(s)));
Q=U*sq;M=sq*V';
Q=Q(:,1:rk);M=M(1:rk,:);
|
7fa301fdd67b1ffd0a91bf2fcdf5f7662669a82a | 449d555969bfd7befe906877abab098c6e63a0e8 | /599/CH7/EX7.8/example7_8.sce | e773795c4f9d2831cf39d2378b8b31cdccedab84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 604 | sce | example7_8.sce |
clear;
clc;
printf("\t Example 7.8\n");
s1=20.51; //solubility at 10 degree per 100 gm of water
w2=277.85; //molecular weight of FeSO4.7H2O
//let x be the quantity of Na2CO3.10H2O
x=poly([0],'x'); //calc. x the weight of crystal
t=roots(900*.4-.5465*x-(900-x)*20.5/120.5);
printf("\n the weight of quantity of FeSO4.7H2O formed :%f kg",t);
p=(277.85/151.85)*900*(0.4); //weight of crystal present in the original solution
yield=t/p; //percentage yield
printf("\n percentage yield :%f percent",yield*100);
//end |
3c7db422d49eb3841caae04fa15e119052703398 | 881e0bcc7118244a24f736786ac36140acfb885e | /yeast/results/GAssist-ADI-C.yeast-1/result5s0.tst | 638eb3aca44ce100b780466b5265c3d0386e961f | [] | no_license | woshahua/Experiment_File | 3e34e5a4a622d6d260fbdf8d5ef2711712aad9bc | 6a139cd3f779373799cb926ba90d978235b0de0d | refs/heads/master | 2021-01-01T06:57:13.285197 | 2017-07-28T08:17:38 | 2017-07-28T08:17:38 | 97,557,409 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,585 | tst | result5s0.tst | @relation yeast-1
@attribute Mcg real [0.11, 1.0]
@attribute Gvh real [0.13, 1.0]
@attribute Alm real [0.21, 1.0]
@attribute Mit real [0.0, 1.0]
@attribute Erl real [0.5, 1.0]
@attribute Pox real [0.0, 0.83]
@attribute Vac real [0.0, 0.73]
@attribute Nuc real [0.0, 1.0]
@attribute Class {MIT, NUC, CYT, ME1, ME2, ME3, EXC, VAC, POX, ERL}
@inputs Mcg, Gvh, Alm, Mit, Erl, Pox, Vac, Nuc
@outputs Class
NUC CYT
MIT CYT
NUC CYT
NUC CYT
CYT CYT
NUC NUC
NUC NUC
ME3 NUC
NUC NUC
MIT MIT
ME3 ME3
CYT CYT
ME3 ME3
CYT CYT
NUC MIT
CYT NUC
CYT MIT
CYT CYT
MIT ME3
MIT ME3
NUC CYT
NUC CYT
ME2 ME3
NUC NUC
CYT NUC
CYT NUC
ME3 CYT
ME2 CYT
NUC NUC
ME1 ME1
ME1 ME1
CYT NUC
NUC CYT
CYT NUC
CYT NUC
ME3 ME3
CYT NUC
ME3 ME3
MIT NUC
NUC NUC
MIT CYT
ME3 ME3
MIT NUC
ME2 CYT
VAC NUC
ME2 CYT
MIT MIT
NUC CYT
CYT CYT
POX POX
CYT CYT
MIT MIT
CYT CYT
MIT NUC
MIT MIT
MIT CYT
MIT MIT
MIT MIT
NUC NUC
CYT ME3
EXC CYT
CYT CYT
MIT MIT
NUC CYT
MIT NUC
CYT CYT
CYT CYT
NUC CYT
CYT CYT
ME3 ME3
CYT CYT
MIT CYT
MIT CYT
CYT NUC
CYT CYT
EXC ME1
NUC NUC
NUC CYT
CYT CYT
NUC NUC
NUC NUC
NUC NUC
CYT CYT
MIT CYT
NUC NUC
NUC CYT
NUC CYT
CYT CYT
CYT CYT
NUC CYT
NUC CYT
NUC CYT
CYT CYT
CYT MIT
CYT MIT
CYT CYT
CYT NUC
NUC NUC
CYT MIT
MIT MIT
NUC NUC
NUC CYT
NUC NUC
CYT CYT
NUC CYT
ME3 NUC
MIT CYT
NUC NUC
EXC ME1
NUC NUC
CYT CYT
NUC NUC
CYT CYT
CYT CYT
VAC CYT
CYT NUC
ME3 ME3
ME3 ME3
ME3 ME3
CYT NUC
ME1 ME1
ME1 ME1
ME3 ME3
CYT NUC
POX ME1
ME3 ME3
MIT CYT
CYT CYT
EXC CYT
ME3 ME3
ME2 ME1
NUC NUC
NUC NUC
NUC CYT
CYT MIT
NUC CYT
MIT MIT
NUC NUC
VAC ME3
ME3 ME3
NUC CYT
MIT MIT
CYT CYT
CYT CYT
CYT CYT
CYT NUC
CYT CYT
NUC NUC
|
af2222bbc39b811fd9c62eb156a5b99bf48e83a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH20/EX20.2/Ex20_2.sce | 1d92950fe060bf048b8e7254ca27eec85a6df4f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | Ex20_2.sce |
N=1500//speed in rpm
E1=300//hysteresis losses
//E1=k1*N
k1=E1/N
E2=150//eddy current losses
//E2=k2*N^2
k2=E2/N^2
E=E1+E2//total iron losses
//when iron losses are reduced to half
//k1*N1+k2*N1^2=.5*E
//solving for N1
N1=(-k1+sqrt(k1^2-4*k2*(-.5*E)))/(2*k2)
mprintf("Total iron losses will be halved if speed is reduced to %d rpm", round(N1))
|
0f4613d9701bff5652de8db6398ec331f2efdac1 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/Win95-util/DllSci/tdll.sci | 8f2ae4bf4d8735d9797d0a35e70102388b5b9f55 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 95 | sci | tdll.sci |
host("make");
link('libtdll.dll",'doit','c');
[a,b]=fort('doit',1,1,'d',2,2,'d','sort',1,2);
|
41556a2fddec5647d74019f9ab11cc6f4ae78a20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2789/CH1/EX1.3/Ex1_3.sce | 50ca809240a46797cc33fc68f8385af7d24cb0c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 788 | sce | Ex1_3.sce | clear;
clc;
//page no. 17
r1 = 0.25;// radius of cylinder in feet
l = 2;//length of cylnider in feet
r2 = 0.30;// radius of co-axial cylinder in feet
mu = 0.018;//lb-sec/ft^2
torque = 0.25;// in ft-lb
dv_dy1 = torque/(4*%pi*mu*r1^2);//velocity gradient at radius = 0.25 in fps/ft
dv_dy2 = torque/(4*%pi*mu*r2^2);//velocity gradient at radius = 0.30 in fps/ft
V1 = integrate('-torque/(4*%pi*mu*r^2)','r',r2,r1);// velocity in fps
rpm1 = V1*60/(2*%pi*r1);
V2 = torque*(r2-r1)/(4*%pi*mu*r1^2);//in fps
rpm2 = V2*60/(2*%pi*r1);
hp = 2*%pi*r1*(rpm1/(550*60));
printf('Velocity gradient at the inner cylinder wall is %.1f fps/ft and \n at the outer cylinder wall is %.1f fps/ft',dv_dy1,dv_dy2);
printf('\n rpm = %.1f and approximate rpm = %.1f \n hp = %.5f ',rpm1,rpm2,hp);
|
1ac6a647fa3423ada2f139dc8b5ddf9960d68fd1 | 8c8c1ab38e21729879e1fb57636eb778aaf88ca5 | /EXP_3_1.sce | 8e7ca0e8d1216c7b0163f7613473f700a10f86a9 | [] | no_license | Rutvik1999/Scilab_3rdSemester | 3b9454b18220ed503e7129bf77a797feecd8f039 | 12342f90814f64e86398621be3070d5569388634 | refs/heads/master | 2020-05-18T08:21:10.203092 | 2019-04-30T16:03:59 | 2019-04-30T16:03:59 | 184,292,298 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | sce | EXP_3_1.sce | A = [ 5 -3 0 ; 3 -9 1 ; 0 1 -7 ];
B = [ 5 ; 2 ; 4 ];
X = A\B;
disp("Currents = ");
disp(X);
P = [31 -6 ; -6 41];
Q = [75 ; 90];
R = P\Q;
disp("Voltages VA and VB = ");
disp(R);
|
e5ec61a24c87afa19808bf3c30c693e593c3b141 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH14/EX14.3/ex14_3.sce | 36c6214eff380e315f7e0e6fa22ec88f1f5370ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | ex14_3.sce | //Exam:14.3
clc;
clear;
close;
R_Cu=1.8*10^(-8);//resistivity of pure copper at room temperature
R_CuNi=7*10^(-8);//resistivity of Cu 4% Ni alloy at room temperature
R_Ni=(R_CuNi-R_Cu)/4;//resistivity due to Impurity scattering per % of Ni
disp(R_Ni,'resistivity due to impurity scattering per percent of Ni in the Cu lattice(in ohm-meter)=') |
d5678617f98c5c9838a7da39f3003416983d37cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /23/CH12/EX12.5/Example_12_5.sce | 10c3a01da4bf427427a45919df572ae254a4f62f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 941 | sce | Example_12_5.sce | clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 12.5
//Caption : Program to Calculate the Heat transfer rate in th evaporator
M_LiCl=42.39;
M_H2O=18.015;
T1=298.15;//[K]
T2=405.15;//[K]
//Step a
m_LiCl=0.15*2;
m_H2O=2-m_LiCl;
n_LiCl=(m_LiCl*1000)/M_LiCl
n_H2O=(m_H2O*1000)/M_H2O;
dH_LiCl=-33800;
dH_a=-n_LiCl*dH_LiCl//[J/s]
//Step b
m_LiCl=0.15*2;
m_H2O=0.45;
n_LiCl=(m_LiCl*1000)/M_LiCl;
n_H2O=(m_H2O*1000)/M_H2O;
dH_LiCl=-23260;
dH_b=n_LiCl*dH_LiCl//[J/s]
//Step c
m_LiCl=0.75;
Cp=2.72;
dT=T2-T1;
dH_c=m_LiCl*Cp*dT*1000//[J/s]
//step d
m_H2O=2-m_LiCl;
dH_T2=2740.3;//[KJ/s/mol] form Steam Tables
dH_T1=104.8;//[KJ/s/mol] from Steam Tables
dH_d=m_H2O*(dH_T2-dH_T1)*1000//[J/s]
dH=approx((dH_a+dH_b+dH_c+dH_d)/1000,1);
disp('kW or KJ/s',dH,'The required Heat Transfer rate is ')
//End |
bd797418545e21a69179b6fe0ad97591ca865afe | 449d555969bfd7befe906877abab098c6e63a0e8 | /3788/CH8/EX8.5.2/Ex8_5_2.sce | d3378503c5fdbeb5155991d6e257fb20c5071778 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,005 | sce | Ex8_5_2.sce | //Example 8.5.2
//Calculate the rain attenuation
clc
clear
Upfreq=17.80 //17.80Ghz
//Polarization=vertical
kv=0.0510
av=1.0927
elevationangle=45
hs=0.05
hr=4.00
R=63
latitude=25
Ls=((hr - hs)/(sind(elevationangle)))
printf("The slant path length is %f km",Ls)
Lg=Ls*cosd(elevationangle)
printf("The horizontal projection of slant path length is %f km \n",Lg)
Yr=kv*(R)^av
printf("The specific attenuation is %f dB/km \n",Yr)
r=1/(1+0.78*(sqrt((Lg*Yr)/Upfreq))-0.38*(1-exp(-2*Lg)))
printf("The horizontal reduction factor for Miami is %f \n",r)
eta=atand((hr - hs)/(Lg*r))
Lr=(Lg*r)/(cosd(elevationangle))
X=36-abs(latitude)
v=1/(1+sqrt(sin(elevationangle))*(31*(1-exp(-(elevationangle/(1+X)))))*(sqrt(Lr*Yr)/Upfreq^2)-0.45)
printf("Vertical adjustment factor for Miami is %f \n",v)
Le=Lr*v
printf("Effective path length for Miami %f \n",Le)
A=(Yr*Le)
printf("Rain attenuation for Miami uplink of the average year is %f dB ",A)
|
f72201867551374dd16e9836844ea972c6190128 | 579578f1d058aeaebb2093b58c69fc4a54572a29 | /src/Visual/Non-verbal/Presentation Files/1 back Visual - non-verbal - instructions.sce | d21c99f957eb51d907677d04f7b005a90c6a5f3e | [
"MIT"
] | permissive | DouweHorsthuis/N-back-task-experiment | 1c1d61547d1e8ca92e4759f1bc20f73888d120fd | 46562a2602aea51788ca8dcb43f4e198af5739ee | refs/heads/main | 2023-04-18T08:46:52.509126 | 2022-01-11T16:45:01 | 2022-01-11T16:45:01 | 376,124,873 | 3 | 2 | MIT | 2021-12-07T22:01:29 | 2021-06-11T19:33:18 | Scilab | UTF-8 | Scilab | false | false | 4,511 | sce | 1 back Visual - non-verbal - instructions.sce | scenario = "1 back Visual - non-verbal";
no_logfile = false;
scenario_type = trials;
response_matching = simple_matching;
default_background_color = 128, 128, 128;
default_text_color = 200,200,200;
default_font_size = 40;
active_buttons = 2;
button_codes = 1,2;
write_codes = true;
pulse_width = 10;
pcl_file = "1 back Visual - non-verbal - instructions.pcl";
begin;
#loading stimuli
bitmap { filename = "1.png"; preload = true; } pic_cross;
bitmap { filename = "2.png"; preload = true; } pic_2;
bitmap { filename = "3.png"; preload = true; } pic_3;
bitmap { filename = "4.png"; preload = true; } pic_4;
bitmap { filename = "5.png"; preload = true; } pic_5;
bitmap { filename = "6.png"; preload = true; } pic_6;
bitmap { filename = "7.png"; preload = true; } pic_7;
bitmap { filename = "8.png"; preload = true; } pic_8;
bitmap { filename = "9.png"; preload = true; } pic_9;
bitmap {filename = "1-back-Slide1.png"; preload = true;} slide1; picture{ bitmap slide1; x = 0; y = 0; }inst_1;
bitmap {filename = "1-back-Slide2.png"; preload = true;} slide2; picture{ bitmap slide2; x = 0; y = 0; }inst_2;
bitmap {filename = "1-back-Slide3.png"; preload = true;} slide3; picture{ bitmap slide3; x = 0; y = 0; }inst_3;
bitmap {filename = "1-back-Slide4.png"; preload = true;} slide4; picture{ bitmap slide4; x = 0; y = 0; }inst_4;
bitmap {filename = "1-back-Slide5.png"; preload = true;} slide5; picture{ bitmap slide5; x = 0; y = 0; }inst_5;
bitmap {filename = "1-back-Slide6.png"; preload = true;} slide6; picture{ bitmap slide6; x = 0; y = 0; }inst_6;
bitmap {filename = "1-back-Slide7.png"; preload = true;} slide7; picture{ bitmap slide7; x = 0; y = 0; }inst_7;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_1;
}instructions_1_trial;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_2;
}instructions_2_trial;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_3;
}instructions_3_trial;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_4;
}instructions_4_trial;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_5;
}instructions_5_trial;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_6;
}instructions_6_trial;
trial{
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # Ctrl
picture inst_7;
}instructions_7_trial;
trial{ #this is the first screen to prepare people
trial_duration = forever; # trial lasts until target
trial_type = specific_response; # button is pressed
terminator_button = 1,2; # left-mouse button
picture {
text {font_size=25; font="Arial"; caption ="PLEASE DOUBLE PRESS THE YELLOW OR BLUE BUTTON TO START"; font_color = 200,200,200;};
x=0;y=0;};
}start_trial;
trial{ # the first stim is too quick if there is no delay. This trial puts 2sec between the start and the stim
trial_duration = 2000; #2 sec before the first stim
stimulus_event {
picture {
text {caption ="+";};
x=0;y=0;};
}wait_event;
stimulus_event {
nothing{};
deltat=500;
}code_event;
}wait_trial;
trial{ #this is the target trial
trial_duration = 500;
stimulus_event {
picture {
} target;
port_code = 10;
target_button = 1;
}t_event;
}t_trial;
trial{ #this is the non-target trial
trial_duration = 500;
stimulus_event {
picture {
} nontarget;
port_code = 11;
target_button = 2;
}nt_event;
}nt_trial;
trial{ #this is the isi trial
trial_duration = 500;
stimulus_event {
picture {bitmap pic_cross;
x=0; y=0;
}fix_cross ;
}isi_event;
}isi_trial;
trial {
trial_duration = 2000;
stimulus_event {
nothing{};
code = "end";
port_code = 200;
time = 0;
} event_end;
} end_trial; |
669028b44bc3ec571d73e15f7828fce2737ef43f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH1/EX1.6/Ex1_6.sce | 941c237e35c810dc198a77cfb22a6dc33d8544d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 801 | sce | Ex1_6.sce | clear all;
clc;
d = 7/8;//diameter of the bar in inches
l = 10;//length in feets
P = 6;;//axial pull in tons
E = 13000;//modulus of elsticity in tons/in^2
m = 4;
A = 0.25*%pi*d^2;//in in^2
V = 0.25*%pi*d^2*l*12;//volume in cub.inches
p = P/A;//in tons/in^2
e = p/E;
del_l = e*l*12;//stretchof the bar in inches
Lateral_strain = e/m ;//lateral strain
del_d = Lateral_strain*d;//Contraction in diameter in inches
printf('The Contraction in diameter is %f inches',del_d);
k = e*(1-2/m);//(del_V)/(V)
del_V = k*V;//change in volume in cub.inch
printf('\n The change in volume is %.4f cub. inch',del_V);
W = 0.5*P*del_l;;//work done in stretching the bar in in-ton
printf('\n The work done in stretching the bar is %.4f in-ton',W);
//there is an error in the answer given in textbook.
|
62564a63b886eaecabbd91d48bbd9aa07a207537 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH14/EX67.2/67.sce | 90a622c1404bfa34a88b27c769f0fb050784ba71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 172 | sce | 67.sce | clc
//initialisation of variables
a=0.51//mm
f=0.1//m-kg
//CALCULATIONS
N=a/(a+b)//mm
//RESULTS
printf('the numberator and denominator of the right side=% f mm',N)
|
d28ac3e17eca5247b20efaa5e8e4378e0082ebbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH19/EX19.4/example4.sce | 815e42e1a8bdebbfca4cdee5f63b529c4a9b170b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 642 | sce | example4.sce | // find closed-loop total harmonic distortion
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 19-4, page 714
clear; clc; close;
// Given data
R1=10^2;// in ohms from the given figure
Rf=3.9*10^3;// in ohms from the given figure
Avol=10^5;// Avol of 741C
THDol=7.5;// open loop total harmonic distortion in %
// Calculations
B=R1/(R1+Rf);// feedback fraction
THDcl=THDol/(1+(Avol*B));// closed loop total harmonic distortion in %
disp("%",THDcl,"closed-loop total harmonic distortion=")
// Result
// closed-loop total harmonic distortion is 0.003% |
d4257112662315f8a3308b5459c30ad6889f672d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2223/CH4/EX4.3/Ex4_3.sce | 97acd7278dda8622687dea7813e28eac4626d6be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,174 | sce | Ex4_3.sce | // scilab Code Exa 4.3 Calculations on Steam Turbine Plant
p1=82.75; // Turbine Inlet Pressure in bar
T1=510; // Turbine Entry Temperature in Degree Celsius
pc=0.042; // Condenser Pressure in bar
H=3420;
n_e=0.85;
gamma=1.4;
n_st1=0.85;
p2=22.75;
// for regenerative cycle
hs(1)=121.4; // from steam tables and mollier chart
p(6)=p2; // pressure at bleed point 1
Hs(6)=3080; // Enthalpy of steam at bleed point 1
h1s=931;
hs(6)=h1s; // Enthalpy of water at bleed point 1
H_22=H-(n_st1*(H-h1s));
p(5)=10.65; // pressure at bleed point 2
Hs(5)=2950; // Enthalpy of steam at bleed point 2
hs(5)=772; // Enthalpy of water at bleed point 2
p(4)=4.35; // pressure at bleed point 3
Hs(4)=2730; // Enthalpy of steam at bleed point 3
hs(4)=612; // Enthalpy of water at bleed point 3
p(3)=1.25; // pressure at bleed point 4
Hs(3)=2590; // Enthalpy of steam at bleed point 4
hs(3)=444; // Enthalpy of water at bleed point 4
p(2)=0.6; // pressure at bleed point 5
Hs(2)=2510; // Enthalpy of steam at bleed point 5
hs(2)=360; // Enthalpy of water at bleed point 5
m=1;
h_c=121.4;
x=0.875;
disp(x,"(a)the final state at point C is")
for i=2:6
alpha(i)=(Hs(i)-hs(i-1))/(Hs(i)-hs(i));
m=m*alpha(i);
end
disp("kg",m,"(b)The mass of steam raised per kg of steam reaching the condenser is")
// part(c) thermal efficiency with feed heating
H_c=2250;
h_n=hs(6);
n_th=1-((H_c-h_c)/(m*(H-h_n)));
hr_t=3600/n_th;
//(c) the improvement in thermal efficiency and heat rate
c=H-H_c;
d=H-h_c;
n_R=(H-H_c)/(H-h_c);
hr_R=3600/n_R;
deln_th=(n_th-n_R)/n_R;
disp ("%",deln_th*100,"(c)therefore, the improvement in efficiency is")
delhr_t=(hr_R-hr_t)/hr_R;
disp ("%",delhr_t*100," and, the improvement in heat rate is")
// part(d) decrease of steam flow to the condenser per kWh due to feed heating
q_s=m*(H-h_n);
q_r=H_c-h_c;
w_t=q_s-q_r;
wt_m=w_t/m;
sf_r=3600/wt_m;
s_c=sf_r/m;
// without feed heating
wt_f=H-H_c;
m_wf=3600/wt_f;
sr_c=(m_wf-s_c)/m_wf;
disp ("%",sr_c*100,"(d)the decrease in steam reaching the condenser is")
disp("comment: the calculation for the improvement in efficiency is wrong in the book.")
|
a4cd5269d6cd56c879a3cdc30caf2d7a5f6c394c | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/PulseWaveSolver/Tests/AInflow.tst | 4f96cf05ed5a1391bdaa6ff217d8bcaa45bf4483 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 682 | tst | AInflow.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>AInflow Inlet Condition, P=5</description>
<executable>PulseWaveSolver</executable>
<parameters>AInflow.xml</parameters>
<files>
<file description="Session File">AInflow.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="A" tolerance="1e-12">14.7991</value>
<value variable="u" tolerance="1e-12">15.4943</value>
</metric>
<metric type="Linf" id="2">
<value variable="A" tolerance="1e-4">1.01308</value>
<value variable="u" tolerance="1e-4">6.50395</value>
</metric>
</metrics>
</test>
|
186f41e8222b558620d15aa067ba0f1779c32437 | 37950f16d052f7743e8ddc536e89c28f717a7229 | /main_test.sci | 9156204e102be80e7c7640bbe951bf1b45457151 | [] | no_license | tauhideee/SIM-Scilab | 51aca407e107500d6dbb780db4ceebb5a18ef03f | d94b53bb856b59bb33ace4ff001fe96c3c8229bb | refs/heads/master | 2021-01-22T14:20:56.974550 | 2015-07-18T10:26:44 | 2015-07-18T10:26:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,376 | sci | main_test.sci | // Delete figures, memory and screen
xdel(winsid()); clear; clc
function y = fun2fit(x, c)
y = c(1)* cos(c(2)*x+c(3)) + c(4);
endfunction
// This is how we define the error to be minimized.
// Function leastsq iterates through this error until it's
// not posible to reduce it any more.
function e = myerror(c, x, y)
e = fun2fit(x, c) - y;
endfunction
// Declare the objective function, or function to be minimized
//exec('C:\Users\Bene\Dropbox\Dokumente\Optical Design\Superresolution\Scilab\nonlinear_fit_1.sci')
// Define our initial data or measured points
x = [175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215]';
y = [77,78,78,79,88,96,99,100,99,92,84,78,78,79,82,90,95,100,98,90,84,79,79,83,88,98,100,103,102,98,90,83,80,81,88,95,99,103,101,95,91]';
// This is our guessed coefficients. First attempt.
c0 = [1 2 3]';
y0 = fun2fit(x, c0);
// Plot the original points and the starting point in our problem
set("current_figure", 0)
plot(x, y, 'g*', x, y0, 'ro')
// Launch the optimization function. Provide data and coefficients
[f, copt] = leastsq(list(myerror, x, y), c0)
// Plot results after optimization
yopt0 = fun2fit(x, copt);
plot(x, yopt0, 'bo-')
legend(['Original data'; 'Starting point'; 'After 1st. least square fit']);
|
69d7fbb89fa696fd9f25c889a908b193834c8229 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.11/ch8_11.sci | e1c1c4155acec9c5681f0e3f8ba38b5d2d9dbd56 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sci | ch8_11.sci | //to calculate net power op,eff,line current and pf
clc;
j=sqrt(-1);
Zs=(1/3)*(.3+j*6);
phi=atand(imag(Zs)/real(Zs));
Vt=400/sqrt(3);
Ef=600/sqrt(3);
a=sqrt(Vt^2+Ef^2-2*Vt*Ef*cosd(phi));
Ia=a/abs(Zs);disp(Ia,'line current(A)');
B=acosd((Vt^2+a^2-Ef^2)/(2*Vt*a));
phi=90-(90-atand(imag(Zs)/real(Zs)))-B;disp(cosd(phi),'pf');
Pein=Vt*Ia*cosd(phi);
Ra=.1;
b=Ia^2*Ra;
loss=2400;
Pmout=Pein-loss/3-b;disp(Pmout,'net power op(W)');
eff=Pmout/Pein;
disp(eff*100,'efficiency(%)'); |
1aa9a8cb2780fea3e9b5faad0c7d1501d3ae7f9a | 05d972abeab11d213913aa6124e6a2104d859132 | /etc/McpSelNasMinus.tst | b3cda1c15ac739cf2578471f0e5d3f0bcb49f54d | [] | no_license | LivTel/sdb_puller | 50ac8289d57c4927245ca70c4809cf2b9c807e82 | 9e573ee4d20035f846cb010a02099b9a25dc4e76 | refs/heads/master | 2022-06-24T04:59:10.771334 | 2019-12-18T19:10:47 | 2019-12-18T19:10:47 | 179,494,067 | 0 | 0 | null | 2020-07-01T23:30:44 | 2019-04-04T12:34:54 | C | UTF-8 | Scilab | false | false | 31 | tst | McpSelNasMinus.tst | sysreq, SYSREQ_REQ_FOCUS_NASM
|
eeb4826bcf21fbbe234fa67cd18a89bca6a9aa78 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH7/EX7.6/Ex7_6.sce | cad9914b28494b2035ac858ab19af99bbb42aca2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 356 | sce | Ex7_6.sce | //Example 7_6
clc();
clear;
//To find out the rotation rate
at=8.6 //units in meters/sec^2
r=0.2 //units in meters
alpha=at/r //units in rad/sec^2
t=3 //units in sec
wf=alpha*t //units in rad/sec
printf("The rotation rate is wf=%d rad/sec",wf)
//In textbook answer is printed wrong as 129 rad/sec but the correct answer is 128 rad/sec |
47bcf6651eeae0572c53f54ba9d798dac7681b15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH13/EX13.7/13_07.sce | e888bdc1652af50e0bba65968e38494718b8f909 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 914 | sce | 13_07.sce | //Chapter 13, Problem 7, figure 13.37
clc;
E1=10; //e.m.f source 1
R1=2; //resistor 1
R3=5; //resistor 2
R2=8; //resistor 3
R=10; //resistor 4
I1=E1/(R1+R2);
V2=I1*R2;
r=R3+((R1*R2)/(R1+R2));
I=V2/(R+r);
printf("(i) The 10 resistance is removed from the circuit as shown in Fig. 13.38(a)\n\n");
printf("(ii) There is no current flowing in the 5 resistor and current I1 is given by\n");
printf("I1 = %.3f A\n",I1);
printf("P.d across R2 is given by\n E = %.3f V\n\n",V2);
printf("(iii) Removing the source of e.m.f. gives the circuit of Fig. 13.38(b) Resistance,\n");
printf("r = %.3f ohm\n\n",r);
printf("(iv) The equivalent Thévenin’s circuit is shown in Fig. 13.38(c)");
printf("Hence the current flowing in the 10 resistor of Fig. 13.37 is \n");
printf("I = %.3f A",I);
|
cfea11c58d46acce37b662302ff589fd2c77460b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH4/EX4.42/Ex4_42.sce | 8952674cdb3b8fa7a05c41bf79dfffcd4df2944d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 563 | sce | Ex4_42.sce | clc;
N=1000; // speed of dc series motor
v=250; // supply from mains
i=50; // current drawn from mains
r=0.6; // armature + field resistance
rg=4.4; // additional resistance
// field flux is proportional to armature current
Ea1=v-i*r; // counter EMF at 1000 rpm
// Ea2=v-(n2/20)*(r+rg) where Ea2 is counter EMf at speed n2 . taking ratio of Ea2/Ea1 we obtain a quadratic equation in n2 whose terms are given by
t1=(Ea1*i)/N;
t2=(N*i)*((r+rg)/(N/i));
t3=-(N*i*v);
p=[ t1 t2 t3];
n=roots(p);
printf('New speed of motor is %f rpm',ceil(n(2)));
|
9e8e13e4d9f35a9b6d584ea5d275640590aca266 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH3/EX3.12/ex12.sce | fee809129b578961953344d4b578258185d5e755 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 807 | sce | ex12.sce | //ques12
//Using Generalized Charts to Determine Pressure
clc
//(a)
R=0.5956;//Gas constant for a given substance in psia.ft^3/lbm.R
Pcr=3200;//Critical Pressure in psia
Tcr=1164.8;//Critical Temp in R
v=0.51431;//specific volume in ft^3/lbm
T=600;//Temperature in F
//so
P=1000;//Pressure in psia from Table A-6E
printf('\n(a) Pressure at a specified state = %.0f psia',P);
//(b)
T=1060;//Temperature in F
P=R*T/v;//Pressure in psia
printf('\n(b)Pressure of the steam under specified condition = %.0f psia',P);
//(c)using generalised compressibility chart
Vr=v*Pcr/(R*Tcr/Pcr);//reduced volume
Tr=T/Tcr;//reduced temperature
//so
Pr=0.33;//from compressibility chart
P=Pr*Pcr;//final Pressure in psia
printf('\n(c) Pressure(using generalised compressibility chart) = %.0f psia ',P);
|
497a35afb7e5b87436d3bedcc11188bd2cdd9d9e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH5/EX5.3/3.sce | cbd8adcbbc6081e49f7796558ce43a5b48a5caad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 281 | sce | 3.sce | clc
clear
//input
f=0.15 //focal length
u=0.2 //distance of object
//calculation
x=(1/-f)-(1/u)//lens formula
y=1/x
m=y/u//linear magnification
//output
printf("the position of image is %3.3f m",y)
printf("\n linear magnification is %3.3f hence image is diminished",m)
|
95ddc9541f8788f0cf2aac314a26bec97f0bb340 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH1/EX1.13/ex_1_13.sce | 519c3e69f1e0d3e44368435ddd1dc52f6d395175 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 132 | sce | ex_1_13.sce | //Example 1.13// resolution
clc;
clear;
close;
//given data :
D=1/9999;
F=9.999;
R=D*F;
disp(R*10^3,"resolution,R(mv) = ")
|
f392e2aa476e8324d587eaab75e2ab06622bf841 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH1/EX1.21/Ex1_21.sce | 57895a4f1ecfeeafb814b716a29ca95bf59c7963 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | Ex1_21.sce | //Chapter 1: Structure and Bonding
//Problem: 21
clc;
// Solution
v_n = 2 * 5 // number of valence e- in nitrogen
v_co = 4 + 6 // number of valence e- in CO
mprintf("The Number of valence electrons in N2 is %d\n", v_n)
mprintf(" The Number of valence electrons in CO is %d", v_co)
|
d1bb67c497b0413475372b873305dab3ac8a80e8 | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH12/EX12.2/ex_12_2.sce | 28bca9996f6beee841b7403bd9df5dc9a1f34bd2 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,505 | sce | ex_12_2.sce | //dsing sleeve and cotter joint
clc
//solution
//given
P=60*10^3//N
ft=60//N/mm^2
t=70//N/mm^2
fc=125//N/mm^2
pi=3.14
//let d be diameter of rods
//P=A*ft
//P=(p1/4)*d^2*ft
printf("the dia of cotter jont is,%f mm\n",sqrt((P*4)/(pi*ft)))
printf("the standard dia of cotter jont is d=26mm\n")
d=36//mm
//let d2 be dia of spigot and t11 be thickness
//t11=d2/4
//P=[{(pi/4)*d2^2}-(d2*t)]*ft=32.13*d2^2
//d2=sqrt(P/32.13)//mm
//t11=d2/4//mm
printf("the dia d2 is,%f mm\n",sqrt(P/32.13))//mm)
printf("the dia d2 is 44mm\n")
d2=44//mm
printf("the thickness is ,%f mm\n",d2/4)
printf("the thckness is,11mm\n")
t11=11//mm
//let fc1 be induced crushing stress
//fc1=P/(d2*t11)//N/mm^2
printf("the value of d2 is,%f mm\n",d2)
printf("the induced crushing stress is,%f N/mm^2\n ",P/(d2*t11))
printf("the induced crushing stress is say 124 N/mm^2 whihc is less then 125,hence d2 and t11 is correct\n")
//let b be width of cotter
//P=2*b*t11*t=(2*11*70)*b
//b=P/(2*11*70)//mm
printf("the width of cotter is,%f mm\n ",P/(2*11*70))
printf("the width of cotter is say 40mm\n")
//let a be distance from end of slot to end of the rod
//P=2*a*d21*t
//a=P/(2*d2*t)//mm
printf("distance from end of slot to end of the rod is,%f mm\n",P/(2*d2*t))
printf("distance from end of slot to end of the rod is say 10mm")
//let c be distance of rod end from its end to cottre hole
//P=2*(d1-d2)*c*t=2240*c
c=P/(2240)//mm
printf("istance of rod end from its end to cottre hole is,%f mm",c)
|
a8092bd84eaef5caff9a65f94e45bc1ea3ec6d14 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH34/EX34.8/Ex34_8.sce | 2607542f339a875973572690deb2c210b782654c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,077 | sce | Ex34_8.sce | // Example 34_8
clc;funcprot(0);
//Given data
a=[5 4 2 1 0.5];// Load in kW
b=[200 4000 2000 1000 1560];// No of hours at load
CV_c=28000;// kJ/kg
Cc=350;// Cost of coal in Rs./ton
CV_d=36000;// kJ/kg
Cd=1200;// Cost of diesel oil in Rs./ton
Ci_s=18500;// Capital investment for steam plant in Rs/kW
Ci_d=17000;// Capital investment for diesel plant in Rs/kW
Es=320000;// Extra annual salary for steam plant in rupees
// Calculation
Cce=(10^6*Cc)/(CV_c*1000);// The cost of coal energy per 10^6 kJ
Cde=(10^6*Cd)/(CV_d*1000);// The cost of diesel oil energy per 10^6 kJ
for (i=1:5)
c(i)=a(i)*b(i);// MW-hrs
d(i)=5*10^6*(1.5+(2*a(i))+(0.025*(a(i))^3));// Input rate in kJ per hour for steam plant
e(i)=b(i)*d(i);// Total input in kJ
f(i)=5*10^6*(2.25+a(i)+(0.12*(a(i))^2)-(0.004*(a(i))^3));// Input rate in kJ per hour for diesel plant
g(i)=b(i)*f(i);// Total input in kJ
end
N=b(1)+b(2)+b(3)+b(4)+b(5);// Total no. of hours at load
MW_hrs=c(1)+c(2)+c(3)+c(4)+c(5);// Total MW-hrs
T_s=e(1)+e(2)+e(3)+e(4)+e(5);// Total input in kJ for steam plant
T_d=g(1)+g(2)+g(3)+g(4)+g(5);// Total input in kJ for diesel plant
Ahr_s=(T_s)/(MW_hrs*1000);// Average heat rate in kJ per kW hour (for steam plant)
Ahr_d=(T_d)/(MW_hrs*1000);// Average heat rate in kJ per kW hour (for diesel plant)
// Steam plant
Fc_s=a(1)*10^3*Ci_s*(12/100);// Fixed cost in Rs./year
Oc_s=((T_s/10^6)*Cce)+(Es);// Operating cost in Rs./year
Tc_s=Fc_s+Oc_s;// Total cost in rupees
// Diesel plant
Fc_d=a(1)*10^3*Ci_d*(12/100);// Fixed cost in Rs./year
Oc_d=((T_d/10^6)*Cde);// Operating cost in Rs./year
Tc_d=Fc_d+Oc_d;// Total cost in rupees
printf('\nTotal cost of steam plant=Rs.%0.4e \nTotal cost of diesel plant=Rs.%0.4e',Tc_s,Tc_d)
if(Tc_s<Tc_d)
printf('\nThe steam plant would be the choice under the given circumstances despite the higher investment and the greater relative labour cost.');
else
printf('\nThe diesel plant would be the choice under the given circumstances.');
end
// The answer provided in the textbook is wrong
|
3b5518518d2b8e38c156c49e56c8f75e739206c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH8/EX8.18/8_18.sce | ca9c1dcf67c34f8127fc56ab57dafbdabaefaa46 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 396 | sce | 8_18.sce | R=1.987;//universal gas constant//
T1=293;//initial temperature in kelvin//
T2=303;//Final temperature in kelvin//
K1=6.68*10^-3;//rate constant corresponding to T1 in per min//
K2=1.31*10^-2;//rate constant corresponding to T2 in per min//
E=(2.303*R*T1*T2*log10(K2/K1))/(T2-T1);//energy of activation in Kcal per mol//
printf('Energy of activation=E=%fcal per mol=11.88Kcal per mol',E);
|
5f4c4bc783077e896a56cf3d11e150abd5c459ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH10/EX10.21/10_21.sce | 43d9c48e28c8cb8c58604e14a646c8c680cfa822 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 767 | sce | 10_21.sce | //To find diameter and number of collars
clc
//Given:
d2=300/1000,r2=d2/2 //m
W=200*1000 //N
N=75 //rpm
mu=0.05
p=0.3 //N/mm^2
P=16*1000 //W
//Solution:
//Calculating the angular velocity of the shaft
omega=2*%pi*N/60 //rad/s
//Calculating the total frictional torque transmitted
T=P/omega //N-m
//Calculating the external diameter of the collar
//We have, T=2/3*mu*W*(r1^3-r2^3)/(r1^2-r2^2), or (2*mu*W)*r1^2-(3*T-2*mu*W*r2)*r1+(2*mu*W*r2^2-3*T*r2)=0
A=2*mu*W, B=-(3*T-2*mu*W*r2), C=2*mu*W*r2^2-3*T*r2
r1=(-B+sqrt(B^2-4*A*C))/(2*A)*1000 //mm
d1=2*r1 //mm
//Calculating the number of collars
n=W/(p*%pi*(r1^2-(r2*1000)^2))
//Results:
printf("\n\n External diameter of the collar, d1 = %d mm.\n",d1)
printf(" Number of collars, n = %d.\n\n",n+1) |
9bbad463c86f926cc60b7d802282f3f2e88024f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH12/EX12.2/12_2.sce | e7f4f0a70a5892a91f64d95734ece78cafbcfec1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | 12_2.sce | clc
//initialisation of variables
a=27.6//sq ft
h=1.37//ft
d=1.53*(27.9)^0.38*(1.36)^0.24//ft
//CALCULATIONS
R=d/4//ft
A=(%pi*d^2)/4//sq ft
//RESULTS
printf('The diameter hydraulics radius and area of the hydraulically equivalent circular conduit=% f sq ft',A)
|
4279f658bbe34cafe670d97f446149822aad5f20 | 85796c94fc9059fcb09697ae3509fd9488d77aa8 | /initLadder.sci | d85fa71d044d7eec0b3f4ff4f6f0336d1b8aa6d0 | [] | no_license | MyCSDegree/snakenladder | 680d5cd7687da44a227c2b242765ab96e0b7534d | bedb901cbcede9ca3972514ec12686b33a9eaf85 | refs/heads/master | 2016-08-06T04:08:29.276575 | 2015-10-28T01:16:18 | 2015-10-28T01:16:18 | 42,781,425 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sci | initLadder.sci | // TODO: fix cyclic chains of snakes and ladders
global ladder_top
global ladder_bottom
ladder_top = rand(1, sizeladder);
ladder_top = ladder_top .* (85) + 15;
ladder_bottom = zeros(1, sizeladder);
idx = 0;
for i = ladder_top
idx = idx + 1;
ladder_bottom(1, idx) = rand() * (i - 10) + 5;
end
for i = 1:sizeladder
ladder_top(1, i) = round(ladder_top(1, i));
ladder_bottom(1, i) = round(ladder_bottom(1, i));
end
|
827055ad45d8bc9e2a3311465102b712e3a4a99f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH12/EX12.10/Ex12_10.sce | 7446536d2187655f84defbcce83b9ffa1781c58b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 740 | sce | Ex12_10.sce | clear all; clc;
disp("Scilab Code Ex 12.10 : ")
//Given:
E = 200*10^6; //kN/m^2
I = 17*10^-6;//mm^4
l_ac = 2; //m
l_cF = 4; //m
l_Fb = 2; //m
l_cb = 6; //m
l_aF = 6; //m
l_ab = 8; //m
F = 16; //kN
R_b = (F*l_cb)/l_ab;
R_a = F - R_b;
mc = R_a*l_ac;
mf = R_b*l_Fb;
theta_ca = (0.5*l_ac*mc)/(E*I);
A1 = 0.5*l_aF*mf;
t1_ba = (l_Fb + l_aF/3)*(A1);
A2 = 0.5*l_Fb*mf;
t2_ba = (l_Fb*2*A2)/3;
t_ba = (t1_ba+t2_ba)/(E*I);
theta_c = (t_ba/l_ab)-(theta_ca);
//Display:
printf("\n\nThe slope at point C of the steel beam = %1.5f rad',theta_c);
//----------------------------------------------------------------------END--------------------------------------------------------------------------------
|
7ad9cbba0f296364db68ed90156a2de3cb782776 | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH10/EX10.5/example5_sce.sce | 433ba5024e29407b6ea4cd1b534f93700dd1a8ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 166 | sce | example5_sce.sce | //chapter 10
// example 10.5
// page 351
R1=20
Vin=12;
Vout=0;//worst case for masimum power across R1
VR1=Vin-Vout;
disp(VR1)
PR1=VR1^2/R1;
disp(PR1)//watt |
05f847ab9888b7679bce8771a609eef4180e7917 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH8/EX8.2.e/E8_2.sce | ab855f45686da09dc3849b20357aa03ef8b68cb2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | E8_2.sce | clc
//Initialization of variables
pKa=4.88
C=0.01 //M
pKw=14
//calculations
pKb=pKw-pKa
Kb=10^(-pKb)
x=(sqrt(C*Kb))
pOH=-log(x)
pH=14-pOH
f=x/C
//results
printf("fraction protonated = %.1e",f)
printf("\n 1 molecule in about %d",1/f)
|
57d1add0f59f59f7a6ba7721a1edb09efac6f6b2 | fae96790eeb4b61b14b34826e3347d2ee5766317 | /projekty/Analizator widma - Atmega2561/Sources/PC/Simulation/fft/plots.sci | 3f26c6b0f6e1d8835d4ae99945502592ac112591 | [] | no_license | plawnik/projekty-zbior | a4a1cf0d00e7b3e3ddedd52184ef175dae3ca019 | fdbd0add3b31a33bd48c8ff605842796e7c31766 | refs/heads/master | 2022-07-11T22:35:40.645950 | 2020-05-17T17:11:15 | 2020-05-17T17:11:15 | 264,716,797 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 193,758 | sci | plots.sci | //clear commands
clear;
xdel();
clc;
clf();
//write vectors
x=[-0.442671 0.359050 -0.104953 0.802850 0.515488 0.119297 -0.067232 -0.934263 -0.397992 0.221656 0.574816 -0.812922 0.412275 0.318949 0.546983 0.935423 0.801874 0.360454 0.451766 0.152806 -0.704398 -0.383526 0.943968 0.477523 -0.828303 0.675832 -0.011261 -0.180700 0.283853 0.227882 -0.235328 -0.098300 -0.315165 -0.556688 0.772881 0.183325 -0.886715 -0.236061 -0.283853 0.470321 0.405560 0.915647 0.710624 -0.467208 0.896786 0.956725 0.391034 0.037873 -0.128025 -0.826594 0.473617 -0.888974 0.131077 -0.363811 0.338359 0.839900 -0.271035 0.227638 -0.806513 0.030610 -0.045259 0.956847 0.383953 -0.467940 0.610889 0.370403 -0.592456 0.437666 0.656178 -0.125828 0.200354 -0.520554 -0.725700 0.777154 -0.746147 0.925779 -0.569018 -0.128819 0.127415 -0.704703 0.981140 0.357768 -0.083346 0.200171 -0.609729 -0.064791 0.242531 -0.369793 -0.869015 0.858455 0.321512 0.991577 -0.181799 -0.215918 0.680960 0.211158 0.144505 0.212989 -0.919065 0.220557 -0.320292 -0.656972 -0.793878 -0.869259 -0.404462 0.144627 -0.310587 -0.588672 0.378643 0.471175 0.030061 0.385968 -0.405438 0.017426 0.968932 -0.643910 -0.234779 0.937864 -0.116672 -0.332560 -0.578722 0.937864 0.763970 -0.971252 -0.605884 0.649586 -0.664174 0.398541 -0.592761 0.106296 0.887204 0.749321 -0.967895 0.126194 -0.633106 0.024262 0.068880 -0.581103 -0.685354 -0.402448 0.415998 -0.772271 -0.814631 0.550523 0.490219 0.318888 -0.369182 -0.922483 0.260292 0.131016 -0.699576 -0.667104 -0.044221 0.897946 -0.275613 -0.968566 0.515122 0.555712 -0.158605 0.116123 0.833308 -0.751885 -0.266884 -0.196326 -0.126011 -0.758415 0.128391 0.322672 0.706595 -0.936583 -0.760674 0.654714 0.531846 -0.325297 -0.507614 0.592212 -0.241676 -0.508896 -0.284524 0.425459 0.192297 0.063875 -0.654164 0.570482 -0.597095 -0.766717 0.218970 0.451338 -0.673940 -0.432478 0.502731 0.948424 0.169164 0.898740 0.337870 -0.274026 -0.321451 0.770012 -0.251137 -0.249001 0.833369 -0.395917 0.385968 0.315714 0.027375 0.408246 -0.337565 0.876827 0.801752 -0.174291 0.848323 -0.976684 -0.809320 0.348430 -0.315897 0.886532 -0.256386 0.501267 -0.923704 -0.697623 0.284707 0.812372 0.437483 0.042329 0.473983 0.380840 -0.766778 -0.579028 0.231361 -0.145787 -0.700858 -0.403119 -0.913633 -0.370830 -0.510666 0.876034 0.516526 -0.913083 -0.780572 -0.667592 0.335856 -0.323344 0.467330 -0.942747 -0.802545 -0.341166 0.792352 -0.650258 0.271401 -0.678823 0.937559 0.161412 0.160863 0.480270 -0.424116 0.107334 0.119297 -0.920286 0.763482 0.355998 -0.369427 0.700003 0.662648 0.710440 -0.584582 -0.210425 -0.903256 -0.806452 -0.074618 0.432051 0.499924 -0.550096 0.388409 -0.539598 -0.177038 -0.724174 0.466903 -0.268044 -0.040010 0.591723 -0.407819 0.375469 0.256264 0.167577 0.037202 -0.176427 0.660573 -0.584521 0.789178 0.443159 -0.914792 0.560778 0.286905 0.575365 0.535020 -0.495834 -0.917417 0.798822 -0.431806 0.688711 0.492843 0.227332 0.652699 0.282388 0.299783 -0.343974 -0.021760 0.989990 -0.434187 -0.632862 -0.710868 0.806085 -0.375530 0.408551 -0.701529 -0.977599 -0.691397 -0.842769 -0.753288 -0.198706 -0.519761 -0.018708 0.167882 0.627613 0.923460 -0.189123 0.424665 -0.046724 0.662709 -0.567492 -0.924009 -0.655629 0.770135 -0.681204 -0.360820 0.445662 0.722770 0.804987 -0.191382 0.073214 -0.626209 0.426252 -0.305582 -0.250710 -0.400800 0.227577 0.142979 0.990295 -0.317362 -0.141209 -0.297891 0.661611 0.501572 -0.733024 -0.206946 -0.288675 0.575793 -0.200476 0.652333 -0.404706 0.042879 0.529344 -0.395062 -0.294046 -0.379009 -0.384625 0.233436 0.117832 -0.377239 -0.488754 0.002167 0.961669 -0.917356 -0.166540 0.902829 0.740165 0.059786 0.702261 0.680776 0.897641 -0.820612 0.368145 -0.793207 0.955931 -0.525315 -0.064486 -0.444929 -0.470870 0.592212 0.997070 0.351299 -0.469649 0.422895 0.989929 0.952513 0.881466 0.221778 0.088046 0.021760 -0.960265 0.277566 0.441450 -0.940733 0.653859 0.196753 -0.424299 -0.546190 0.660085 0.862300 0.764702 0.615528 0.133763 0.131382 0.187658 -0.246498 -0.793817 -0.666311 -0.315470 0.860591 0.360942 0.633229 0.921384 -0.532640 0.421064 0.314920 -0.222205 0.728507 0.541185 0.061129 0.770684 -0.596912 0.514634 -0.722526 0.324442 -0.707022 0.710746 0.533006 0.702261 0.699637 -0.047151 -0.825007 -0.590564 -0.536729 0.650319 -0.816523 -0.117649 0.147374 -0.503037 0.325297 0.274392 0.928892 -0.951170 0.672048 0.153111 0.758965 0.492538 -0.456343 -0.081210 0.355205 0.918088 0.940428 0.759331 -0.411054 -0.591906 0.525437 -0.048189 0.828852 -0.744072 0.220801 -0.675100 0.804682 0.624866 -0.520981 -0.306253 0.552721 0.961425 -0.706656 -0.920408 0.006134 -0.524766 0.008393 -0.472213 0.791742 0.997864 0.994324 0.335307 -0.203284 -0.467757 -0.753716 0.501267 -0.932432 0.807489 0.973388 0.212683 0.603137 0.148473 -0.763359 0.177526 -0.395306 0.975463 -0.298013 0.618030 0.746025 0.244911 -0.432295 0.737175 -0.975097 0.143712 -0.269021 0.469466 -0.240089 0.350383 -0.745293 -0.670034 -0.706778 0.175024 0.198096 0.173498 0.964049 0.890500 -0.127415 0.676138 -0.087008 -0.432600 0.586291 0.352031 -0.717826 0.726432 -0.060945 -0.081942 -0.628895 -0.882199 -0.268899 0.818415 0.313211 -0.055635 0.547166 -0.278176 -0.166478 -0.163610 0.078829 -0.195776 0.651418 0.894467 0.248268 -0.371319 -0.909726 -0.889706 -0.805841 -0.564135 -0.543321 -0.520371 -0.815302 -0.343242 -0.248695 -0.881771 0.517869 -0.538987 -0.725089 0.695181 0.472884 0.152562 -0.308878 -0.505905 -0.625111 -0.774651 0.108371 0.417096 0.835688 -0.107578 -0.255409 0.241127 0.232032 -0.101047 0.735832 -0.558214 0.485580 0.434248 0.652089 0.895993 -0.794427 0.952940 -0.717032 -0.225013 0.257424 0.719047 -0.745170 -0.057100 -0.180517 0.885861 -0.957152 -0.829585 -0.009003 -0.077609 -0.059847 0.477828 0.012848 0.200720 -0.454024 -0.080599 0.164281 0.556017 -0.663259 0.122044 0.397992 0.631031 0.880795 -0.110446 0.775872 -0.180639 0.260353 -0.813288 -0.231971 0.617664 -0.736320 -0.186010 -0.522202 -0.798700 0.908505 -0.913266 -0.145177 -0.964843 -0.140110 0.830500 0.958800 0.331584 -0.693838 -0.995056 -0.663198 -0.831233 0.853206 0.270180 -0.423566 -0.917844 -0.998840 0.805841 -0.903256 0.940489 0.766472 -0.302896 -0.759453 -0.080721 0.009308 0.199866 0.729667 -0.614307 -0.967834 -0.803156 0.545762 0.504501 -0.990478 0.157811 0.300211 -0.619739 -0.187597 -0.084017 -0.846004 0.546678 0.789727 0.574084 -0.648793 0.616382 -0.930662 0.850765 -0.571886 0.903195 0.941465 0.181616 -0.839106 0.829585 0.885617 -0.113620 -0.686087 0.931822 -0.194311 0.715262 0.251015 -0.724906 -0.965819 -0.913877 0.473312 0.091952 -0.332011 -0.673696 -0.855647 0.454695 -0.200598 0.230201 -0.332926 -0.203345 -0.796258 -0.753777 0.372967 0.092807 0.046724 0.605029 -0.612232 -0.486435 -0.826350 0.701102 -0.264565 -0.636647 0.543321 -0.958068 -0.257607 -0.882931 -0.631214 0.075106 0.805414 -0.633473 0.528062 0.206946 -0.414777 -0.510422 0.806146 -0.674734 0.688650 -0.145238 -0.467757 -0.861141 0.900754 -0.627003 -0.826228 -0.355022 -0.968688 0.209876 0.449812 0.039216 0.436323 0.470504 -0.473617 -0.621632 0.277871 0.669362 -0.142735 -0.689261 0.585131 0.798029 0.230262 0.184301 -0.821711 -0.197119 -0.415509 0.846858 -0.481246 0.285745 0.158788 -0.549913 -0.453352 0.239113 -0.465072 -0.429853 0.570421 0.629749 -0.862178 0.956420 0.268349 0.641957 -0.244484 -0.777764 0.867244 -0.606433 -0.359172 -0.209754 0.558153 -0.062655 -0.242347 0.402264 -0.786431 0.359783 -0.265603 -0.490036 0.468001 -0.210181 -0.913083 0.855953 -0.776482 0.131321 -0.726615 -0.441267 0.644826 -0.671072 -0.856258 0.014863 -0.296182 0.983459 -0.653676 0.928892 -0.661672 0.125828 0.253578 -0.214454 0.286477 -0.035066 0.970641 0.075716 0.658864 -0.580126 -0.012787 -0.411603 0.312052 0.250099 -0.962035 -0.918027 0.085055 -0.404584 0.731132 -0.353191 0.961913 0.739677 -0.490219 0.071505 -0.778130 -0.092074 0.507797 0.526109 0.641407 -0.087069 -0.137730 -0.126499 -0.191748 0.460799 -0.954039 0.922849 -0.387494 -0.070772 0.781732 0.936583 0.975036 0.431928 -0.898984 -0.296304 -0.123081 0.979247 -0.889828 0.492660 -0.247353 0.550279 -0.974670 0.194617 0.308390 -0.113376 0.040315 -0.028596 0.829096 -0.177709 0.588366 0.719718 -0.964171 0.959960 0.561144 0.663869 -0.442549 0.508652 0.047212 -0.609485 -0.923704 -0.906430 0.152867 -0.363201 0.214148 -0.649220 0.466903 -0.854915 -0.782647 -0.880062 0.732780 -0.103305 -0.493637 -0.952757 -0.709586 -0.963134 0.150304 -0.589282 -0.150121 0.803766 -0.669912 -0.019318 -0.840571 -0.226234 -0.147313 -0.271706 -0.869076 0.736015 0.777825 0.193823 -0.015595 -0.492538 0.221290 -0.672414 -0.024812 0.003265 -0.603748 -0.383526 0.264870 -0.127903 0.955016 -0.692434 0.499924 0.011505 -0.305521 0.542222 -0.340373 0.273782 0.687368 -0.787286 -0.264199 0.676565 0.901425 0.354350 0.807489 0.429182 -0.630421 -0.115452 -0.927854 0.088351 -0.026276 0.502976 0.397137 -0.845088 -0.096530 0.563463 0.952208 0.425031 -0.146153 -0.268471 -0.512375 -0.593310 -0.976196 0.239784 0.818476 0.116733 0.977538 -0.447005 -0.921262 -0.432173 -0.568285 -0.744011 0.307962 0.260170 0.031587 -0.023103 0.931333 0.989074 -0.823054 -0.842280 -0.302225 -0.718009 -0.037873 -0.514450 -0.362712 -0.223121 0.291238 0.795709 -0.399945 -0.146336 -0.767998 -0.739311 -0.059603 0.833308 0.670461 0.676870 -0.092441 0.054781 0.328654 -0.339702 -0.693838 0.144261 -0.791925 -0.433515 -0.011261 0.787469 -0.478011 0.944639 -0.257546 -0.680898 0.177648 -0.660634 0.133335 -0.559435 -0.127598 0.253334 0.869625 0.379620 0.865596 0.081515 0.247414 -0.196509 -0.511826 0.831660 0.240883 0.798883 0.454024 -0.558519 -0.201025 0.230323 -0.966491 -0.492904 0.912656 0.790521 0.153783 0.232521 -0.987060 0.053926 0.486435 0.416181 0.264809 0.847652 0.586963 0.283425 -0.683279 0.250038 -0.853572 0.980590 0.071017 -0.468062 0.419904 0.540513 -0.964660 0.351115 0.892392 0.134068 -0.180822 -0.487045 0.246010 -0.580981 0.337016 -0.389264 0.690298 0.799005 -0.718619 -0.143284 -0.281655 -0.594958 -0.572008 0.417463 0.351115 0.612720 0.334758 0.565294 -0.067293 -0.093600 -0.001495 -0.041169 -0.461409 0.904172 0.031159 -0.634754 -0.939756 0.354839 -0.082492 0.135655 0.027192 -0.079379 0.918027 0.747490 -0.769463 -0.442793 -0.821711 -0.274209 -0.790399 0.304117 0.608386 -0.744438 0.664113 -0.702689 -0.906247 0.798456 0.854854 0.817927 0.601245 -0.974731 -0.944823 0.187292 0.741691 -0.621876 -0.884152 0.323405 0.352031 -0.426618 0.205054 -0.230934 0.659963 0.358806 -0.212378 0.006134 0.592578 -0.163060 -0.095737 0.866268 -0.207862 0.667714 0.814631 -0.147069 -0.098239 0.462142 -0.934385 0.185339 -0.317484 0.679800 0.048799 -0.621937 0.525742 0.343425 0.107334 -0.832392 -0.078402 -0.118564 0.257546 0.600085 -0.551866 -0.587329 0.585315 -0.909604 0.841304 0.784722 -0.618885 -0.731986 0.710501 -0.321757 0.076144 0.418928 -0.539781 -0.908689 0.040925 0.338542 0.982421 0.513901 0.310343 0.407453 0.679250 0.106906 0.296854 -0.298257 0.382122 0.197851 0.554430 0.951415 -0.273537 -0.595264 -0.344462 0.158483 0.546617 -0.298013 0.244362 0.688528 -0.147313 -0.259987 0.327799 -0.353679 -0.048067 0.731010 0.867916 -0.649586 -0.723136 0.213965 -0.263283 -0.283486 0.483627 0.011078 -0.902280 0.364544 -0.618763 -0.312296 0.275246 0.260292 -0.743156 -0.170690 -0.825739 -0.294900 0.156590 0.446638 0.314310 0.485580 -0.313028 0.822748 0.538194 0.995422 0.897763 0.113926 0.460128 0.143468 -0.190344 -0.982971 0.713492 0.858638 0.148778 -0.184667 -0.937437 -0.995117 -0.148839 -0.883785 -0.559801 0.519944 0.898434 0.592700 0.972777 0.587268 -0.951231 0.041047 0.057283 -0.342204 -0.974975 0.068087 -0.449385 0.130467 -0.278726 0.718619 0.135350 0.505783 0.992615 -0.641896 -0.076876 0.824335 0.588733 0.120945 -0.640492 0.203650 0.795221 0.237770 -0.508225 0.284402 -0.656667 -0.445601 0.662343 -0.600513 0.153050 0.554613 -0.309366 -0.721183 0.469466 -0.801202 0.606189 -0.899106 -0.042695 -0.107334 0.994018 0.705191 0.314066 0.896054 -0.983337 -0.223304 0.965819 -0.513352 -0.825739 0.816401 -0.593066 -0.810419 -0.134861 0.708365 -0.252174 0.386029 0.809870 0.697867 0.030976 0.613330 -0.598743 -0.408307 -0.119968 -0.131077 0.042634 -0.006195 -0.957274 -0.769280 -0.463668 0.388531 0.391400 0.106418 0.586352 0.883908 -0.057588 0.423933 0.475814 -0.572131 -0.541551 -0.923765 0.983764 0.309549 0.194372 0.932554 0.601917 -0.242103 -0.649098 -0.272622 -0.885067 0.450972 -0.202612 -0.857051 -0.393109 -0.252602 0.626820 -0.606372 -0.044893 -0.546678 -0.894955 -0.372356 0.875729 -0.062960 -0.422346 -0.542161 0.581957 0.403424 -0.104160 -0.066500 -0.881527 0.141392 0.924253 -0.733879 0.433882 0.556322 -0.306253 -0.378338 -0.746208 0.800165 -0.238807 0.291726 0.817805 0.811823 -0.661672 -0.444014 0.541307 0.579943 0.753166 0.549058 -0.333293 -0.558946 -0.194678 -0.557360 -0.035615 0.225562 0.579333 -0.741997 -0.452315 0.063143 0.276406 -0.381268 0.863277 0.661916 -0.370769 -0.242164 0.919797 -0.128391 -0.539781 -0.908505 0.817560 -0.654714 0.947996 0.671194 0.641469 0.110874 0.162206 -0.172521 0.779290 0.865230 0.431440 -0.681875 -0.271218 0.803278 -0.895077 -0.708426 -0.544603 -0.204505 0.271645 -0.619556 0.363140 -0.275124 -0.001312 -0.764153 0.941160 -0.203528 -0.347942 0.815668 0.148961 -0.367168 -0.138462 0.739067 -0.397809 0.966124 0.692923 0.020600 -0.378460 -0.258705 0.589709 -0.504929 0.207923 -0.558458 -0.353435 0.246254 -0.994934 -0.551500 -0.222144 -0.647450 -0.685965 -0.749077 -0.657277 0.261269 0.220069 0.312906 0.789727 0.103854 -0.104465 0.414899 0.883847 -0.733940 0.141453 0.279946 0.077731 -0.476302 -0.770745 -0.702200 0.590320 0.057283 -0.893674 0.158666 -0.245888 -0.341227 0.027009 -0.790094 0.195898 0.441389 0.671865 0.348125 -0.589465 -0.633595 0.818110 -0.741630 0.293069 0.898862 0.622852 -0.185949 -0.811029 -0.896054 -0.417646 -0.550951 -0.971923 0.498459 -0.770318 -0.684622 0.101596 -0.032502 0.632862 0.038179 0.046785 -0.938963 0.756401 0.880978 -0.398724 0.981262 0.748711 -0.866390 -0.310770 -0.426130 0.217872 -0.464339 0.401959 0.636341 0.557909 0.546800 -0.564440 0.854366 -0.611621 -0.722404 0.548692 0.680105 -0.829890 -0.106235 -0.398907 0.464339 0.058809 -0.695853 0.738334 0.154881 0.059603 0.947508 0.281716 -0.125889 0.544847 0.488754 0.889584 -0.312479 0.197790 0.238624 -0.450972 -0.123386 -0.555528 0.107456 -0.036653 0.027985 0.436323 -0.092380 0.895871 0.251198 0.646168 0.815485 -0.966796 0.838496 -0.860225 0.806146 -0.068575 -0.322123 -0.413739 -0.126377 -0.394513 -0.267129 -0.931516 -0.151585 0.326823 -0.098666 0.757378 0.625233 -0.810358 -0.434675 -0.488632 -0.386761 -0.989990 0.145116 0.465377 0.222144 0.118809 -0.030366 -0.331339 0.194983 0.611805 -0.224464 0.837947 -0.398175 -0.380291 -0.851924 -0.715201 -0.694327 -0.839961 -0.784295 -0.917905 -0.286233 -0.866695 -0.089145 0.531236 0.626331 -0.973815 -0.890072 -0.007965 -0.004242 0.884945 -0.035371 -0.860775 0.408368 -0.880245 -0.262795 -0.293252 -0.899167 -0.295328 0.452010 0.782830 0.325358 0.333903 0.675832 0.718253 -0.126377 0.097690 0.740287 0.711112 0.574694 0.240761 0.717154 0.128880 0.577013 0.564501 -0.539109 0.631825 -0.771111 -0.963256 0.029695 -0.840388 0.368633 -0.828852 -0.201880 0.843623 -0.162694 0.737968 0.573351 -0.092441 -0.972655 0.369976 -0.971740 -0.381024 -0.722343 -0.374798 0.763176 -0.646168 0.930174 -0.930784 0.308817 -0.162816 -0.142308 -0.060457 0.383709 0.621509 -0.721732 -0.045808 0.717399 0.866878 -0.333598 0.827693 -0.247047 -0.516831 0.574206 0.056673 -0.459212 -0.300882 -0.823908 0.537034 -0.863643 0.118931 -0.652211 0.575976 0.814264 -0.669912 0.093539 -0.138890 0.411054 0.124241 -0.866878 -0.051119 0.110080 0.393963 0.461837 0.835139 0.979614 0.767632 -0.304910 0.170019 -0.422651 0.045442 0.011628 0.680715 -0.065523 0.498398 0.505722 0.362224 -0.769646 0.093051 -0.237037 -0.998230 0.471786 -0.295267 0.470931 -0.403241 0.488083 0.381512 -0.123081 0.229774 0.555528 0.721305 -0.092990 0.963744 -0.037019 -0.575121 -0.243324 -0.681570 -0.168493 -0.912900 0.767327 0.892331 -0.499741 0.289102 0.399762 0.690054 0.791559 0.053377 -0.881405 -0.278848 0.466903 -0.275002 0.998962 0.429731 0.187414 0.341166 -0.132176 -0.481368 0.290506 0.551012 -0.205725 -0.268532 0.695120 -0.850642 -0.261513 -0.846858 -0.751274 -0.714103 -0.825556 -0.406659 0.828547 0.412641 0.497421 0.613575 -0.491989 -0.968078 -0.971435 0.762444 -0.896115 0.308756 0.431013 0.579272 0.412885 -0.392743 0.347270 0.930540 0.453780 0.016999 0.072298 -0.759392 0.024751 0.928953 -0.925413 -0.820673 0.890866 -0.274575 0.176977 0.369488 0.911313 -0.354411 0.209815 -0.324259 0.422346 -0.110874 -0.049715 0.639088 0.185217 -0.979369 0.158361 0.617115 0.213904 -0.262246 -0.476547 0.194800 -0.206458 0.064547 -0.666189 0.426679 0.003632 -0.966552 0.680471 0.474105 -0.943419 -0.081942 -0.990539 -0.801202 -0.233741 -0.921262 -0.165807 -0.723014 -0.543016 -0.515244 0.419782 -0.605640 -0.372906 0.974120 -0.746574 -0.913572 -0.321268 0.314127 0.111850 -0.214148 0.026276 -0.874081 0.539109 0.638600 0.896481 0.734062 -0.452925 0.653066 0.132481 0.004486 0.351054 -0.257057 0.314188 -0.766228 0.952940 0.227943 0.507431 0.151341 0.384564 -0.647084 0.954650 -0.903012 -0.575976 0.390301 0.019562 -0.562365 -0.403241 0.885983 -0.301920 0.284097 -0.725761 -0.387127 -0.991699 -0.428510 0.683401 0.794000 -0.428327 0.565477 0.637928 -0.843074 0.698294 -0.143834 0.805292 0.383709 0.288308 -0.096042 0.321329 0.517075 0.862850 0.197546 0.564867 0.886776 -0.964476 0.088168 0.904782 0.117100 -0.261269 -0.637806 -0.767266 -0.219825 -0.484787 -0.385418 0.093417 -0.745048 0.189856 0.485092 0.224464 0.356731 -0.768181 -0.179052 0.319620 -0.701773 0.121311 -0.172643 0.826777 0.545213 -0.967956 0.268899 0.593799 0.129368 -0.856502 0.784295 0.174352 0.980529 0.893735 -0.623280 0.606494 -0.159032 -0.513596 -0.857173 -0.523728 0.324320 -0.035371 0.302164 -0.920469 -0.318705 -0.836909 -0.410199 0.492843 -0.164830 0.852046 0.075289 0.368145 0.249306 -0.615406 -0.530686 0.261757 -0.811151 0.161351 -0.018586 -0.688284 0.940184 0.223121 -0.209082 0.074862 -0.451216 -0.714652 -0.806391 0.336344 0.640492 0.526658 -0.512925 0.704886 -0.113987 -0.556749 -0.344096 0.805414 -0.326395 0.082980 0.921323 -0.118381 0.550096 0.969848 0.215674 0.621815 0.995056 0.033479 0.645863 0.018891 0.088717 0.854244 0.006867 0.079257 0.637562 -0.462508 -0.590686 0.190832 -0.681387 0.529344 -0.917600 -0.035981 -0.593310 0.686209 -0.585131 0.358440 0.645558 -0.089389 0.297464 -0.093783 -0.173864 -0.333415 0.827815 -0.153600 0.634754 -0.314615 0.441816 0.981567 0.332682 0.175939 -0.466903 0.069430 -0.168920 -0.148473 0.623035 0.562853 0.721976 -0.914731 0.143956 -0.491134 -0.170446 0.507065 -0.101047 -0.578356 0.843379 0.354106 0.258889 0.939390 -0.404523 0.888730 0.160863 -0.920286 0.545701 -0.806146 -0.030183 0.905209 -0.965087 0.661245 0.265908 -0.589343 0.872311 0.482345 0.620045 -0.552965 -0.185095 -0.543565 -0.579760 0.491440 0.506394 -0.572436 0.811701 0.078524 -0.566393 0.662343 -0.188269 0.703848 -0.533555 0.482162 -0.336039 0.012665 0.541124 -0.538133 0.492660 -0.913755 0.051424 0.507004 -0.679434 0.638539 -0.490951 -0.877560 0.512619 -0.064852 -0.963988 0.185522 0.707755 0.247902 0.251625 -0.465316 -0.698599 -0.343425 -0.883663 -0.312235 0.541917 -0.988647 -0.704581 0.001495 0.301737 -0.132298 -0.395367 0.584460 -0.412275 0.205725 0.099948 0.277200 -0.147984 0.748527 0.375103 0.010834 0.165746 -0.310404 0.627857 -0.143223 -0.680776 0.643361 -0.941099 -0.919004 0.910092 -0.369366 0.165197 -0.485519 0.481857 -0.087741 -0.510178 -0.447981 0.776543 0.481979 -0.608020 -0.906613 0.162389 -0.967162 -0.601001 0.737663 0.300211 -0.791498 -0.297708 -0.455855 0.110446 0.951781 -0.639027 0.672597 0.103366 -0.236183 -0.225440 -0.785882 0.135411 -0.313944 0.988281 -0.473312 0.653310 -0.183447 -0.607959 0.386578 0.489303 -0.825068 0.377300 -0.731193 -0.730155 -0.273049 0.512925 0.069430 -0.500412 0.381512 0.803278 -0.419111 0.383892 -0.226539 -0.409162 -0.965392 0.452071 0.643788 0.665822 0.022126 -0.955809 -0.370586 -0.854915 -0.892758 -0.276650 -0.723319 0.683950 0.442976 -0.323893 0.089328 0.581042 0.704154 0.164220 -0.576220 0.341716 -0.350871 0.088961 -0.954344 0.260170 0.623402 -0.268044 0.158177 -0.416608 0.315897 0.733757 -0.284463 0.820673 0.083224 -0.626576 0.834773 -0.241249 0.151708 -0.788690 -0.883236 -0.252297 -0.988891 0.157811 -0.308756 -0.181738 -0.687307 0.029939 0.795099 -0.806391 0.582934 -0.340678 0.700186 -0.241371 0.066622 -0.386944 -0.199927 -0.951720 0.011628 -0.409711 0.670095 -0.681875 0.706778 0.557421 -0.087802 -0.740532 -0.413190 0.683645 0.597461 -0.078402 -0.283914 -0.859615 -0.880856 -0.596851 -0.036531 0.825922 -0.732109 -0.123875 0.181371 0.078402 -0.657460 -0.496261 -0.298868 0.440046 -0.891964 0.816095 0.457259 0.534165 0.414289 0.104404 -0.947020 -0.881893 0.286843 -0.601489 -0.919858 -0.625233 0.303323 -0.412458 0.004852 -0.495712 -0.932798 0.248634 -0.067476 -0.320414 -0.408002 0.744865 0.564257 0.427473 0.407758 0.154881 -0.343181 0.497848 0.202918 0.597827 -0.700491 -0.715873 0.814081 -0.485641 -0.680471 -0.143406 0.375286 -0.531968 0.128880 -0.328593 -0.559496 -0.971862 0.325297 -0.981567 -0.108676 -0.702628 -0.640614 0.269448 -0.558336 -0.353496 0.580920 -0.010529 -0.446638 -0.781549 0.976196 0.974609 -0.426008 -0.235572 0.909543 0.277017 0.909909 0.374798 0.181371 0.282022 0.047151 -0.333354 -0.285440 0.897275 0.232215 -0.008759 -0.816950 -0.081454 0.625843 -0.776849 -0.106235 -0.366619 0.741325 0.694327 -0.765130 0.725700 0.981262 0.834590 0.003449 -0.456710 -0.916135 -0.917661 0.924314 -0.207984 -0.707450 -0.372906 -0.327616 0.717154 0.059664 -0.453963 0.712272 0.836421 -0.901242 0.898373 -0.734184 -0.714408 -0.402936 -0.661428 -0.277993 -0.159398 0.399823 0.812250 -0.200171 -0.322794 -0.019501 0.895932 0.778314 -0.067904 -0.991516 0.344462 -0.895077 0.126621 -0.673391 -0.592639 -0.303812 -0.483016 0.151891 0.477828 0.240761 -0.567919 -0.689138 -0.364483 0.820490 -0.337321 0.322977 0.647511 0.159398 0.963500 -0.855953 -0.012970 0.814447 0.730949 -0.617847 0.436384 0.620045 -0.080172 -0.200964 -0.167577 0.699088 0.260231 0.908811 0.520432 -0.647267 -0.162389 0.487106 0.076693 0.142003 0.099155 0.802850 0.863826 -0.527451 0.348064 -0.615284 0.979736 -0.003204 0.788751 0.136326 0.164464 -0.856258 0.185278 0.610034 -0.773797 -0.908261 -0.804498 0.254982 0.549242 -0.506455 -0.556139 -0.550768 0.246498 -0.730827 -0.605762 0.129856 -0.480819 0.776543 -0.913083 -0.166601 -0.213721 0.674306 0.800836 -0.041292 -0.854976 0.788324 -0.296182 0.064974 0.727470 -0.705679 -0.445174 -0.982360 0.512375 -0.470016 -0.482101 0.794305 -0.841792 0.747795 -0.847163 -0.237098 -0.583056 0.122166 -0.355754 -0.753960 -0.306742 0.323160 0.330668 0.181982 -0.689932 -0.031404 0.597766 -0.303934 0.044282 -0.731864 0.196570 0.395489 -0.506088 0.170751 0.050691 0.197790 0.840205 -0.671072 0.613880 -0.491317 0.566698 -0.808344 -0.159276 -0.441328 0.697501 -0.461104 -0.166173 0.713126 -0.881893 0.769951 0.228492 0.567003 0.540452 -0.742119 -0.621448 0.637867 -0.325236 0.083773 -0.594409 -0.531785 -0.828425 -0.538804 0.173681 0.951476 -0.104831 0.165441 0.252419 -0.308206 0.091891 0.278787 -0.068941 0.213294 -0.984680 0.564745 0.345744 -0.172521 -0.428877 0.783990 -0.217994 -0.024873 -0.456160 0.263466 -0.783319 -0.148045 -0.031770 -0.967101 0.159581 -0.867244 0.207495 0.839412 0.858821 -0.394574 0.301492 0.353557 -0.068148 0.527573 0.146275 -0.119785 -0.514756 -0.481735 0.068941 -0.115513 0.784417 -0.202063 0.358867 0.647816 0.537217 -0.412458 0.318705 -0.635792 0.853267 0.481124 0.397809 -0.007965 0.941404 0.603381 -0.030732 0.170202 -0.392254 -0.635548 0.315043 0.515122 0.617847 -0.374310 -0.620289 0.607837 -0.016694 0.087130 -0.142979 0.985473 -0.762078 -0.289102 -0.829768 -0.550584 -0.235939 0.991760 0.910215 -0.998230 0.232093 -0.111850 0.292276 -0.276345 0.216041 -0.774224 -0.804010 -0.092746 0.047456 -0.613880 -0.651295 0.754265 -0.030305 -0.906796 -0.783441 -0.046663 0.655934 0.109592 -0.835322 0.449019 0.152684 0.656117 0.449873 -0.285867 -0.688223 -0.634205 0.607349 -0.160741 0.773003 0.586169 0.794916 -0.249611 -0.440230 0.841182 -0.343669 -0.131443 0.351360 -0.733879 -0.732902 0.523240 -0.507492 -0.172155 -0.275674 0.431928 0.804437 0.141758 -0.056124 0.558763 -0.741325 0.700308 -0.772881 -0.335246 -0.422773 -0.677175 -0.840449 0.861690 -0.179418 0.641713 0.404035 -0.517808 -0.973571 -0.564867 -0.049104 -0.420515 0.962157 -0.379192 -0.612049 -0.632252 -0.947386 -0.278054 -0.247719 0.916745 0.546617 0.618336 -0.473800 0.412763 0.983581 0.395367 -0.658803 0.298746 -0.975768 0.103183 -0.049654 -0.394757 0.706778 -0.761834 -0.966491 -0.214087 -0.809442 0.759819 -0.603259 0.368999 -0.947752 0.455306 0.128697 -0.262246 -0.806391 0.464034 -0.723319 -0.647389 -0.574206 -0.224769 -0.395001 0.726859 0.792169 -0.490036 -0.002899 -0.531236 0.691214 -0.198218 0.065279 -0.296976 0.863399 0.086520 0.530198 -0.817072 -0.696768 -0.384442 0.931700 0.407331 0.160558 0.003815 -0.765557 0.052828 0.690909 0.625538 0.891293 0.036164 -0.678945 0.670095 -0.075350 0.517014 -0.110569 0.670644 -0.408429 0.155248 0.124302 -0.682180 -0.807978 -0.065645 -0.576098 0.371258 0.585315 -0.136143 -0.000946 -0.519333 0.974914 0.873104 0.441633 -0.269204 -0.473800 -0.791253 -0.218299 -0.280129 0.378643 -0.350566 -0.905026 0.987426 -0.385846 0.848201 0.723930 0.600757 0.746330 -0.882809 0.174352 -0.284707 0.290445 -0.033906 0.750481 -0.080721 -0.021149 -0.293435 -0.009186 0.176489 -0.816950 0.436140 -0.032991 0.178930 0.105258 0.713187 0.509018 0.922361 -0.697806 -0.764336 -0.582141 0.316752 0.103122 -0.162938 0.730033 0.644887 -0.514634 -0.890072 -0.906003 -0.319620 -0.031220 0.972167 -0.675954 0.278909 0.092807 -0.513962 -0.809320 0.254311 0.037629 0.244850 0.513413 -0.647206 -0.047212 -0.362957 0.615406 -0.863338 -0.445357 0.303262 -0.794977 0.590991 0.556871 0.095981 0.745354 -0.734489 0.494430 0.856441 -0.626270 0.764519 -0.494736 0.319987 0.435835 0.395795 0.631581 -0.536912 -0.305460 -0.206519 -0.797784 0.604358 0.277566 0.325358 -0.138890 0.571154 0.425825 0.097995 0.801202 0.246437 0.104770 0.372051 -0.231178 0.806085 -0.457991 0.200171 -0.599902 -0.039949 -0.247169 -0.900021 0.451338 0.510788 0.116489 0.575304 0.486984 0.539293 -0.933836 0.296304 0.586718 -0.465987 0.954222 -0.246315 -0.365154 -0.227515 -0.843989 -0.802728 0.754448 -0.730155 0.474654 0.672292 -0.552538 -0.393475 0.908444 0.965636 0.006073 0.946654 -0.155370 -0.724296 -0.245705 -0.439131 0.741691 -0.583667 -0.314615 0.165746 -0.638844 -0.631336 -0.944151 0.391400 -0.385540 -0.006317 0.498764 -0.308878 0.084078 -0.283242 -0.780694 0.004730 -0.716361 0.997681 0.835261 0.488144 0.718986 -0.601733 -0.576525 -0.377850 -0.188147 -0.939573 0.337260 -0.987487 -0.249916 -0.593921 -0.645741 0.193762 0.325541 0.873226 0.720573 0.749626 0.823054 0.498764 -0.349956 -0.937681 -0.977416 -0.837703 -0.155187 0.003388 -0.622486 -0.697867 -0.403302 0.877743 0.430403 0.916318 -0.966247 -0.064669 0.530381 0.661489 0.073397 0.760613 -0.086703 -0.137913 -0.354472 0.853938 0.208106 0.242164 -0.252541 -0.283364 -0.569201 -0.808222 0.893124 0.753166 -0.470077 -0.618091 0.519883 0.300699 0.545030 0.539048 0.914426 0.102023 0.440596 0.192175 0.220679 0.530686 0.678823 -0.794305 -0.907407 0.883480 0.592883 0.909482 0.554003 0.051607 0.623402 -0.361370 -0.373089 -0.116672 -0.519211 -0.502792 0.293680 0.550035 -0.703848 -0.844234 0.352092 0.229469 -0.177770 -0.502731 -0.271584 0.417524 -0.251442 -0.076937 0.809564 -0.819025 0.191687 0.131321 0.357219 -0.334880 0.423933 -0.819147 -0.432905 0.166967 0.903195 0.652577 -0.165624 -0.912473 -0.334758 -0.279397 0.789544 -0.924131 -0.856990 0.947264 0.165258 -0.323344 -0.527085 0.611377 0.058931 0.794427 -0.647267 0.386273 -0.848811 0.286233 0.512680 0.176244 -0.555162 -0.003449 0.861812 0.926756 -0.914975 -0.454634 0.373272 -0.780877 -0.175268 0.182836 0.770257 0.463485 0.696463 0.023103 -0.925535 0.501144 0.454268 0.969237 0.081881 0.430525 0.347148 0.642140 -0.175207 0.467330 -0.212561 -0.373882 -0.913266 -0.347087 0.476180 -0.657094 -0.970885 -0.777093 -0.452681 0.867672 -0.005707 0.448103 -0.704764 -0.001984 -0.453169 0.760491 0.045808 0.890622 0.815729 0.977477 -0.265603 -0.424421 -0.800653 -0.564257 0.754387 -0.336650 0.497116 -0.152013 -0.363384 -0.445784 0.528184 0.694754 0.124180 -0.534715 -0.697806 0.963805 -0.796258 -0.413800 -0.197546 0.049959 0.656545 -0.324442 0.445235 0.627552 -0.308512 -0.587878 -0.722892 0.307352 -0.777093 -0.187902 0.973632 0.892392 -0.645070 -0.975158 0.700430 -0.957518 0.635670 0.820978 -0.099155 -0.837031 0.643605 -0.916684 0.071688 0.327311 0.468062 0.615284 -0.410688 0.047761 0.647023 -0.423017 -0.350505 0.706656 -0.875546 -0.135899 0.383038 -0.540391 0.789850 0.739555 -0.790765 -0.575304 -0.838740 0.031892 0.490646 0.968383 -0.222694 0.213111 0.550829 0.901975 -0.143529 -0.332865 -0.882077 0.401471 -0.209571 0.462508 -0.743339 -0.538743 -0.969665 0.941710 0.851009 0.696402 -0.068575 0.438948 -0.300333 0.304666 0.115818 0.439741 -0.711356 -0.998474 0.918882 -0.505722 -0.699393 0.739982 0.478622 0.196936 -0.074252 0.028169 -0.966796 -0.454817 0.036225 -0.342753 0.987610 0.989441 0.285501 -0.348247 -0.688040 -0.512986 -0.803095 -0.744682 0.835200 -0.127232 -0.697501 0.763726 -0.005036 -0.142064 -0.605152 -0.981506 -0.392438 -0.028779 -0.044404 -0.627125 0.219764 -0.246925 -0.178686 -0.056917 0.605029 0.516770 -0.849361 0.957152 0.966979 -0.011628 0.754753 -0.986206 -0.587695 -0.862056 0.853267 -0.935301 -0.744438 0.514878 -0.681326 -0.069369 -0.281167 0.399274 0.471725 0.166234 -0.411908 0.082675 0.489425 0.084933 0.389203 0.589953 0.489792 0.755852 0.646107 0.155065 -0.646229 -0.213477 -0.216834 0.763237 -0.650685 0.702933 -0.764763 -0.927671 0.617115 -0.260109 -0.673635 0.025300 -0.416608 0.853816 -0.518906 0.466414 -0.639271 0.770867 0.330363 -0.925657 -0.801019 0.882931 -0.726188 -0.075900 -0.949705 -0.196814 0.062838 -0.010285 0.309610 -0.605029 -0.036042 -0.098117 0.793207 0.085177 -0.931700 0.270913 -0.981689 0.275857 -0.692618 0.889584 -0.153661 -0.334147 -0.261818 -0.873409 0.550707 -0.705252 -0.339030 0.824580 -0.625721 0.122288 0.131016 0.013825 -0.362896 0.955321 -0.572314 0.755730 -0.543138 -0.464766 -0.957030 -0.573107 0.146092 -0.402570 -0.248024 0.757744 -0.653127 -0.283547 0.328104 -0.063265 -0.033113 0.748711 0.465011 0.094699 0.978210 -0.315043 0.468490 -0.520615 -0.857784 0.726127 -0.720023 -0.365276 -0.276833 -0.606555 -0.605090 0.895871 -0.748589 0.487411 0.237648 0.513657 0.401044 -0.294778 0.556749 -0.279580 0.042695 -0.267190 -0.598682 -0.950804 0.535020 0.620411 0.242653 0.220130 -0.683584 -0.743400 -0.197607 -0.094943 0.860775 -0.247353 0.150609 -0.316141 0.057894 -0.451399 -0.364422 -0.495163 -0.916379 -0.944273 -0.791681 0.961180 0.819819 -0.354350 -0.295816 -0.303629 0.887204 -0.199927 0.643666 -0.748527 -0.644642 0.233314 0.115574 -0.334452 0.190039 -0.200598 0.304727 -0.856868 -0.498825 0.997497 0.226295 0.100436 0.654653 0.887020 0.230323 -0.097446 -0.690298 0.225745 -0.162511 -0.394696 0.444502 0.642750 -0.529710 -0.986999 0.432478 0.659108 -0.359722 -0.635060 0.232154 0.369121 0.155736 -0.035981 0.752556 -0.406476 0.910886 0.058382 0.457015 -0.681631 0.819453 0.290262 0.267617 -0.768609 0.455977 -0.976928 -0.166906 -0.831416 0.965941 -0.139439 0.222510 -0.716727 0.808283 -0.330912 -0.893063 0.750603 0.892209 -0.582934 -0.507614 -0.180761 -0.328593 -0.857112 0.065462 -0.975890 0.757622 -0.635670 0.215247 0.370586 0.615711 0.241859 -0.206580 0.304849 0.904477 0.808405 0.674856 -0.718741 -0.976928 -0.422163 0.181677 -0.259438 -0.571764 0.845515 -0.566576 -0.690298 -0.717460 -0.008515 0.684805 -0.961974 0.997925 0.101596 0.714835 -0.519883 -0.764458 -0.783746 0.328898 0.439436 0.926206 0.521409 -0.963195 -0.815912 -0.128697 0.792718 0.969298 0.948668 0.489975 -0.593005 -0.905637 0.532334 0.271950 -0.768059 -0.201453 0.808405 -0.499435 -0.292642 0.892270 0.955931 -0.192114 -0.569567 -0.895688 0.226356 0.123936 0.557360 0.127598 0.058199 -0.416730 0.333659 -0.723136 0.351787 -0.048860 0.066378 -0.176672 0.716239 -0.868709 0.849971 -0.932920 0.502304 0.318705 0.358135 -0.789544 0.432234 0.359233 0.015229 -0.905637 -0.359844 -0.121311 0.858943 -0.138951 0.935179 0.744072 -0.593554 0.604297 0.099094 -0.580859 -0.162572 -0.928953 0.032502 -0.222510 -0.194067 -0.523667 -0.439436 -0.065462 0.193274 0.493210 -0.288430 0.661733 0.115390 -0.518052 -0.719352 -0.054231 -0.503830 0.019562 0.491256 -0.745781 0.519944 0.792352 0.566454 0.070894 0.275246 0.914670 0.023408 0.263405 -0.097690 -0.264077 -0.497482 0.845027 0.557726 0.198096 -0.055452 0.693777 -0.493271 -0.193396 -0.072359 -0.209204 0.658376 0.277383 0.977355 0.541246 0.853084 -0.078646 0.661306 -0.261086 0.218177 -0.169225 0.282266 0.738701 -0.099094 -0.072054 0.980346 0.398053 -0.506211 -0.059786 -0.941038 0.350871 -0.536485 -0.636952 0.345317 -0.824580 0.896359 -0.526109 0.398236 -0.980102 -0.127903 -0.540330 0.377239 -0.752922 0.780450 -0.280740 -0.616993 0.661000 -0.110263 0.405316 -0.915952 0.878292 -0.516465 0.265725 -0.559679 0.406781 -0.124668 -0.150487 -0.662648 -0.006623 -0.385235 0.137486 0.942869 0.803766 -0.802057 0.661916 -0.401349 -0.003143 0.593982 0.176489 0.060213 -0.743400 -0.099399 -0.060152 0.896237 0.842952 -0.559069 0.674917 -0.139134 0.724479 0.614551 -0.733757 0.051424 -0.643544 -0.185705 0.258461 -0.336589 -0.334697 0.723136 0.217566 -0.844417 0.802728 -0.699271 0.018647 0.638295 -0.768120 0.775994 -0.878780 -0.703787 -0.291849 0.953978 0.896054 -0.340617 -0.283181 -0.846858 -0.935972 0.533860 -0.069613 -0.916318 0.312784 -0.594592 0.247902 0.979064 -0.850703 0.128330 -0.021271 -0.705069 0.055513 0.711600 -0.266518 -0.713614 -0.994751 -0.984436 -0.415632 0.776910 -0.591662 -0.828791 -0.942320 0.430586 0.542467 0.534288 -0.479232 0.841975 -0.464583 -0.012665 0.525925 -0.246559 0.961730 -0.598010 0.674001 -0.284951 -0.886349 -0.926145 0.559862 -0.502487 -0.988037 0.942198 0.362774 -0.427656 -0.783929 0.407758 -0.356975 0.970153 0.498337 0.560533 -0.090854 -0.169347 -0.556078 -0.369915 -0.483932 0.957152 -0.960875 -0.528550 -0.541307 0.686209 -0.690054 -0.102023 -0.378033 0.387371 0.074618 0.674978 0.050752 0.903867 0.871273 -0.014191 0.801508 -0.753410 0.124302 -0.817072 0.938719 -0.143956 0.611682 0.637074 0.238258 -0.258583 -0.705252 0.495773 0.160375 -0.187780 0.574999 -0.834346 -0.345683 -0.286477 -0.962401 -0.671072 0.358318 0.477401 0.747612 0.307901 0.755547 0.303568 -0.842708 0.589587 -0.149693 -0.218665 0.691397 -0.676626 -0.073641 -0.134556 0.068758 0.603076 0.949217 0.918088 0.426374 -0.652760 0.175817 0.130222 0.305399 0.589587 -0.466292 -0.365764 0.563768 0.991455 0.332377 0.620228 -0.723258 0.390484 -0.131443 -0.231239 -0.311502 0.196020 -0.510605 -0.687002 -0.723441 0.445174 0.674612 -0.958434 0.992492 0.331217 0.700613 -0.444319 0.740410 0.017487 0.449507 -0.907224 0.156774 0.548692 -0.075045 -0.771294 0.753227 -0.327677 0.037629 -0.228309 0.484970 0.383160 0.222510 0.160070 0.807733 0.002167 0.450850 -0.323954 -0.714347 0.603931 -0.800775 -0.210730 -0.188147 0.603504 -0.061678 0.940794 -0.494491 0.316446 -0.297220 -0.918516 0.346660 -0.696341 0.307230 0.277200 0.611927 0.314066 -0.232521 0.691763 0.173925 -0.362712 0.492904 0.262307 0.725761 0.679312 -0.190405 -0.621509 0.994385 0.572802 -0.620960 0.877499 0.004303 0.635548 -0.927061 0.668386 0.455061 0.488937 -0.131626 -0.702261 -0.726005 0.648732 -0.675893 -0.230445 -0.592395 -0.598498 0.202551 -0.069185 -0.086520 0.778619 -0.202429 0.736503 0.415693 -0.560106 0.532701 0.706107 0.985900 -0.719352 -0.608997 -0.116550 -0.487167 -0.426557 0.739677 -0.386273 -0.377728 -0.542589 0.111118 -0.551256 -0.789483 0.588244 -0.495590 -0.506088 0.653920 0.760125 -0.231849 -0.491012 0.755852 0.313517 0.628224 -0.924436 -0.504562 0.140110 -0.078036 0.142857 -0.360942 -0.901791 0.602954 0.265664 0.277627 -0.349284 -0.923338 -0.154698 0.352031 -0.462081 -0.568407 -0.311869 -0.770135 0.298624 -0.873409 0.191626 0.395245 0.450789 0.698477 0.473128 -0.686392 0.145299 -0.948973 0.751579 -0.463729 -0.895505 0.889340 0.295938 0.104465 0.658803 -0.140110 0.253090 0.317362 -0.307108 -0.038118 -0.333964 0.925596 -0.684744 0.788934 -0.003021 -0.186926 0.062349 -0.833735 0.466292 -0.769951 0.450545 0.744987 -0.479598 0.638478 0.688345 0.115024 0.741752 0.234107 0.361370 -0.998657 0.511277 -0.793573 -0.097934 -0.896481 -0.261086 -0.200415 0.657460 -0.856868 0.971984 -0.763970 -0.633045 0.680410 -0.805048 0.566942 -0.137181 0.262612 -0.366070 0.509934 -0.194555 0.467635 0.876461 -0.661977 -0.732841 -0.595874 0.621265 0.882199 0.975280 -0.768792 0.368511 -0.291177 -0.972045 -0.739799 0.364849 -0.463546 -0.103977 0.201086 -0.886044 -0.047578 0.521348 -0.884091 0.766839 -0.506638 -0.674062 -0.358318 0.702506 0.151524 0.944090 -0.955016 0.614002 -0.631336 0.488449 0.672109 -0.590625 0.581713 0.165197 -0.645314 -0.757500 0.380779 0.048372 0.336589 0.984924 -0.656240 -0.172765 -0.718802 0.451521 0.608753 -0.661122 -0.075350 -0.306925 -0.753044 0.698172 0.935057 0.667348 0.499985 -0.162023 0.541612 -0.398846 -0.058504 0.272500 0.496139 -0.642384 -0.371807 0.894955 -0.071444 0.118259 -0.698660 0.623463 0.659597 -0.304666 0.701163 -0.293069 0.533128 -0.215369 0.057405 0.503830 0.330546 -0.527207 0.818354 -0.454451 0.829402 0.310709 -0.320109 -0.301859 -0.430464 0.265847 -0.021027 0.233558 -0.111606 0.866146 -0.488510 -0.376019 -0.211707 0.847713 0.839778 0.871212 -0.801569 0.618885 -0.850154 0.183447 -0.805719 0.853267 -0.277322 0.812799 -0.264565 -0.475814 0.080660 0.864803 -0.513291 0.693045 0.872799 0.893551 0.282998 -0.636219 0.560350 0.094150 -0.198645 -0.282876 -0.034028 0.905820 -0.997070 -0.965026 -0.251198 0.836909 -0.093722 0.629688 0.867122 -0.674184 0.255776 0.089389 -0.907529 0.449263 0.646779 0.152318 -0.362774 -0.709769 0.670583 0.522324 0.956969 0.779900 -0.359111 -0.061312 -0.207984 0.822748 0.465560 0.811945 0.509690 0.521409 0.224708 -0.261452 0.809259 -0.689749 0.018525 0.207801 0.853145 -0.187902 -0.352458 0.811396 -0.113559 0.230140 -0.313150 -0.729545 -0.592883 -0.912717 0.517563 -0.409040 0.949278 0.126194 0.878048 0.660451 -0.457686 0.181066 -0.503342 -0.400922 0.908750 -0.164464 0.369915 0.176916 -0.537828 -0.322428 -0.753838 -0.390240 -0.830744 -0.035005 -0.119053 0.047151 0.336589 0.513047 -0.378033 0.063326 0.386700 0.617725 0.890683 0.465499 -0.315836 -0.173315 0.119663 -0.269692 0.475631 -0.630116 0.709952 -0.617664 0.005158 -0.936949 -0.429792 0.625843 -0.132237 -0.503037 -0.198950 0.543321 0.664418 0.323038 -0.914853 -0.826838 0.019318 0.450545 0.348430 -0.221839 -0.976012 0.965514 0.251808 -0.381634 -0.831050 0.584826 0.078646 -0.459944 0.826350 0.458907 0.578478 -0.306070 -0.654286 0.133091 -0.669301 -0.305582 -0.173559 -0.516953 0.190161 0.533067 0.626759 0.434431 -0.623218 0.558153 0.675344 -0.719535 -0.226600 0.833491 0.645009 -0.589953 -0.008148 0.188513 -0.947508 -0.742180 -0.228004 -0.728080 -0.652882 -0.709891 0.274697 -0.077548 -0.951109 0.837886 0.832087 -0.832209 -0.998535 0.590258 0.717643 0.165502 -0.200415 -0.439436 -0.502548 -0.602649 -0.544359 0.337870 0.527268 0.430769 -0.633412 -0.564867 -0.845027 -0.442000 0.644398 0.548997 0.194555 -0.371868 -0.128147 -0.458968 0.229896 -0.618091 0.347453 0.954833 -0.684805 0.603381 -0.120090 0.880184 -0.369060 0.400433 -0.802789 -0.021943 -0.340007 0.926939 0.030671 -0.522202 -0.554125 -0.141942 0.937071 -0.040315 -0.504929 -0.066744 -0.077670 -0.265236 0.886837 0.876583 -0.071749 0.635548 -0.847835 0.009796 0.244240 0.028474 -0.514634 0.868770 -0.091403 0.862606 -0.150853 0.136021 0.159520 0.564745 -0.462020 0.202918 -0.000031 0.595874 -0.239967 -0.327494 -0.061983 -0.520615 -0.198523 -0.883297 -0.034150 -0.885128 -0.664479 0.400006 0.839106 -0.810358 0.438093 0.881344 0.719657 -0.499924 -0.126804 0.808466 0.244362 0.995972 -0.789239 -0.784722 0.082003 -0.640431 -0.662038 0.636158 0.040681 -0.066866 0.928831 -0.051241 -0.211035 -0.194494 -0.567797 -0.341350 0.252663 -0.127598 0.142918 0.937559 -0.250282 0.680960 -0.083773 0.728080 -0.074068 0.872616 -0.909604 0.227210 -0.445784 0.035920 0.178381 -0.938231 -0.740593 0.781915 0.890988 0.467025 -0.768731 -0.145421 0.055574 -0.218055 0.988647 -0.910703 -0.008698 -0.426008 -0.743828 0.031343 -0.096347 -0.295816 -0.981994 -0.973571 -0.138829 -0.352824 -0.191443 0.597705 -0.082675 -0.623218 0.304422 -0.081271 -0.061800 0.131443 -0.719840 0.198462 0.700919 -0.630116 -0.010895 -0.212867 -0.176733 -0.768242 0.032807 0.818720 -0.911618 0.814203 -0.218848 0.199866 0.726066 -0.422834 -0.593982 0.760125 -0.786248 0.190466 -0.409894 -0.626270 0.160070 0.134739 -0.025056 -0.132420 0.831538 0.368328 0.408673 -0.474105 -0.111911 0.373821 -0.941954 -0.994263 0.886715 -0.104709 0.445662 0.475143 -0.882382 0.680044 -0.524705 -0.214331 0.335307 0.536119 0.508774 -0.506272 0.945982 -0.980712 -0.444685 0.541185 0.214759 -0.938658 0.637379 -0.591113 0.055513 -0.148106 0.393841 0.555650 0.964049 -0.713004 -0.014740 0.954344 -0.340617 -0.703421 0.361187 0.538499 0.994018 0.363201 -0.046236 -0.628285 -0.303629 0.544664 0.860103 -0.648305 0.507797 -0.686697 0.574206 -0.737602 0.276528 -0.476058 -0.666433 0.986389 0.571154 -0.176855 0.140660 -0.311014 0.376263 0.812860 -0.477157 -0.210730 -0.567492 -0.720145 0.093295 -0.473251 -0.216285 -0.195410 0.975036 -0.060335 0.093661 0.061129 -0.849361 -0.934751 0.294351 -0.878903 -0.199194 -0.824580 -0.870235 -0.925901 0.692740 -0.140049 0.155736 -0.722892 0.682607 0.769951 0.759880 -0.455306 -0.606494 0.833735 -0.236671 -0.405744 0.131932 -0.241554 0.167089 -0.943663 -0.895688 0.628468 0.605518 -0.634938 0.997803 -0.585192 0.068941 -0.160802 -0.013947 0.206641 -0.541063 -0.732780 0.223853 -0.021943 0.537645 -0.690725 0.892270 -0.297220 -0.165868 -0.972655 -0.143223 -0.371319 0.070589 0.857479 -0.998108 -0.474837 0.670400 -0.664785 -0.696341 -0.284524 -0.089511 0.888485 0.702445 -0.292764 0.281289 0.007843 0.840144 0.232093 -0.384381 0.110019 -0.277932 -0.490768 -0.449995 0.403546 0.367962 -0.456710 -0.119663 -0.928098 0.513108 -0.730033 0.374676 0.085726 -0.576952 0.362041 0.605396 -0.044893 0.884335 0.507981 -0.636464 -0.262490 0.433027 -0.024506 0.217872 0.610645 -0.115757 0.273232 0.780450 0.325236 -0.774834 0.721976 0.242042 0.848689 0.933531 -0.251015 0.739921 0.512803 0.784417 0.717399 -0.880673 0.977905 0.208045 -0.897031 0.652882 0.325724 0.260781 0.831782 -0.721366 0.594165 0.271645 0.589221 -0.078585 -0.934874 -0.772576 -0.084201 -0.543077 -0.380169 0.958800 -0.100742 -0.115390 -0.528123 -0.811457 0.277566 0.269021 -0.407270 -0.492416 -0.235817 -0.986511 0.140538 0.336955 -0.591113 -0.971557 -0.794733 -0.057466 -0.194128 -0.643422 0.183447 -0.438093 -0.037873 -0.182409 0.093356 -0.292703 0.638600 0.235084 0.144932 -0.292886 -0.023652 0.807794 0.875607 -0.452376 0.220618 -0.811945 -0.834834 0.078524 -0.645558 0.829829 -0.557665 0.643910 0.455794 0.168187 0.394574 0.201880 0.589160 -0.805780 -0.505173 0.994324 0.045137 0.986511 0.657338 0.830805 -0.259987 0.761773 -0.666005 -0.952635 -0.411786 0.008209 0.365886 0.204505 -0.340312 0.263161 0.899838 0.584948 0.934996 0.097629 -0.315043 -0.444441 -0.529344 -0.129734 -0.939879 0.854793 0.787164 -0.186254 0.945433 -0.132115 0.291787 0.015595 -0.850154 -0.046297 0.549730 -0.144505 -0.691519 -0.115696 -0.785333 -0.536973 0.760125 -0.539781 0.432722 0.756890 -0.320231 -0.635487 -0.469405 0.628285 -0.222938 0.317179 -0.197363 -0.167577 -0.126621 -0.407086 -0.793268 0.148595 0.671133 -0.035127 -0.215918 -0.627369 0.025910 -0.863704 -0.387066 0.703848 -0.963988 0.723624 0.111118 0.089022 0.260414 0.851924 0.498032 0.086154 0.377911 -0.573168 0.229225 -0.190344 0.600757 0.144810 -0.783319 -0.479354 -0.845820 0.303507 0.646352 -0.575793 -0.864681 0.476241 0.205908 -0.764336 0.062899 -0.888668 0.535020 0.079684 0.431501 0.120945 0.711356 -0.717032 -0.418439 0.519333 -0.416608 -0.374859 0.199194 0.175390 0.764275 -0.391949 -0.243751 0.740654 0.097324 0.307718 0.205420 -0.184667 -0.592273 -0.629383 0.240822 -0.584460 -0.648671 -0.282693 -0.561937 0.803583 -0.826533 -0.485153 0.585681 0.744011 0.190832 0.982238 -0.479965 -0.752007 0.808222 0.589465 0.777215 -0.131321 -0.116916 0.214393 0.373272 0.609302 0.250282 -0.181616 0.026521 0.507675 -0.780816 -0.795343 0.132969 -0.041353 -0.143651 -0.579150 -0.191260 -0.162694 -0.134556 -0.631642 -0.688711 -0.514328 -0.122227 0.181799 -0.848140 0.624989 -0.035066 0.940123 -0.788018 -0.743706 0.187231 0.272195 0.176122 0.611988 -0.010834 -0.580432 0.593799 -0.779656 0.255409 -0.680898 -0.117466 -0.853755 0.839473 -0.733390 0.585070 0.469710 -0.622669 -0.273598 0.192602 -0.934690 0.198828 0.846675 -0.152562 -0.254372 -0.850887 -0.755120 0.236793 -0.170995 -0.866878 0.625782 -0.009735 -0.802972 0.194555 0.792535 0.894101 -0.097934 0.943052 0.616382 -0.765801 -0.611927 -0.858638 -0.475204 -0.419355 0.387494 0.265236 -0.927793 0.325846 -0.443953 -0.151830 -0.844966 -0.710807 -0.091159 0.424299 0.433943 0.701224 -0.880917 0.880856 -0.475021 -0.122105 0.743278 -0.966124 0.524033 0.900266 0.434065 -0.761101 -0.575488 -0.390728 0.204321 -0.151158 0.992676 -0.769402 0.804376 0.332621 0.662526 0.939756 -0.725272 0.866207 -0.987487 0.681997 -0.262246 0.208838 -0.613025 0.558214 0.489364 0.677053 0.224342 0.089877 -0.545762 0.028291 0.655263 -0.324747 -0.932493 -0.932005 0.932310 -0.450179 0.643605 0.791498 0.254494 0.562487 -0.703482 -0.126988 -0.451033 0.081515 -0.526475 0.315836 -0.228187 -0.658864 0.164037 0.074374 -0.708853 -0.457381 -0.152684 0.461776 0.914792 -0.978576 0.240883 -0.845149 0.124790 0.793268 0.911679 0.609607 -0.918455 0.791620 -0.186071 0.698965 -0.039644 0.109470 -0.185583 -0.614063 0.181433 -0.443098 0.269082 0.244545 -0.901730 -0.152074 -0.287454 0.640431 0.704764 -0.271340 0.723808 -0.615528 -0.075777 -0.640553 -0.970275 -0.328166 -0.956359 -0.736625 -0.089938 0.118015 -0.145665 0.153600 -0.035432 -0.294656 0.062227 -0.048067 -0.692801 -0.547472 -0.469405 -0.687979 0.247841 0.618580 0.916745 -0.041780 -0.475326 0.254982 0.266091 -0.846614 0.150731 -0.081881 0.125828 0.608692 -0.065096 0.353618 0.740410 -0.853328 0.742607 -0.033418 -0.108676 -0.568896 -0.444014 -0.110752 0.944884 0.075716 -0.601489 -0.541368 -0.331950 -0.556139 -0.815424 0.917173 -0.622120 0.453047 0.557543 -0.852107 0.984313 0.694693 0.778863 -0.741691 -0.509690 -0.816034 -0.269997 -0.176672 -0.487838 0.050081 0.090915 0.601428 -0.619312 0.480880 0.755791 0.535874 0.387982 -0.765984 0.550218 0.853816 0.740532 -0.973144 0.311747 -0.925047 0.782342 -0.882504 0.395734 0.743645 -0.950377 -0.609790 -0.330119 0.695242 -0.279397 0.257057 -0.940794 0.671072 -0.978454 -0.311808 -0.295206 -0.907163 -0.846736 -0.315897 0.797845 -0.190039 -0.701224 -0.498764 -0.848140 -0.367840 0.276223 -0.055879 -0.423139 -0.540574 0.398053 0.036897 0.114841 0.822504 -0.899228 0.385479 -0.797113 0.645436 -0.094333 0.544176 0.823603 0.044282 -0.725455 0.698477 0.706290 -0.027802 0.922788 0.977111 -0.358013 -0.474044 0.151219 0.704764 0.973937 -0.276040 -0.239174 0.909421 0.325968 0.570482 0.111240 0.395856 0.632496 0.216468 0.886776 0.698050 0.530992 0.031648 -0.868221 0.222816 -0.819269 0.398419 -0.881710 0.897641 -0.430097 -0.958922 0.607593 -0.365276 -0.627308 0.703299 -0.930601 -0.075777 -0.579028 -0.015534 0.420576 -0.131809 0.850337 0.150548 -0.154637 -0.030427 0.985534 -0.271889 -0.739311 0.986267 -0.973876 -0.302469 0.988342 -0.834895 -0.404279 -0.904416 0.196204 -0.832881 -0.783502 -0.159032 -0.327494 -0.003876 -0.227393 0.594592 -0.506394 0.244057 0.024018 0.468245 -0.850581 -0.034455 -0.766411 0.392743 0.688345 -0.506577 -0.029572 0.959288 0.443525 0.508347 0.150548 0.545091 -0.095126 -0.325358 -0.620533 0.538011 -0.702994 0.155370 -0.342631 -0.530076 0.427229 -0.681448 -0.490097 0.873897 0.365581 -0.052522 -0.391949 0.675710 0.519089 -0.732963 0.937925 0.933592 0.663442 -0.900388 -0.415693 -0.262429 0.494064 -0.538255 -0.809870 0.082247 0.258950 0.914975 -0.846492 -0.476180 -0.963683 -0.016877 -0.373455 -0.564501 0.219520 0.948668 -0.623585 -0.327372 0.770745 0.339763 -0.426862 -0.539354 -0.192663 -0.577807 -0.435102 0.318339 -0.917173 -0.992920 -0.295267 -0.171667 0.924375 -0.112400 -0.710013 0.068270 0.189856 -0.783013 0.678030 -0.485763 -0.192297 0.141026 -0.360393 0.229347 0.460372 0.996155 -0.986145 -0.849605 -0.024873 -0.612903 -0.273904 -0.715751 0.984924 -0.544359 0.230873 -0.372906 0.420209 -0.346843 0.444502 -0.381451 -0.603626 -0.670156 -0.772637 0.944090 -0.942442 -0.547166 -0.519944 0.496689 0.940245 -0.234535 -0.085055 -0.687796 -0.581591 -0.299356 -0.433821 -0.711051 0.794488 -0.639332 0.100681 0.505417 0.595630 -0.124302 -0.007965 0.947996 -0.359355 -0.546068 -0.379620 -0.538438 0.439070 0.435774 -0.639454 -0.264931 0.483688 -0.336467 -0.278848 0.134678 0.001251 -0.518479 -0.403607 -0.802911 0.722221 -0.323893 -0.305582 -0.404035 -0.767754 -0.329386 -0.796686 0.392743 -0.531053 -0.713858 0.758415 0.385784 -0.074923 -0.618458 -0.227699 0.369304 0.121311 0.684805 -0.808710 -0.885006 -0.088717 0.127903 -0.260598 0.889218 0.181066 0.998901 0.713920 -0.683279 0.505844 0.222144 -0.606677 -0.593677 0.325358 -0.919797 0.122349 0.547533 -0.797296 0.690054 -0.866512 0.293069 0.726554 0.544664 0.171178 -0.260720 -0.379620 -0.565416 0.977722 0.316263 0.622547 -0.939390 -0.294107 0.800836 0.696646 -0.350078 -0.680227 0.364422 -0.862484 -0.110935 -0.954161 0.469222 -0.865841 0.485641 0.937925 -0.576342 -0.648244 -0.328349 0.617237 0.411481 -0.903928 -0.039460 0.251869 0.804804 -0.377789 0.470504 0.835627 -0.423872 -0.849300 0.127049 -0.168798 0.619495 0.152745 0.056734 -0.761223 0.794794 0.467574 0.484970 0.152928 0.507065 0.814508 0.449873 0.869991 -0.366375 0.261940 -0.354350 0.609363 0.611011 0.215979 0.706839 -0.089938 -0.504990 0.490829 -0.753716 -0.234230 0.805536 0.023835 -0.039216 0.560717 0.969176 -0.202124 0.113681 0.868587 0.172033 0.532762 0.710562 -0.822687 -0.564684 0.708914 0.678213 0.602649 0.725822 -0.514206 0.359478 -0.348491 0.913999 0.076998 -0.361797 -0.900388 -0.607410 0.145054 -0.995605 0.044221 0.167821 0.778130 0.874020 -0.804682 0.235084 0.611560 -0.525132 0.468184 -0.946532 0.656056 0.611744 0.937925 0.929441 0.395734 -0.377728 0.221107 -0.876705 0.718009 0.837642 -0.654775 -0.508164 0.237953 0.858638 0.168371 0.476791 0.579943 0.961852 -0.586840 -0.744743 -0.821589 0.945921 0.375652 0.861934 -0.838496 -0.267190 0.373089 0.095981 0.877926 -0.965148 0.992004 -0.973022 0.631947 -0.598926 -0.800226 -0.090304 -0.812433 0.954527 0.382427 0.322184 -0.395245 0.133641 -0.630665 0.338847 0.969909 0.750603 0.510849 0.551073 -0.416364 0.677541 0.866817 0.748405 0.168371 0.475082 -0.427107 0.071932 0.657216 -0.725700 -0.556017 0.453108 -0.871822 0.225196 -0.121250 0.149876 0.444868 0.824030 -0.872494 -0.806513 -0.833430 0.432295 0.985900 -0.442244 0.291543 0.299173 -0.023591 -0.137059 0.392987 0.400983 0.081698 -0.571764 0.713675 0.408856 -0.910031 -0.516282 0.779229 -0.901669 -0.383160 0.355144 0.093783 -0.487289 0.865658 0.433943 0.480087 0.192785 0.187597 -0.255104 0.626453 -0.214759 0.506638 -0.076083 -0.596423 -0.656789 0.668691 -0.581591 -0.486801 -0.370342 0.780145 -0.277078 0.031159 -0.261940 -0.403607 -0.537584 -0.592090 0.341838 0.024567 0.135594 -0.511887 -0.115513 -0.198950 0.330973 0.112339 -0.975280 -0.592090 0.228370 0.863765 -0.352886 0.290078 -0.802728 -0.478988 -0.247841 -0.564745 0.306436 -0.218177 0.537461 -0.619373 0.555040 -0.182958 0.982971 -0.293313 0.640004 0.220923 0.252663 -0.917356 -0.929991 0.917051 -0.775018 -0.075045 0.440779 -0.415387 -0.535081 0.731376 0.681753 -0.833552 0.949461 0.153478 -0.911130 -0.978210 0.860225 -0.129795 -0.045137 -0.714652 0.754448 0.324137 -0.390851 0.997131 0.427534 0.383892 -0.318949 -0.436995 -0.220557 0.994995 0.397748 0.111118 0.997925 -0.119114 0.730155 0.303873 0.369427 -0.641957 -0.801386 -0.829279 0.033418 0.326273 0.151952 -0.477645 0.988525 0.497299 -0.669607 0.509507 -0.333537 -0.075289 -0.472152 -0.111362 -0.615650 -0.103671 0.162633 0.557726 0.988586 0.253212 -0.427778 0.923521 0.002167 -0.803827 -0.157567 -0.336833 0.589465 0.643849 0.984191 0.444014 -0.351360 -0.796808 0.271035 -0.838923 -0.653615 -0.183325 -0.451277 -0.741447 -0.593860 0.146886 0.330424 -0.305582 -0.537095 0.762566 -0.511032 -0.887448 0.796808 -0.812555 -0.640065 0.784539 -0.241859 0.875729 -0.932920 -0.116794 0.196448 -0.825861 0.882748 -0.348918 -0.794366 -0.663076 0.436201 0.025300 -0.501389 0.652455 0.582202 -0.717338 0.722648 -0.253822 -0.258217 0.266213 -0.971007 -0.877743 0.528855 -0.243141 -0.791009 0.005341 -0.526475 0.551439 0.709037 -0.454207 -0.343303 0.810785 -0.163610 -0.548875 -0.933653 0.239662 -0.529893 0.105075 0.489853 -0.338786 0.587146 -0.762078 -0.247353 -0.451643 0.917966 -0.790033 0.118992 0.075045 -0.956481 -0.029389 -0.336772 0.248939 -0.753838 -0.244057 -0.571947 0.689444 -0.573290 0.587146 -0.820795 -0.388043 -0.599292 0.631886 0.570910 0.582324 -0.114109 0.491684 0.533616 -0.397320 -0.506272 -0.522263 0.697439 0.092502 0.037202 0.937254 -0.337382 -0.673818 -0.532334 0.692862 -0.069308 0.890255 0.752983 -0.341533 0.307657 0.722831 0.009430 0.692984 -0.406903 -0.702750 0.200598 0.754631 0.366375 -0.486618 -0.285684 0.418867 0.683096 0.857356 0.131809 -0.177892 0.494552 -0.605457 0.500168 -0.906491 0.601733 0.156407 0.421552 0.337626 0.957640 -0.515854 -0.728690 -0.769646 0.129185 -0.107150 -0.142796 -0.709281 0.732231 -0.983581 -0.167150 0.890866 0.651357 -0.801874 -0.822565 0.066744 0.857662 -0.712577 -0.945555 -0.807611 -0.363628 -0.793207 0.361614 0.579577 0.037568 0.850276 -0.715262 -0.933958 0.361431 -0.123203 0.168371 0.654469 0.491562 -0.039644 -0.985168 -0.735588 -0.111301 0.059908 -0.074862 0.660878 0.056490 0.271035 -0.206885 -0.380413 -0.707266 0.822199 -0.433088 -0.604846 0.538377 -0.221595 -0.611438 -0.449385 0.136387 0.013886 -0.074496 -0.786248 0.313639 -0.982971 -0.794610 -0.178381 -0.802362 0.090121 -0.731620 0.415571 -0.819025 0.505295 -0.053072 -0.450484 -0.553880 -0.819025 0.088107 0.874752 -0.537339 -0.559923 -0.470626 0.461776 -0.730277 -0.588000 0.140843 0.924009 -0.643727 -0.357036 -0.753655 0.404279 -0.048921 0.474471 -0.264016 -0.513047 0.536119 0.754936 0.182653 0.099094 -0.605884 0.445296 -0.725150 -0.538804 0.004913 0.681814 -0.121494 -0.847591 0.100803 -0.141881 -0.960082 0.350932 0.195410 -0.710257 -0.756706 -0.687674 -0.602710 -0.977111 -0.766228 0.149754 -0.678396 -0.649648 -0.279946 0.976379 -0.088900 0.596728 0.268288 0.473861 -0.019196 0.736137 0.699332 0.949644 0.297159 -0.596240 -0.696524 0.944334 0.004852 -0.134495 -0.816950 -0.547410 0.214454 -0.494186 -0.963012 0.820307 -0.438276 0.398663 -0.300943 0.378826 -0.447127 0.522507 0.742668 -0.118442 0.507126 -0.817682 0.464583 0.802606 -0.090487 -0.798395 -0.440168 0.561632 -0.013825 -0.554491 -0.199133 -0.262917 0.315226 0.239479 0.032502 -0.669851 0.284829 -0.755669 0.796808 0.141942 -0.788568 0.351177 -0.101840 -0.673696 0.931333 -0.842097 0.223304 0.181249 0.676382 -0.409101 0.126988 0.240944 -0.951903 -0.766839 -0.302896 -0.268899 0.901852 -0.077670 -0.789117 -0.550096 -0.046907 -0.819514 -0.904904 0.137669 0.919736 -0.961180 -0.297342 0.396649 0.011261 -0.181127 0.218116 -0.775201 -0.421430 -0.566271 -0.995300 0.225013 -0.263710 -0.228858 0.705191 -0.447859 0.770196 0.720939 0.408734 0.662099 -0.857784 -0.590442 0.197485 -0.077486 0.906125 -0.795282 0.384014 0.151036 -0.655202 0.050996 0.752556 0.140172 0.644215 0.700736 0.117100 -0.765984 0.413190 0.402020 -0.491928 -0.981872 0.865230 0.605579 -0.699393 -0.815302 -0.528672 0.254494 -0.403668 -0.363445 0.899411 -0.782403 0.172338 -0.108554 -0.950133 -0.569201 -0.692068 -0.149937 -0.997070 0.307169 -0.195776 0.989685 -0.312601 -0.020722 -0.494003 0.045808 -0.915159 0.936644 0.641591 0.245155 0.782159 -0.380779 -0.709769 0.151280 -0.316935 0.531175 -0.707938 -0.813471 -0.306497 0.436445 -0.088961 -0.108066 -0.808771 -0.801324 -0.435286 -0.011872 -0.906308 0.828608 0.933348 0.299295 -0.664541 -0.699759 -0.240883 -0.397015 0.569140 0.700247 0.650990 0.468490 0.900510 0.270486 0.204382 -0.854671 0.472152 -0.091464 0.750664 -0.433882 -0.293435 0.687674 -0.952025 0.523850 0.022492 -0.041780 -0.774224 0.088412 0.835932 -0.405621 0.295511 0.323832 -0.341044 0.947142 -0.459151 0.368389 -0.890866 -0.932554 0.098910 0.940794 -0.359111 -0.238746 0.045381 0.334330 -0.187780 0.038606 -0.703909 0.962584 0.899655 -0.479537 -0.362224 0.517136 -0.327555 -0.635487 0.199805 0.802606 0.140355 0.273476 -0.320170 0.308390 0.085665 0.147252 -0.363445 -0.417463 -0.806574 0.943175 0.160375 -0.532029 0.592151 -0.695486 0.236122 -0.734916 0.616077 0.522202 0.109531 0.882199 0.603748 0.390057 -0.029878 0.036897 -0.456343 0.517991 0.262795 0.571154 -0.619861 -0.336100 -0.058809 0.941282 -0.208228 0.648183 -0.025117 0.946959 0.255470 -0.587390 0.422407 -0.239174 0.207434 -0.214026 0.384198 -0.678762 -0.885128 0.519822 -0.854122 0.150792 -0.729545 0.155370 -0.173559 -0.336711 -0.878780 0.286233 -0.157994 0.021393 -0.054292 0.776543 -0.500961 -0.392438 -0.308695 -0.499802 -0.971374 -0.829279 0.783929 0.161046 -0.625050 0.711600 -0.277200 0.758049 -0.950011 0.167821 -0.726432 0.257302 0.366985 -0.036225 -0.929441 0.033967 -0.634266 0.485031 -0.557360 -0.354289 0.741447 0.541490 0.273415 -0.499069 0.090121 -0.118686 -0.290201 -0.015839 0.782708 -0.181738 0.530381 -0.399396 -0.219031 -0.965392 0.986328 -0.296793 -0.293130 0.622303 -0.072359 0.363750 -0.521226 -0.574938 -0.972777 0.951415 0.826106 -0.256203 -0.085238 -0.019562 0.995849 0.467513 -0.966674 -0.209449 0.962523 -0.307108 0.031465 0.620777 -0.544908 -0.105564 0.502487 -0.358684 0.112278 -0.292337 0.884152 -0.495407 0.079440 -0.611255 0.331156 -0.021821 -0.640309 0.011689 -0.627674 -0.777642 -0.769280 -0.533311 0.166112 0.274880 -0.958678 -0.678152 0.165441 -0.694998 -0.301309 -0.389569 0.005951 -0.800287 -0.840022 -0.393536 -0.570971 -0.955504 0.240150 -0.348857 0.052644 -0.938963 0.048738 0.092685 0.801874 -0.435713 -0.632008 0.401654 0.813044 -0.497848 -0.714957 0.524705 -0.378094 -0.860897 -0.609668 -0.460799 -0.549547 0.447127 0.854976 -0.328837 -0.596851 -0.234046 0.699515 0.738578 0.386395 0.295694 0.566881 -0.916684 0.562426 0.983764 0.311075 0.054292 0.151830 -0.631275 -0.284280 0.102695 -0.604602 0.944212 0.653005 -0.445784 0.489120 0.603748 0.997253 0.118870 -0.696280 0.731742 0.604663 0.201819 -0.296976 -0.500168 0.671804 0.077364 0.271096 -0.065950 0.785882 -0.011017 0.262978 -0.686819 0.978454 -0.762688 0.590258 -0.537767 -0.903989 -0.680837 0.654164 -0.497543 0.799188 -0.820429 0.839167 -0.378704 0.503220 -0.360027 -0.521043 -0.575976 0.572802 -0.935789 0.107822 -0.569750 -0.917051 -0.674062 -0.190893 -0.722831 -0.540941 0.138524 0.474776 -0.807428 0.307779 0.811518 -0.213294 0.299661 0.752739 -0.505295 -0.266335 0.316507 -0.414228 0.973632 -0.524094 0.212683 -0.452315 -0.922300 0.369793 0.385235 -0.950011 0.764824 -0.035188 -0.083346 0.650929 -0.056673 0.786554 -0.522568 0.597461 0.095798 0.716422 -0.564013 0.746574 -0.234596 0.782220 -0.262551 -0.822077 -0.031709 -0.829218 -0.885128 0.810114 -0.405805 -0.723563 0.195471 0.333537 -0.142003 0.596362 0.062410 0.772332 -0.135899 0.286660 0.838069 -0.012726 0.347270 0.191198 -0.152318 0.433271 -0.348918 -0.845149 -0.071505 0.482406 -0.992126 -0.564745 -0.554552 0.626637 -0.818964 -0.976012 0.576891 0.871395 -0.465926 0.691275 -0.568651 0.633473 -0.412824 -0.435286 0.560472 -0.545030 0.125095 0.056734 -0.572924 -0.153539 -0.082003 -0.048372 -0.605762 0.571337 -0.881832 0.465316 0.795770 -0.316019 -0.604846 0.090243 0.651051 -0.365093 -0.128697 -0.961730 0.587390 -0.246010 0.921201 0.093295 -0.468368 0.425764 0.896054 0.686453 0.733879 0.268227 -0.162694 0.007233 -0.314493 0.628407 -0.759758 -0.038728 0.494736 0.706351 -0.068636 -0.210974 -0.719047 -0.379009 -0.878903 -0.843257 0.152013 0.729789 0.695486 -0.467330 0.325236 0.514450 -0.192297 0.660878 -0.044099 -0.654042 -0.166112 -0.054476 -0.764946 0.441145 0.753960 -0.442793 0.319803 0.322367 -0.979125 -0.924924 0.657094 -0.905515 -0.018647 0.476363 -0.734184 -0.149632 0.908628 -0.714408 0.537706 -0.482284 -0.288003 0.697684 -0.880001 0.459761 -0.615467 0.484481 0.443831 -0.857173 -0.748955 -0.499313 0.457808 -0.817682 -0.920225 -0.401227 -0.867000 -0.919919 -0.880123 -0.233070 -0.701041 -0.033845 0.126743 0.302103 -0.626026 -0.343547 0.438704 -0.169042 -0.446638 0.339640 0.166540 0.990783 0.016449 0.205237 -0.440779 -0.417341 0.715995 0.325663 -0.392621 -0.989380 -0.688101 -0.895260 -0.051973 0.818110 0.812311 -0.394635 0.132176 -0.866329 -0.516221 0.067721 -0.681326 -0.158544 0.593799 0.932615 0.456099 0.284341 0.547716 0.680044 0.015046 0.316752 0.982849 -0.202368 -0.665334 0.516282 -0.618213 -0.810114 0.643910 0.368877 -0.231666 0.341533 -0.178381 0.238685 0.047212 -0.452925 0.957701 -0.064364 -0.448836 -0.480148 0.776543 -0.306681 -0.641957 0.691702 -0.012482 0.369243 0.939085 -0.482955 -0.377361 0.680593 -0.297891 0.093478 -0.574206 0.287515 0.992187 0.410443 0.354839 0.536363 -0.889157 -0.459334 0.259316 -0.324076 0.918455 -0.915952 0.797174 0.358440 0.579882 -0.820734 0.651601 0.238807 -0.981384 0.393109 -0.888974 -0.516831 0.639271 -0.197974 -0.924009 0.001129 0.882260 0.577563 -0.447249 0.212012 -0.826289 -0.612598 0.698843 0.159886 0.831965 0.926633 -0.518601 0.788018 0.493149 -0.111240 -0.988525 0.185949 0.619678 -0.307474 -0.383404 0.622425 -0.347392 0.273354 0.713797 -0.824824 -0.628529 0.254860 -0.453597 -0.228614 0.023103 -0.188635 -0.153478 -0.549547 0.783135 -0.465682 0.485214 0.662282 0.111423 -0.384808 -0.825617 0.412885 -0.434919 0.657094 -0.718680 0.070406 -0.369366 0.428144 0.818964 0.643605 -0.861751 -0.131565 -0.325114 -0.654469 0.820612 0.663747 0.140904 0.255165 0.578906 -0.302591 0.805780 0.888485 -0.982055 0.694815 0.873653 -0.506821 0.814081 0.370464 0.971252 0.877621 0.476608 -0.607593 -0.494613 -0.412030 0.067110 -0.524583 0.633961 0.245460 -0.561998 0.915036 0.912534 -0.144078 0.552843 -0.123936 0.679617 -0.094760 0.451521 -0.252602 -0.757988 -0.948668 0.422590 -0.124363 -0.075350 0.227515 -0.055452 -0.010102 0.044588 0.967650 0.960021 -0.368816 -0.125401 0.766656 -0.956786 0.897458 -0.342875 0.289163 -0.973998 -0.182287 0.731254 0.237403 -0.357768 0.668386 -0.164220 0.692740 0.754448 0.541978 0.650685 0.741447 -0.274514 0.483871 -0.361248 -0.800958 0.496811 0.506699 0.251381 0.244118 -0.063753 0.796869 0.559130 0.774712 -0.981811 0.424604 0.371624 -0.699393 -0.602283 -0.129124 0.907407 -0.817133 0.942320 0.682546 -0.922544 0.033113 0.782891 0.569506 -0.555406 0.085910 -0.553331 -0.744621 -0.079257 -0.643361 0.635243 -0.604907 0.265175 0.396161 0.208350 -0.129551 -0.553575 0.456282 0.938902 -0.221900 0.929441 -0.122288 0.598621 0.421003 -0.049043 0.513291 -0.061007 -0.384075 -0.153478 0.998291 0.128941 -0.369243 -0.510361 0.681875 0.211951 -0.937864 0.907529 -0.969787 0.145787 -0.032014 -0.865291 0.315714 -0.014130 0.565539 -0.632191 0.402692 0.776421 0.809137 -0.516953 -0.555467 -0.289346 -0.841182 0.980163 -0.697378 -0.876461 -0.146702 0.413984 -0.499313 -0.121555 0.998474 0.377422 0.526780 0.711356 0.786126 0.097140 0.295511 0.094089 0.152867 0.705435 0.582873 0.180334 -0.806146 -0.749809 -0.753838 -0.604846 -0.357891 0.505783 -0.958434 -0.767327 0.727592 0.646901 0.852107 -0.177587 0.726737 -0.151463 0.137852 -0.172155 -0.483139 -0.125584 0.421613 -0.759941 0.446577 -0.284646 0.622364 0.627613 0.834468 -0.658193 0.048311 -0.593677 -0.589648 0.631825 -0.136692 0.691336 0.009735 -0.462813 0.837886 -0.706778 -0.165563 0.550645 0.198035 0.421552 -0.407025 -0.464034 -0.615589 -0.342570 -0.168310 -0.015595 -0.465865 -0.241005 0.769768 0.758599 0.497238 0.860286 -0.048982 0.388165 0.201575 -0.371868 -0.975585 -0.021943 0.177160 -0.061861 -0.033967 -0.207434 0.053804 0.632496 0.054659 -0.421796 0.843379 0.922788 -0.085665 -0.313517 -0.180273 0.999634 -0.064730 -0.938902 0.809626 0.411603 -0.613514 -0.850215 0.704947 -0.223304 -0.467757 -0.194800 0.011261 0.387982 -0.934996 0.236244 0.243385 -0.723991 -0.832942 -0.927244 -0.018647 0.291665 0.513718 0.606311 0.398968 0.769890 -0.469588 -0.731803 0.077486 0.338969 0.216407 -0.590075 -0.082980 -0.563891 0.846675 0.445357 -0.041780 0.093112 -0.133885 0.419477 0.926206 0.553453 0.287332 0.065523 0.309854 0.284585 0.904355 0.412336 -0.210669 0.946715 -0.364116 0.005402 -0.177343 -0.118625 -0.690298 0.803827 0.205847 -0.317850 -0.798822 0.814814 0.417707 0.409467 0.637501 0.530076 0.562670 0.012848 -0.018097 -0.775689 0.723380 -0.477218 -0.691763 0.180700 -0.463912 0.574023 0.080355 0.903378 -0.198279 -0.176000 0.147130 -0.618213 -0.056612 -0.171911 -0.633168 0.467818 -0.874569 0.934385 0.173009 -0.571398 0.844111 -0.239662 0.393536 0.738029 0.804010 0.814447 0.637196 -0.831660 -0.108188 0.824091 -0.441755 -0.753777 0.060518 0.334025 -0.687063 0.133091 -0.064241 0.135838 0.519272 -0.005036 -0.041963 -0.907346 -0.965819 0.922544 -0.127903 0.920835 -0.141392 0.464400 0.376507 0.490219 0.484787 0.836726 -0.254128 -0.791803 0.996643 -0.129795 -0.761223 0.046602 -0.762627 0.759026 0.102329 -0.223548 0.355632 0.671682 -0.012238 0.972472 -0.957274 -0.711112 -0.411603 -0.651357 -0.225501 -0.670888 -0.687490 0.989624 -0.631336 0.124729 0.804498 -0.962340 -0.827876 0.312052 -0.874874 0.400922 -0.811090 0.696463 0.405866 0.041719 -0.537889 -0.643422 0.787042 -0.588977 -0.977416 0.048555 -0.545640 0.589343 -0.283792 -0.026154 -0.414289 0.696585 -0.777154 -0.027131 0.019929 0.134983 0.578906 -0.792901 -0.538621 -0.773919 0.516343 -0.608631 0.031953 0.804437 -0.069002 0.640126 -0.016816 -0.668935 0.791864 -0.011078 0.381085 0.089572 0.804254 0.654653 -0.423872 -0.974425 0.139805 -0.903928 0.270791 0.794366 -0.455184 -0.061678 0.997497 -0.423017 0.140843 -0.177831 0.818781 0.229652 0.227882 0.242653 -0.936766 0.326151 -0.594592 0.437727 0.908628 0.658803 -0.678762 0.390545 0.624989 0.757683 -0.637623 -0.992553 -0.708792 0.992859 0.599658 -0.465743 0.796075 -0.179724 0.298379 -0.726798 0.936827 -0.264260 0.308817 -0.336711 -0.571520 0.497177 -0.353252 -0.213477 -0.364238 -0.820124 0.579455 -0.637928 -0.160680 -0.373821 0.526597 0.291604 0.850887 0.851436 -0.908689 0.817743 -0.212745 0.970336 0.531846 -0.641896 0.818476 0.205115 0.987426 0.078097 0.699271 -0.462142 0.770440 -0.736076 -0.099887 0.570299 -0.962218 0.559435 -0.853084 -0.847224 -0.846797 0.128086 0.184301 0.345805 0.053865 -0.195898 0.573351 -0.724906 -0.066866 -0.706656 -0.662221 -0.554796 -0.447676 -0.511460 -0.730583 -0.928953 -0.505905 -0.040681 0.707327 0.992615 0.669301 0.681143 0.600696 0.733512 0.390423 -0.935057 -0.329020 0.267251 -0.675832 0.349834 -0.516709 0.052278 -0.364666 0.421674 0.240272 0.899533 -0.365825 -0.880001 -0.888546 0.234352 -0.759331 -0.904172 -0.089145 0.315714 -0.422224 0.282449 -0.066683 0.974425 -0.994507 -0.958007 0.764946 0.433821 0.909360 0.050874 0.877743 0.774895 -0.444807 -0.014740 0.822321 -0.391705 -0.677297 -0.929929 0.830744 0.516282 -0.369304 -0.445662 -0.358013 -0.174047 0.865719 -0.826472 0.362468 0.277871 -0.372417 0.664357 0.174108 -0.849117 0.603809 -0.608814 -0.296854 -0.592578 -0.615162 0.149632 0.861019 -0.580126 -0.465682 -0.792657 0.970336 -0.157933 0.224342 0.646474 -0.010895 -0.812311 -0.249245 -0.931516 0.644765 0.678274 -0.760613 -0.274087 0.290445 -0.077425 -0.143590 0.141087 0.297342 -0.007965 -0.165502 0.276772 -0.206030 -0.548753 0.628773 -0.680715 -0.434187 -0.090304 0.513596 0.138157 0.927671 0.654530 0.933409 -0.516953 -0.619068 0.927915 -0.080233 0.982604 -0.130711 -0.587756 -0.112033 -0.994446 -0.556627 -0.516160 0.124119 0.448531 0.148900 -0.200781 -0.723319 0.511277 -0.050020 0.775811 0.164586 -0.476669 0.499557 0.529771 0.213782 0.883663 -0.429426 0.833308 -0.164525 -0.823969 0.959471 0.653737 0.058077 0.523118 -0.325419 -0.162511 -0.274026 0.240333 -0.776910 0.501144 -0.423261 -0.145482 0.807245 0.691519 -0.490219 0.546983 -0.756706 -0.121860 0.359416 -0.914609 -0.583544 0.840632 0.483688 -0.693045 0.082308 -0.488083 0.482467 -0.786431 0.829341 -0.657338 0.356914 0.744316 -0.986450 -0.253883 0.422712 0.284890 0.478622 -0.811518 0.290017 0.978698 0.873348 0.486068 -0.778252 0.900998 -0.620655 0.871944 0.184118 0.158361 -0.337931 0.394330 0.900082 0.977355 -0.144505 -0.789666 0.219947 -0.157018 0.396222 -0.664296 -0.879269 -0.248939 -0.483688 -0.585070 0.646718 -0.363689 -0.790399 0.072848 0.103854 -0.961547 -0.517014 0.411115 -0.178808 -0.930723 -0.294900 -0.788690 -0.209571 -0.256996 0.865413 -0.591601 0.497238 0.732475 -0.444014 -0.604968 -0.743522 -0.386761 -0.511704 -0.278542 0.364116 0.659169 -0.642201 0.751640 0.377178 0.250465 0.868404 -0.160314 0.836238 -0.041902 -0.270241 -0.412458 -0.259316 -0.633656 -0.559862 -0.252052 0.091647 -0.303812 0.666250 0.333659 0.812494 0.291421 0.033296 0.496872 0.361614 -0.968566 -0.861568 0.740287 0.349162 0.731986 -0.401410 -0.977172 -0.530625 0.595935 0.946104 0.322672 -0.937193 0.778619 -0.815241 0.218848 0.619312 -0.872005 0.818598 0.056307 0.534898 0.163671 0.165075 0.254311 0.435713 -0.644093 0.767022 -0.677786 0.380108 0.769219 0.713736 -0.854549 -0.747551 -0.869930 0.685476 0.102268 -0.339091 0.384686 0.532517 0.576037 -0.348491 -0.194006 -0.797479 0.424299 0.551256 -0.285073 -0.172582 0.967162 -0.747734 -0.122898 0.783258 -0.942259 0.250587 0.637806 0.535203 -0.202246 -0.249550 -0.142308 -0.919858 -0.541124 -0.851802 -0.287942 -0.200293 -0.824946 0.207373 0.415571 0.535203 0.965941 -0.762810 0.935240 -0.301248 0.654836 0.588733 -0.245216 0.231239 -0.755547 0.778436 -0.248634 -0.779412 -0.688589 -0.445967 0.248817 -0.006623 -0.016999 -0.785577 0.308817 0.490402 -0.941527 0.495346 0.322977 0.740959 -0.162206 0.334086 -0.031831 -0.753227 -0.780999 -0.173681 -0.412519 -0.911313 0.628590 -0.314066 -0.940123 -0.431501 0.345744 -0.478256 -0.779900 0.198584 0.783807 0.242897 -0.107700 0.851131 -0.708609 -0.094089 -0.400922 0.881100 0.035615 0.315653 -0.990783 -0.966857 -0.470809 0.692251 -0.814081 0.947142 -0.634327 -0.282571 0.698111 0.073031 0.723075 0.272073 0.658193 0.809320 0.200171 0.177587 -0.252663 -0.324503 -0.452437 -0.746269 0.292276 -0.666433 0.855098 0.005707 -0.545457 -0.731742 -0.240944 0.251747 0.596423 -0.058992 0.231727 -0.994201 0.884152 0.228431 -0.484909 -0.074252 0.193091 0.958922 0.761834 -0.359416 -0.624928 0.359050 -0.054537 -0.730399 0.952330 0.222816 0.603015 0.444929 0.298990 0.615955 0.971923 0.150487 0.374187 -0.072176 -0.916013 -0.309610 0.067660 0.083895 0.378948 0.097934 -0.778375 -0.269753 -0.600024 -0.700797 0.390973 -0.796381 0.133824 -0.657216 0.403546 0.099094 0.557970 -0.991699 -0.215308 -0.752129 -0.042940 0.106601 -0.892941 -0.082308 0.571947 0.783441 0.328532 0.048433 0.142613 0.140233 0.181066 0.335307 0.908444 -0.517014 -0.326640 -0.027680 -0.371868 0.513230 0.768364 0.868526 0.181494 -0.227638 0.299722 0.148717 -0.684439 -0.347148 0.188818 -0.247047 -0.901730 -0.712088 0.025117 0.945128 0.641224 -0.366924 -0.927793 0.544847 0.654408 0.051057 -0.237831 0.694266 -0.603992 0.713614 -0.259194 0.972472 -0.421125 0.132054 0.526170 0.670400 0.796197 0.129063 -0.157567 0.037812 -0.970214 -0.435469 -0.307047 0.316141 -0.196997 -0.872127 -0.766900 -0.631825 0.539659 0.509201 0.507004 0.718802 0.693655 0.261696 0.109897 0.817560 -0.789850 -0.331889 0.838801 0.337016 -0.118809 0.923948 0.393780 0.318339 0.158361 0.948607 -0.807123 0.977355 -0.014924 -0.860836 0.362407 -0.017121 0.211158 0.377300 -0.034272 0.020783 -0.848750 -0.397626 0.532945 0.455061 0.851131 -0.735588 -0.046541 0.899472 -0.377300 -0.032502 0.794855 -0.488266 0.411725 -0.382366 0.109592 -0.177099 -0.440474 -0.613208 0.792779 0.914426 -0.477706 -0.193884 0.552965 0.755058 0.109470 -0.699942 -0.440840 -0.489181 -0.195959 0.474899 0.825556 0.640187 -0.271950 0.473312 0.397382 0.586352 -0.185400 0.708365 -0.599902 0.880245 -0.250832 0.288125 -0.985778 -0.534227 0.243751 0.444929 0.438398 -0.939268 -0.795160 0.280618 0.903073 -0.635304 0.358806 -0.859249 -0.201697 0.927793 0.896359 -0.069552 -0.023835 -0.508774 -0.300394 0.683889 0.292398 0.614246 0.713614 0.700125 0.448042 -0.602710 -0.975829 0.558275 0.195227 -0.883358 0.206336 0.323649 -0.032136 -0.419416 0.503769 -0.742058 -0.998657 -0.978393 0.403729 -0.654042 0.002594 0.335795 -0.831782 -0.049043 0.433271 -0.517624 0.885250 -0.088229 -0.530625 0.856258 -0.398480 0.393536 0.698782 -0.554674 0.100497 0.804865 -0.381024 0.585681 -0.113254 -0.906003 -0.000702 -0.873226 0.940001 0.736747 0.167882 0.819514 0.801569 -0.272866 -0.712577 -0.260781 -0.445051 -0.113926 0.681631 0.556566 0.263649 -0.202185 0.274758 -0.531846 -0.571764 -0.312174 -0.792657 0.600574 -0.974181 -0.444563 0.689749 -0.301492 0.694021 0.871883 0.156774 -0.088290 -0.378582 -0.842219 0.785577 -0.508835 0.708487 -0.247658 -0.561083 0.208411 0.559557 0.085299 -0.902280 0.309793 -0.129917 0.766778 0.843013 0.818537 -0.229469 0.804804 -0.547838 0.997009 0.689871 -0.735038 -0.329142 -0.218848 -0.698843 0.683828 -0.777215 -0.998901 0.111667 0.548204 -0.379437 -0.801813 -0.740043 0.154515 0.839656 -0.147069 -0.917478 -0.841853 0.918393 0.835749 -0.987487 -0.872066 0.546129 0.892026 -0.627064 0.416181 -0.297952 -0.024201 -0.373150 -0.342021 0.407453 -0.756951 -0.352763 0.212073 0.653554 -0.482162 -0.431318 0.855220 -0.431989 0.043184 0.783807 -0.956664 0.881893 0.330363 -0.353374 0.051363 0.759636 0.917661 0.445540 0.304361 -0.944273 -0.147740 -0.792108 0.212989 0.058748 0.707022 0.900021 0.825068 -0.213416 0.944762 -0.416913 -0.394147 -0.105136 0.443342 0.089816 -0.339579 -0.738762 0.992676 0.781915 -0.291116 -0.692129 0.577074 -0.046968 -0.870785 0.124790 -0.744133 -0.561815 -0.621937 -0.543748 0.453291 -0.006745 0.103366 -0.386639 0.471480 0.005585 -0.739250 0.374554 0.038484 0.100192 -0.453413 0.937071 0.704520 -0.797723 0.459578 0.981445 -0.102939 0.619739 0.303934 -0.087558 -0.549852 -0.292947 -0.553514 0.337443 -0.582263 -0.325541 -0.859615 0.845943 -0.014863 -0.896115 -0.772942 0.152623 -0.709525 -0.266030 -0.969604 -0.334086 -0.030854 0.077792 0.754265 0.544725 0.232765 -0.565172 -0.303446 0.306131 0.296487 -0.140110 0.592578 -0.953551 -0.033967 0.651479 0.398907 0.338115 0.197607 0.922666 0.832209 0.864132 0.442732 0.815912 0.973754 -0.145726 0.590869 0.925413 -0.746940 0.384381 -0.677664 0.488510 -0.877010 -0.399457 -0.316263 -0.090426 -0.261208 -0.067049 -0.301675 0.178014 -0.046846 0.359233 0.824702 0.743889 0.940916 -0.218055 0.074618 0.412152 -0.235817 -0.418317 0.604602 0.819880 -0.807428 -0.592029 0.591845 -0.942564 0.088778 -0.728446 -0.791803 0.997009 -0.326640 -0.000336 -0.495651 -0.109836 -0.018647 -0.882931 -0.983947 -0.201880 -0.177648 0.215613 -0.093417 0.416120 0.557176 0.874203 -0.544359 0.854793 -0.996948 -0.807794 0.709586 0.941221 -0.218848 -0.000824 0.103183 -0.397748 0.416974 0.801630 -0.132481 0.891781 -0.492538 0.531785 0.035066 -0.774651 -0.732292 -0.840938 -0.145421 0.384747 0.767998 -0.772393 -0.570421 -0.146580 -0.824641 -0.618580 -0.608936 -0.952025 -0.688345 0.941282 -0.581652 -0.994568 0.840205 -0.405805 -0.579760 0.090793 -0.606311 -0.741020 0.188025 -0.714042 0.956847 0.189978 -0.665151 -0.375958 -0.185705 0.381512 -0.668447 -0.670156 -0.621570 0.335917 -0.546373 -0.769524 0.207984 0.256935 0.450117 -0.002228 0.530686 -0.268349 -0.251991 -0.214881 -0.417524 0.963439 0.004425 -0.178381 -0.924314 -0.382794 0.818476 0.525498 -0.891964 0.342082 0.416364 -0.300333 -0.173620 -0.969481 -0.878903 -0.628040 -0.843806 0.879879 -0.579455 0.842158 -0.089694 0.315653 0.444624 0.498276 0.588977 -0.157811 -0.333964 -0.033967 -0.816340 -0.119846 -0.363872 -0.848628 0.297891 0.655873 0.567675 -0.258950 0.895749 0.203223 0.578539 -0.277810 0.993164 -0.458113 0.407636 0.484420 0.602405 -0.906552 0.416425 -0.934263 -0.757317 -0.601611 0.687246 -0.893613 -0.669424 0.196509 0.032991 -0.928648 -0.238990 0.933103 0.728324 -0.694388 0.992431 0.753105 0.776666 0.483322 -0.051546 -0.953551 0.524766 -0.985656 0.048738 0.606616 -0.562792 -0.029389 0.680349 0.464461 -0.155858 -0.906247 -0.576159 0.461165 -0.526963 0.448042 -0.654286 0.621204 -0.420637 -0.720573 0.669118 -0.610889 0.486923 0.645619 -0.863277 -0.208106 -0.649831 -0.623646 0.377117 -0.410749 -0.046846 -0.070284 0.587573 0.475631 -0.645497 -0.295511 0.845820 0.394269 -0.806085 0.372784 -0.636647 0.028169 0.470443 0.794000 0.992615 -0.471358 -0.394024 0.073946 0.299783 0.544847 0.607288 0.330546 -0.481918 -0.383343 -0.863155 -0.270730 -0.308756 -0.006745 -0.692373 -0.649403 0.320841 -0.060030 -0.988098 0.452071 -0.169225 0.596118 0.598682 -0.313089 0.160497 -0.554430 0.710501 0.843135 -0.201270 0.464034 0.093600 0.663564 0.572619 -0.996521 -0.807306 -0.688833 0.501816 0.478500 0.343608 -0.958678 0.032441 0.914731 0.376019 -0.356853 -0.037873 0.424421 0.439009 0.213294 0.368877 -0.331034 0.861629 -0.175695 0.856502 0.373211 -0.138951 0.649709 -0.571276 -0.047578 -0.088900 0.108798 0.305216 -0.684622 0.583361 -0.406415 -0.009308 -0.094333 -0.326823 0.340007 -0.088717 -0.956481 -0.576342 0.006134 0.929319 -0.368511 -0.340129 0.520554 0.049471 -0.714957 0.645192 0.761711 0.629261 0.952513 -0.526597 0.632862 0.405316 0.084872 0.808222 0.093234 0.649159 0.419233 -0.217322 -0.290628 0.764153 -0.561632 -0.128208 0.287820 -0.364116 -0.432234 -0.450240 0.152989 0.050203 0.174291 0.545213 -0.368328 -0.511460 0.427595 -0.493515 -0.692801 -0.384136 0.087436 -0.110508 -0.394330 -0.227760 0.279397 -0.118992 0.276589 0.780450 -0.678701 -0.830866 -0.669485 0.382794 -0.337138 0.374493 -0.003204 0.619312 -0.998718 -0.046480 -0.737785 0.460005 -0.365276 0.387432 0.555345 0.003021 -0.882809 0.468490 0.137181 -0.447615 0.276162 -0.503586 -0.238441 -0.113498 -0.343852 0.197913 -0.832331 -0.969115 0.450850 0.180639 0.966979 -0.152318 0.985473 0.735466 -0.512864 -0.246925 0.812799 0.798395 0.135716 0.877194 -0.514817 0.885739 0.845515 -0.022919 0.064119 0.813715 0.164769 0.416791 0.431379 0.016205 -0.445662 -0.474288 0.462874 0.272805 0.454329 -0.351177 0.128513 -0.341227 -0.317484 0.200598 0.580676 -0.469039 -0.272073 -0.964782 -0.707511 -0.639027 -0.499008 0.446211 -0.689200 -0.771355 0.103122 0.106540 -0.316568 0.787957 -0.821284 0.263833 -0.874081 0.518418 0.411420 -0.499191 ];
Xre=[-0.008422 0.002659 -0.000217 -0.010597 -0.001546 0.004179 0.007916 -0.001119 -0.008136 -0.000690 -0.004375 0.004118 -0.005622 -0.003760 0.005486 0.005051 -0.011676 0.010508 0.004987 0.000509 0.002677 0.001170 0.008242 0.000843 -0.004870 0.013976 -0.012027 -0.007698 -0.005853 0.007387 0.002000 -0.001780 -0.005520 0.002204 -0.002842 0.000861 0.013139 0.000725 0.002855 0.001514 0.016929 0.000741 -0.005868 0.012020 -0.004075 0.000548 0.001534 -0.000875 -0.010297 -0.008050 0.010414 -0.000541 0.002327 0.002783 -0.002063 0.004835 -0.000420 -0.001783 -0.002319 0.010661 0.005274 -0.001491 -0.002889 0.005507 -0.012737 -0.009487 0.000463 0.006454 0.003586 0.005009 -0.013874 0.001687 0.005543 -0.007137 -0.006097 -0.000597 -0.006873 -0.006975 0.002588 -0.012825 0.013945 0.000923 0.007331 0.000430 -0.006951 -0.001110 -0.000590 -0.000627 -0.008800 0.006349 0.010854 0.001400 -0.007126 0.000876 -0.006050 -0.002443 -0.003001 -0.003436 -0.007245 -0.004840 -0.004741 0.003787 -0.003821 -0.003569 -0.010674 -0.005853 0.006337 -0.006435 -0.009130 0.002597 0.009260 -0.007951 -0.015394 0.005031 -0.003644 0.001941 0.000949 0.002378 0.008336 -0.018159 0.000984 0.001965 -0.009348 -0.004194 0.008645 0.001647 0.000721 -0.010037 -0.001405 -0.005558 0.002520 -0.013268 -0.007238 0.002666 -0.002443 0.001206 -0.005549 0.007155 -0.001381 0.001703 0.006487 0.003581 0.001966 0.004898 -0.000306 0.000815 0.004182 -0.002346 -0.002722 -0.004249 -0.008708 0.001958 -0.002780 0.002981 -0.006860 -0.000674 0.007004 0.003828 0.011214 0.003522 0.004990 0.002757 0.004516 0.003783 0.007390 0.003119 -0.010709 0.007842 -0.004167 -0.009933 0.000279 -0.005721 0.004086 0.016981 -0.004828 0.006137 -0.003315 0.004865 0.005525 -0.012006 -0.000601 -0.001844 0.008624 -0.004928 -0.011997 0.004140 -0.004019 -0.003115 -0.003223 0.001303 -0.003698 -0.004053 -0.002879 -0.005621 0.003524 0.006901 -0.001775 -0.000246 -0.001745 0.002850 0.004320 0.008556 0.017344 0.005330 0.003216 -0.004175 0.005986 -0.010948 0.007155 -0.000623 0.001298 0.000414 -0.003968 -0.003602 0.006261 0.001523 0.002517 0.006650 0.000943 -0.006248 -0.001259 -0.003703 0.001918 -0.013088 -0.009860 -0.002093 0.003092 0.011333 -0.000261 0.001321 -0.004219 0.009307 -0.001603 0.004711 0.001105 -0.015347 0.008667 -0.005865 0.002087 -0.019226 -0.000524 0.000187 -0.000254 0.000989 -0.002867 -0.006021 -0.005435 0.002327 -0.000214 -0.005069 0.009726 0.008732 -0.011258 -0.007602 0.004639 -0.005774 0.004167 -0.007140 -0.001361 0.007546 -0.007513 -0.004839 -0.006936 -0.011906 -0.005095 -0.003862 -0.000271 -0.001918 0.003120 0.002933 0.002120 0.010745 0.000274 0.001852 -0.004596 0.005022 -0.001590 0.002652 0.003243 -0.005286 0.002645 -0.001856 -0.008504 -0.002845 -0.000445 0.000981 0.002059 0.007212 -0.005492 0.011956 0.005211 0.002224 0.000954 0.004627 0.005103 -0.010778 0.008991 -0.003051 0.003174 0.007357 0.000428 -0.005547 0.003398 0.005807 0.004844 -0.012438 0.006238 -0.008643 -0.012543 -0.010478 -0.002657 0.002890 -0.004498 -0.005482 -0.008557 -0.004111 0.006346 -0.000232 -0.005240 -0.001970 -0.000125 -0.007083 -0.005903 0.007622 -0.002666 -0.006167 0.000412 -0.001714 0.012032 0.008096 -0.005617 -0.004087 0.002211 0.011428 0.000123 -0.001544 -0.007003 0.010011 -0.008787 -0.001890 -0.001109 -0.001032 0.005652 0.002134 -0.013169 -0.003181 0.004663 -0.001762 0.000711 0.010669 -0.000796 0.008450 0.004475 0.000906 0.001285 -0.004068 0.001803 0.013052 0.000101 0.003332 -0.008420 -0.004088 -0.000943 0.000813 -0.002086 -0.000765 0.006121 0.006733 0.008310 -0.004227 0.010072 0.004018 0.003243 0.002586 0.000098 0.008723 -0.009635 0.001586 0.009911 0.005047 -0.001162 -0.011729 0.001939 0.009161 -0.004146 -0.004958 -0.003910 -0.002806 -0.015163 0.001717 -0.002236 0.000944 0.011933 0.003975 0.000675 -0.007498 -0.003445 0.002781 0.008934 0.009745 -0.003227 0.005908 0.000636 -0.001902 -0.003074 -0.001784 -0.004727 -0.005142 0.003078 0.004500 0.003920 0.003517 -0.005740 -0.004456 0.008334 -0.006597 0.002238 -0.003310 -0.008505 0.008643 -0.020845 0.008391 -0.005218 -0.009668 -0.000186 0.012628 -0.005942 0.005989 -0.003107 0.003003 0.001731 0.011284 -0.005011 -0.000454 -0.010258 0.008200 -0.001435 0.010932 0.000557 0.004203 0.005742 -0.008609 0.005565 -0.001664 -0.010416 0.000328 -0.005986 -0.003409 0.002522 -0.016067 -0.008691 0.001403 -0.009661 -0.001493 -0.004411 -0.001627 0.001239 0.004446 0.012359 -0.009246 0.002638 0.009028 -0.003255 0.003352 -0.010176 -0.006254 -0.006599 0.006209 0.001852 -0.013435 0.000777 -0.002295 0.004405 0.002563 0.005107 -0.003718 -0.006398 0.002890 -0.002426 -0.005112 -0.007648 -0.002252 0.004305 0.007936 0.000896 0.006206 0.002609 -0.001121 0.004793 0.007749 0.002677 -0.005627 -0.005499 -0.003811 0.001227 0.003006 -0.004788 0.000607 0.000837 -0.009236 0.001927 0.004651 0.004253 -0.003046 0.001275 0.003017 0.007057 -0.002814 0.012150 -0.000981 -0.003804 0.007140 0.009971 -0.000041 0.004271 0.014584 0.009310 -0.000737 -0.001018 -0.004569 0.000700 0.003358 0.003011 -0.000901 0.003502 -0.000234 0.006231 0.005951 0.006917 0.010343 -0.004778 -0.011623 -0.003364 -0.001422 0.007485 -0.006265 -0.015638 0.008423 0.004295 0.004242 -0.001636 -0.005410 0.000172 -0.007429 0.015275 0.006841 0.000818 -0.000386 -0.002449 -0.003466 -0.002247 -0.005018 -0.004769 -0.006604 -0.006069 0.006887 -0.004790 0.001938 -0.011180 -0.003219 0.010693 0.004399 0.000801 0.006893 -0.000486 -0.000282 -0.004702 -0.008415 -0.007385 -0.001584 0.005413 0.004082 -0.006096 -0.007872 -0.000293 -0.002638 0.001726 0.002539 -0.004790 -0.001081 0.004319 0.007142 0.005600 0.009684 -0.002211 -0.003666 -0.004248 -0.000217 -0.006629 -0.007254 -0.002267 0.009308 -0.003668 -0.002353 -0.005578 -0.000910 0.011111 0.006984 0.002763 -0.008553 0.010141 -0.001165 0.009207 0.001192 0.001826 0.002157 -0.006177 0.002349 -0.004536 -0.005071 0.006940 -0.007099 -0.000720 -0.002200 -0.002887 0.001975 0.000690 -0.000826 -0.008471 0.002342 -0.009589 0.009955 0.003961 -0.001704 0.008338 0.009165 0.007824 -0.004277 -0.003556 0.004898 0.002413 0.010612 0.004904 -0.002554 -0.006556 0.003747 0.006155 0.007392 0.007640 -0.000254 -0.006209 0.008718 -0.008704 -0.001059 0.005720 -0.007431 -0.001416 -0.004692 -0.000062 0.003477 0.006787 -0.009381 -0.002649 -0.003246 -0.002610 -0.002047 -0.003770 0.002158 -0.007555 0.010113 0.004560 0.008053 -0.002402 -0.005189 0.004248 -0.004783 0.004837 -0.011513 0.000054 -0.004366 0.005346 -0.001511 -0.008079 -0.001210 -0.008745 -0.006033 0.009176 0.005850 0.006242 -0.006862 0.005011 -0.002359 -0.003846 0.002314 -0.009984 0.004657 0.010227 -0.001842 -0.002859 0.004675 0.007605 0.000898 0.010470 0.009632 0.005955 0.000429 -0.004239 0.005784 0.001477 0.006366 -0.006031 0.002356 -0.007514 -0.000982 0.000963 -0.004319 -0.010794 0.004719 -0.001816 -0.012877 0.006508 0.003091 0.001507 0.004710 -0.001538 -0.001283 0.013763 -0.010020 -0.004196 -0.013095 0.000847 0.000332 -0.003483 0.011207 -0.012521 0.001866 0.009585 -0.003201 -0.003180 -0.012048 0.001603 0.005198 0.009904 0.008375 0.011253 -0.004543 -0.009133 0.003482 0.004958 0.002043 0.000884 0.004186 -0.002883 0.000044 -0.001595 -0.011686 -0.003275 -0.001587 -0.007635 0.008156 -0.006338 0.008466 -0.001621 0.001173 0.003004 -0.009455 0.004841 -0.003477 0.001175 0.008167 -0.008407 -0.000306 -0.005067 -0.006904 0.008660 0.005463 0.002607 -0.001436 0.002213 0.004065 -0.004506 -0.007988 -0.007165 0.006336 -0.002028 -0.003448 0.008518 -0.000706 -0.009162 0.015785 -0.000180 0.004969 0.012057 0.008191 -0.003693 0.008475 0.004608 -0.005420 0.003763 -0.009849 -0.001278 0.002136 0.003823 -0.004654 0.005794 -0.004331 0.001161 -0.000026 -0.007808 -0.008174 -0.004738 0.013315 -0.003412 0.011882 0.000469 0.004876 -0.013375 0.012853 0.001495 -0.000578 -0.002944 0.001614 -0.000365 -0.000071 -0.002334 0.001876 0.000000 -0.003256 0.003106 0.007155 0.001856 0.000925 0.008399 -0.003298 -0.001751 -0.000020 0.007352 -0.001067 -0.006090 -0.004108 0.010189 0.003855 0.002676 -0.000799 0.001939 0.003135 -0.000527 -0.005183 -0.001977 0.004329 -0.000547 -0.004156 0.008329 -0.001926 -0.002094 -0.012179 0.003154 -0.005674 0.005996 -0.001752 -0.004991 -0.010572 -0.003440 0.009366 -0.006789 0.004783 -0.007714 0.003999 -0.003518 -0.000676 0.004100 0.005543 0.001028 0.010353 0.002999 0.002321 -0.004121 -0.006979 -0.004057 -0.009163 0.006355 0.008242 0.005054 -0.011023 -0.003660 -0.008331 0.002612 0.006936 0.011040 0.002369 -0.000519 -0.001188 -0.002042 -0.004047 0.007139 0.001559 -0.000479 -0.001511 -0.001547 -0.002960 -0.001699 -0.008570 0.003234 -0.007828 -0.004297 -0.002394 0.001594 -0.001660 0.001189 -0.009376 -0.004804 0.009004 0.011655 -0.002021 -0.003042 -0.009291 -0.004354 0.001726 -0.001958 0.005647 0.005082 -0.004331 -0.003481 0.002365 0.004566 -0.009885 0.004848 -0.000824 -0.002040 0.007261 0.006472 -0.008118 -0.001094 0.003879 0.000523 0.009463 -0.000066 -0.012818 -0.003084 -0.008433 -0.008793 0.008511 0.000460 0.016312 -0.001790 0.014871 0.005886 -0.004616 -0.014260 0.004189 0.011826 -0.000040 0.004709 -0.003904 0.013053 0.015536 0.000636 0.006899 -0.006110 0.000160 -0.005125 0.005755 0.011567 0.000504 -0.003113 -0.011788 -0.005100 0.002655 -0.004771 -0.001730 -0.009168 -0.003397 -0.003749 0.005851 -0.011728 -0.003047 0.001633 0.011407 0.011489 0.002656 -0.000359 -0.006539 0.000764 0.004808 -0.000303 -0.002006 0.009611 0.006575 -0.002095 0.006038 0.012352 0.002690 0.007301 0.007282 -0.005224 0.001207 -0.009086 0.002931 0.005144 -0.001708 -0.012226 -0.015897 0.004754 0.000510 0.010191 0.001314 -0.000171 -0.000139 -0.001750 -0.002209 -0.001218 -0.000591 0.010278 0.000831 0.001640 -0.009035 -0.011173 0.003222 0.002725 -0.007805 0.009467 -0.002059 -0.004494 -0.004222 -0.006172 0.004893 0.005283 -0.001183 0.004798 0.000728 0.005413 0.001649 0.000093 -0.011519 0.010757 -0.001380 -0.007870 0.009289 -0.009276 0.003215 -0.001609 -0.000053 -0.017414 0.003399 -0.001430 0.007205 0.000480 -0.012100 -0.004773 -0.003745 0.005098 -0.016829 -0.008901 -0.004246 -0.009007 -0.003784 -0.004759 0.002473 0.000885 -0.001578 -0.002021 0.003177 0.006814 0.005814 -0.008129 0.005770 -0.005783 0.005672 -0.007245 0.004863 0.000596 0.006043 -0.008665 0.000354 0.003295 0.005709 0.011607 0.001278 -0.017525 0.005709 0.001586 0.000541 0.005924 -0.001035 0.008848 -0.000898 -0.001443 -0.008975 -0.001652 -0.002640 0.002576 -0.001441 -0.001740 0.004699 0.002595 -0.007356 -0.000168 -0.005636 -0.000466 0.008009 0.002335 -0.005385 0.003058 -0.003121 0.002250 -0.006109 -0.005294 0.008321 -0.004846 0.006873 -0.011922 -0.005958 -0.001056 -0.010117 -0.009514 -0.000502 -0.004448 0.000886 -0.004184 0.001726 0.006138 -0.002383 -0.008777 0.004917 0.011164 -0.004297 0.002257 -0.003193 0.004828 0.006737 0.004551 -0.008067 -0.001194 -0.001807 -0.003011 0.008653 0.001179 0.010549 -0.017402 -0.006754 -0.001989 0.003072 0.010684 0.000712 0.002805 -0.001770 -0.001729 -0.002624 0.007288 0.003045 -0.008134 0.009823 0.002022 0.001409 0.010870 0.000497 -0.002763 0.004195 -0.008058 0.008598 -0.010752 -0.009189 0.002749 0.006899 0.006292 -0.000822 0.001696 0.000119 -0.005779 -0.002346 -0.006636 0.003694 0.003971 -0.011518 0.008061 -0.001067 -0.005141 -0.003907 -0.006810 -0.004366 -0.004916 -0.000105 -0.004973 0.000457 -0.003521 -0.011133 -0.010755 0.013139 0.002717 0.004122 0.008437 -0.000963 -0.007553 0.012821 0.009943 -0.008617 -0.000111 -0.010982 -0.002044 0.000223 0.017228 -0.005050 -0.000707 0.006994 -0.007239 0.006414 0.002092 0.000219 0.003118 0.002841 -0.000926 -0.001440 -0.000143 -0.001044 -0.003835 0.001608 -0.002765 0.005651 -0.004139 -0.000991 0.001844 -0.006389 0.012959 0.005913 -0.005300 0.015275 0.005206 -0.005440 0.012100 -0.009929 0.003607 0.001342 0.010544 -0.010473 0.002107 0.000235 -0.012308 0.002934 -0.001799 -0.003687 0.005087 0.004103 -0.000180 -0.003178 0.001441 -0.001621 -0.010537 -0.006247 0.005492 0.001271 -0.019524 -0.014466 0.003246 0.008963 0.005522 -0.004953 -0.008799 0.008934 -0.002693 0.003646 0.005270 0.001894 0.000719 0.003074 -0.011695 -0.005244 -0.004213 -0.010824 0.009731 0.006116 0.005789 -0.004216 -0.005836 -0.000192 -0.005260 -0.003690 0.000156 -0.005666 -0.008322 0.010358 -0.011121 0.002607 -0.001586 0.006560 0.012868 -0.004090 -0.000116 0.000185 -0.007962 -0.000856 -0.006712 -0.002612 -0.000665 -0.001164 0.004309 0.005660 0.009318 0.000607 0.011764 0.011541 -0.005085 -0.011765 -0.005383 -0.009440 0.000538 0.005016 0.004278 0.006289 -0.003896 -0.004152 -0.012379 0.001180 0.011402 -0.005771 -0.015441 -0.009842 -0.001250 -0.001215 -0.004896 0.000334 -0.006921 0.012849 0.006970 0.001599 -0.011995 0.004887 0.007692 0.008000 -0.003392 0.002126 -0.001968 0.005228 -0.003496 -0.015785 0.002995 0.007922 0.003295 -0.001291 -0.001597 0.011231 -0.001594 0.000036 0.008618 -0.008853 0.008460 0.005604 -0.013232 0.000093 -0.002640 0.000956 -0.003536 0.009904 -0.007889 0.002075 0.002752 0.004345 -0.007076 -0.002849 -0.016837 0.001672 0.006527 0.005472 -0.013197 0.002123 -0.001370 -0.001677 -0.012643 0.002475 -0.005800 -0.007414 -0.002147 -0.007273 -0.005252 0.015394 0.004926 0.007179 -0.000675 -0.003222 0.004690 -0.015663 -0.000768 0.007803 0.008692 0.000530 0.004002 -0.008667 -0.003674 -0.002156 0.004113 0.006294 -0.012184 -0.004849 -0.005516 -0.013741 -0.003867 -0.001072 -0.004539 -0.000870 -0.001478 0.004279 0.003053 0.001082 0.010318 -0.014303 0.008028 -0.010621 0.000072 -0.013697 0.002331 -0.007537 -0.010511 -0.005459 0.010752 -0.009141 0.004355 0.004425 -0.002906 -0.001574 -0.005239 -0.001612 -0.007175 -0.002389 -0.003692 -0.002221 0.001083 -0.004376 -0.008437 0.003114 0.004144 0.009857 0.001900 -0.003805 -0.000442 -0.005949 -0.009229 0.012172 0.002414 0.003436 0.003847 -0.000763 0.007843 -0.001605 -0.000827 0.004568 -0.000374 0.001017 -0.001145 -0.005038 -0.012210 0.007325 -0.009803 -0.002237 0.001411 0.002031 0.005571 0.010546 -0.004049 -0.004695 0.006491 0.000860 -0.011356 0.007155 0.009572 -0.000503 0.001913 -0.011918 0.003547 0.006256 0.000222 0.003048 -0.001949 -0.003002 0.008967 0.005998 -0.003687 -0.000297 0.005382 0.007648 0.006731 -0.004662 -0.001826 -0.000189 0.003951 -0.002405 -0.010672 -0.013831 0.003231 0.004326 0.004407 0.009100 0.007484 0.001125 -0.002951 -0.005783 0.003278 0.010798 0.003269 0.008660 -0.004953 -0.005118 -0.010658 -0.004930 0.007919 0.009081 -0.003349 0.000216 0.000375 -0.005425 0.000287 -0.005578 0.006368 0.008616 0.005851 0.005618 0.005720 0.002728 -0.004897 -0.010992 0.004499 -0.008462 -0.006201 -0.000247 -0.002793 0.003352 0.003362 0.007171 0.008821 0.008526 0.001311 0.002166 0.001642 -0.002538 0.005102 0.002718 0.000758 -0.013721 0.002479 0.007180 -0.005548 -0.002078 0.005781 0.001126 0.001112 0.000334 0.013641 0.005787 0.007977 0.013038 0.005398 0.010005 -0.006439 -0.000503 0.002981 -0.010250 -0.000287 -0.008525 -0.014108 -0.001175 -0.003990 0.008964 -0.000066 -0.005535 -0.000799 -0.016285 -0.004771 0.001586 -0.009103 -0.002119 0.009657 -0.001623 0.004636 0.001381 0.000411 0.013890 0.008510 -0.007909 -0.000595 0.007080 -0.006523 0.003155 -0.006781 -0.005413 0.001162 -0.008828 0.004759 -0.011760 0.001745 0.005501 -0.005372 0.005993 -0.003452 -0.004793 0.001283 0.002347 -0.008630 0.004214 -0.002295 0.004300 0.003227 0.006166 -0.000150 0.004959 -0.005317 -0.000871 -0.005262 0.000060 -0.002825 -0.005040 -0.004499 0.004507 0.003960 0.000574 0.000991 -0.008711 -0.007438 0.005479 -0.002858 0.006148 0.000908 -0.011100 -0.001475 0.002084 -0.004421 -0.008594 -0.003874 -0.001295 -0.007612 -0.007066 -0.001740 0.008361 0.001363 -0.001335 -0.005968 -0.002863 0.006118 0.008533 0.002802 0.004921 0.006456 0.000724 -0.000172 0.009010 -0.006497 -0.000687 -0.004436 -0.004276 0.002617 0.000992 0.011609 -0.009802 -0.007260 0.001408 -0.005372 0.002886 -0.005290 -0.002707 -0.002501 0.009871 -0.005536 -0.003884 -0.003408 -0.002279 0.009634 -0.006615 0.001245 0.001221 0.009104 0.005168 0.003838 -0.008703 -0.006769 0.008643 0.004467 0.003163 -0.002836 -0.005894 -0.006632 -0.005084 -0.005675 0.005542 -0.009612 0.001533 -0.009522 -0.010366 0.002663 -0.000650 -0.002952 -0.000070 0.007444 0.005917 0.006348 0.009082 0.006618 -0.017746 0.011707 0.001912 0.015308 0.000554 0.007961 0.005879 -0.011405 -0.004558 -0.006086 0.002196 0.007130 0.010473 -0.003097 -0.003007 0.002515 -0.005282 -0.008249 0.004653 0.009427 -0.000147 -0.013257 -0.014385 -0.000163 0.008133 0.006267 -0.005013 -0.002732 -0.004363 0.005773 -0.001164 0.004535 -0.009044 -0.001268 -0.003429 -0.012571 0.000923 0.008375 -0.001497 -0.002387 0.008260 0.007340 0.010354 0.002356 0.000185 -0.006059 0.007238 0.004758 0.008674 0.009621 -0.000517 -0.000352 -0.009944 -0.007921 -0.004654 -0.007078 0.000281 0.005990 0.000817 0.000780 -0.000538 0.002050 0.002580 0.003456 0.004010 -0.003214 0.005395 -0.004601 0.004453 -0.015539 -0.000731 0.006612 0.007677 0.003832 0.004270 -0.004669 -0.014797 0.013235 -0.002414 -0.006326 0.005207 -0.002714 0.004045 0.008098 -0.006949 -0.003189 0.001334 0.000283 0.006695 0.005773 -0.011407 0.006753 0.003520 0.004603 -0.012764 0.000075 -0.006659 0.000480 -0.002535 0.000238 0.012272 0.001408 0.001101 0.007814 -0.014558 -0.004924 -0.000147 -0.003949 -0.015201 0.002355 -0.004803 -0.004203 0.019069 -0.002064 -0.011378 0.009986 -0.011016 0.006233 0.000193 0.008333 -0.009190 0.002128 -0.000710 0.007259 -0.012292 0.004639 0.000950 -0.006102 0.014508 0.000012 -0.011156 -0.000809 0.006066 -0.001613 0.000262 -0.002988 0.005521 0.004845 -0.006214 0.006523 0.011348 0.001361 -0.002327 -0.012613 -0.009629 0.008641 -0.003274 0.000399 -0.004556 0.001495 0.003051 0.009226 -0.003708 -0.002448 0.001723 0.000884 -0.006485 -0.006020 -0.003008 0.002525 0.002283 0.009189 -0.008729 -0.003520 0.012128 0.007942 -0.007802 -0.011910 -0.002414 -0.002013 -0.011760 0.001470 0.007962 -0.008208 -0.006649 -0.002022 -0.005673 -0.002507 0.000843 0.002486 -0.006403 0.003230 -0.002100 0.002034 0.006841 -0.004894 0.009693 0.001416 0.009102 0.001843 -0.005496 -0.004187 -0.008412 0.003264 0.012886 -0.001301 0.003278 0.004612 0.006384 0.000948 -0.002251 0.004039 0.003122 -0.001018 0.006388 0.001564 -0.004132 -0.005095 0.004835 -0.001064 0.006675 0.005430 0.006955 -0.001765 -0.002893 -0.004233 0.012395 0.000122 -0.000662 0.002556 0.000441 0.001874 -0.001951 0.005831 0.000014 -0.004699 0.010455 0.004929 -0.015468 0.009723 -0.001355 -0.019834 -0.007802 -0.009307 -0.011422 0.001483 -0.002065 -0.003830 0.007263 -0.000356 0.005066 -0.004139 -0.006387 -0.005640 -0.002356 0.001071 0.004573 0.006938 -0.009497 -0.008314 -0.000679 -0.006334 0.001332 -0.000264 0.006078 -0.004773 0.010450 0.011710 0.009340 0.002435 -0.004740 0.010478 0.004831 -0.002935 0.002445 0.004105 0.005866 0.002152 0.001777 0.013267 -0.003772 -0.000859 0.003815 0.002174 -0.000520 -0.003587 0.005438 -0.013192 -0.008846 -0.011592 0.002940 0.000545 -0.018628 -0.010290 0.001635 0.001203 0.010249 -0.004335 0.004642 -0.007499 -0.006385 0.002026 0.014684 0.000839 0.003849 -0.010574 0.001482 -0.002552 -0.012830 -0.011687 -0.002760 -0.001960 0.001345 -0.000015 -0.004911 -0.006611 -0.003484 0.002433 0.014153 -0.000692 -0.003624 -0.000967 0.005475 -0.000438 -0.004068 0.003571 0.002384 0.000322 0.006114 -0.003262 -0.000013 0.003095 0.003796 -0.003998 0.003026 -0.002200 -0.009138 -0.004720 0.000174 0.000294 -0.000925 -0.002792 0.009964 0.008431 0.000624 0.009856 0.001753 -0.006467 -0.000573 0.000689 -0.000850 0.001123 -0.001337 -0.003830 -0.013432 0.005124 -0.008181 -0.009009 -0.002451 0.000559 -0.004006 -0.010859 -0.002157 0.000950 0.006481 0.000935 0.000960 -0.010546 0.001208 -0.000520 -0.016795 0.007217 0.005831 0.003629 0.003637 -0.001324 0.003637 0.003629 0.005831 0.007218 -0.016796 -0.000520 0.001208 -0.010546 0.000960 0.000935 0.006481 0.000950 -0.002157 -0.010859 -0.004007 0.000559 -0.002451 -0.009009 -0.008181 0.005124 -0.013432 -0.003830 -0.001337 0.001123 -0.000850 0.000690 -0.000573 -0.006467 0.001753 0.009856 0.000624 0.008431 0.009964 -0.002792 -0.000925 0.000293 0.000174 -0.004720 -0.009138 -0.002200 0.003026 -0.003998 0.003795 0.003095 -0.000013 -0.003262 0.006114 0.000322 0.002384 0.003571 -0.004068 -0.000438 0.005475 -0.000967 -0.003625 -0.000692 0.014153 0.002433 -0.003484 -0.006611 -0.004911 -0.000015 0.001345 -0.001960 -0.002760 -0.011687 -0.012830 -0.002552 0.001482 -0.010574 0.003849 0.000839 0.014685 0.002026 -0.006385 -0.007499 0.004642 -0.004335 0.010249 0.001202 0.001635 -0.010290 -0.018628 0.000545 0.002940 -0.011592 -0.008846 -0.013192 0.005438 -0.003587 -0.000520 0.002174 0.003815 -0.000859 -0.003772 0.013268 0.001777 0.002153 0.005866 0.004106 0.002445 -0.002935 0.004832 0.010478 -0.004740 0.002435 0.009341 0.011710 0.010450 -0.004773 0.006078 -0.000263 0.001332 -0.006334 -0.000679 -0.008314 -0.009498 0.006938 0.004574 0.001071 -0.002356 -0.005640 -0.006387 -0.004139 0.005066 -0.000356 0.007264 -0.003830 -0.002065 0.001483 -0.011422 -0.009307 -0.007802 -0.019835 -0.001355 0.009723 -0.015469 0.004929 0.010455 -0.004700 0.000014 0.005831 -0.001951 0.001874 0.000441 0.002556 -0.000662 0.000122 0.012395 -0.004233 -0.002893 -0.001766 0.006955 0.005430 0.006675 -0.001064 0.004835 -0.005095 -0.004132 0.001564 0.006388 -0.001018 0.003122 0.004039 -0.002251 0.000948 0.006384 0.004613 0.003279 -0.001301 0.012887 0.003264 -0.008412 -0.004187 -0.005497 0.001843 0.009102 0.001416 0.009694 -0.004894 0.006841 0.002034 -0.002100 0.003230 -0.006404 0.002486 0.000844 -0.002507 -0.005673 -0.002022 -0.006649 -0.008208 0.007963 0.001470 -0.011760 -0.002013 -0.002414 -0.011910 -0.007803 0.007942 0.012128 -0.003520 -0.008729 0.009189 0.002283 0.002525 -0.003008 -0.006020 -0.006485 0.000884 0.001723 -0.002448 -0.003708 0.009226 0.003051 0.001495 -0.004556 0.000399 -0.003274 0.008641 -0.009629 -0.012614 -0.002327 0.001361 0.011348 0.006523 -0.006214 0.004845 0.005521 -0.002988 0.000262 -0.001613 0.006066 -0.000809 -0.011156 0.000012 0.014508 -0.006103 0.000950 0.004640 -0.012292 0.007259 -0.000710 0.002128 -0.009190 0.008333 0.000193 0.006233 -0.011016 0.009986 -0.011378 -0.002064 0.019069 -0.004203 -0.004803 0.002355 -0.015201 -0.003949 -0.000147 -0.004924 -0.014558 0.007814 0.001101 0.001408 0.012272 0.000238 -0.002535 0.000480 -0.006659 0.000075 -0.012764 0.004603 0.003520 0.006753 -0.011407 0.005773 0.006695 0.000283 0.001334 -0.003189 -0.006949 0.008099 0.004045 -0.002714 0.005207 -0.006326 -0.002414 0.013235 -0.014797 -0.004669 0.004270 0.003832 0.007677 0.006612 -0.000731 -0.015539 0.004453 -0.004601 0.005395 -0.003214 0.004010 0.003456 0.002580 0.002050 -0.000538 0.000780 0.000818 0.005990 0.000281 -0.007078 -0.004654 -0.007921 -0.009944 -0.000352 -0.000517 0.009621 0.008674 0.004759 0.007238 -0.006059 0.000185 0.002356 0.010354 0.007340 0.008260 -0.002387 -0.001497 0.008375 0.000923 -0.012571 -0.003429 -0.001268 -0.009044 0.004535 -0.001164 0.005773 -0.004363 -0.002732 -0.005013 0.006267 0.008133 -0.000163 -0.014385 -0.013257 -0.000147 0.009427 0.004653 -0.008250 -0.005282 0.002515 -0.003007 -0.003097 0.010473 0.007130 0.002196 -0.006086 -0.004558 -0.011405 0.005879 0.007961 0.000554 0.015308 0.001912 0.011707 -0.017746 0.006618 0.009082 0.006348 0.005918 0.007444 -0.000070 -0.002952 -0.000650 0.002663 -0.010366 -0.009522 0.001533 -0.009613 0.005542 -0.005675 -0.005084 -0.006632 -0.005895 -0.002836 0.003163 0.004467 0.008643 -0.006769 -0.008704 0.003838 0.005168 0.009104 0.001221 0.001245 -0.006615 0.009634 -0.002279 -0.003408 -0.003884 -0.005536 0.009871 -0.002501 -0.002707 -0.005290 0.002886 -0.005372 0.001408 -0.007260 -0.009802 0.011609 0.000992 0.002617 -0.004276 -0.004436 -0.000687 -0.006497 0.009010 -0.000172 0.000724 0.006456 0.004921 0.002802 0.008533 0.006118 -0.002864 -0.005968 -0.001335 0.001363 0.008361 -0.001740 -0.007066 -0.007612 -0.001295 -0.003874 -0.008594 -0.004421 0.002084 -0.001475 -0.011101 0.000908 0.006148 -0.002858 0.005479 -0.007438 -0.008711 0.000991 0.000574 0.003960 0.004507 -0.004499 -0.005041 -0.002825 0.000060 -0.005262 -0.000871 -0.005317 0.004959 -0.000150 0.006166 0.003227 0.004300 -0.002295 0.004214 -0.008630 0.002347 0.001283 -0.004793 -0.003452 0.005993 -0.005372 0.005501 0.001745 -0.011760 0.004759 -0.008828 0.001162 -0.005413 -0.006781 0.003155 -0.006523 0.007080 -0.000595 -0.007909 0.008510 0.013890 0.000411 0.001381 0.004636 -0.001623 0.009657 -0.002119 -0.009103 0.001586 -0.004771 -0.016285 -0.000799 -0.005535 -0.000066 0.008964 -0.003990 -0.001175 -0.014108 -0.008525 -0.000287 -0.010250 0.002981 -0.000503 -0.006440 0.010005 0.005398 0.013038 0.007977 0.005787 0.013641 0.000334 0.001112 0.001126 0.005781 -0.002078 -0.005548 0.007180 0.002479 -0.013721 0.000758 0.002718 0.005102 -0.002538 0.001642 0.002166 0.001311 0.008526 0.008821 0.007171 0.003362 0.003352 -0.002793 -0.000247 -0.006201 -0.008462 0.004499 -0.010992 -0.004897 0.002728 0.005720 0.005618 0.005851 0.008616 0.006368 -0.005578 0.000287 -0.005425 0.000375 0.000216 -0.003349 0.009081 0.007919 -0.004930 -0.010658 -0.005118 -0.004953 0.008660 0.003269 0.010798 0.003278 -0.005783 -0.002951 0.001126 0.007484 0.009100 0.004407 0.004326 0.003231 -0.013831 -0.010672 -0.002405 0.003951 -0.000189 -0.001826 -0.004662 0.006731 0.007648 0.005382 -0.000297 -0.003687 0.005998 0.008968 -0.003002 -0.001948 0.003048 0.000222 0.006255 0.003547 -0.011918 0.001913 -0.000503 0.009572 0.007155 -0.011356 0.000860 0.006491 -0.004696 -0.004049 0.010546 0.005572 0.002031 0.001411 -0.002237 -0.009803 0.007325 -0.012211 -0.005038 -0.001145 0.001017 -0.000374 0.004568 -0.000827 -0.001605 0.007843 -0.000763 0.003847 0.003436 0.002414 0.012172 -0.009230 -0.005950 -0.000442 -0.003805 0.001900 0.009857 0.004144 0.003114 -0.008437 -0.004376 0.001083 -0.002221 -0.003692 -0.002389 -0.007175 -0.001612 -0.005239 -0.001574 -0.002906 0.004425 0.004355 -0.009141 0.010752 -0.005459 -0.010511 -0.007537 0.002331 -0.013697 0.000072 -0.010621 0.008028 -0.014303 0.010318 0.001082 0.003053 0.004279 -0.001478 -0.000870 -0.004539 -0.001072 -0.003867 -0.013741 -0.005516 -0.004849 -0.012184 0.006294 0.004113 -0.002156 -0.003674 -0.008667 0.004002 0.000530 0.008692 0.007803 -0.000768 -0.015663 0.004690 -0.003222 -0.000675 0.007179 0.004926 0.015394 -0.005252 -0.007273 -0.002147 -0.007414 -0.005800 0.002475 -0.012643 -0.001677 -0.001370 0.002123 -0.013197 0.005472 0.006527 0.001672 -0.016837 -0.002849 -0.007076 0.004345 0.002752 0.002075 -0.007889 0.009904 -0.003536 0.000956 -0.002640 0.000093 -0.013232 0.005604 0.008460 -0.008853 0.008618 0.000036 -0.001594 0.011232 -0.001597 -0.001291 0.003295 0.007922 0.002995 -0.015786 -0.003497 0.005228 -0.001968 0.002126 -0.003392 0.008000 0.007692 0.004887 -0.011995 0.001599 0.006970 0.012849 -0.006921 0.000334 -0.004896 -0.001215 -0.001250 -0.009842 -0.015441 -0.005771 0.011402 0.001180 -0.012379 -0.004152 -0.003896 0.006289 0.004278 0.005016 0.000538 -0.009440 -0.005383 -0.011765 -0.005085 0.011541 0.011764 0.000607 0.009318 0.005660 0.004309 -0.001164 -0.000665 -0.002612 -0.006712 -0.000856 -0.007962 0.000185 -0.000116 -0.004091 0.012868 0.006561 -0.001586 0.002607 -0.011121 0.010358 -0.008322 -0.005666 0.000156 -0.003690 -0.005260 -0.000192 -0.005836 -0.004216 0.005789 0.006116 0.009731 -0.010824 -0.004213 -0.005244 -0.011695 0.003074 0.000719 0.001894 0.005270 0.003646 -0.002693 0.008934 -0.008799 -0.004953 0.005522 0.008963 0.003246 -0.014466 -0.019524 0.001271 0.005492 -0.006247 -0.010537 -0.001621 0.001441 -0.003178 -0.000180 0.004103 0.005087 -0.003687 -0.001799 0.002934 -0.012308 0.000235 0.002107 -0.010473 0.010544 0.001342 0.003607 -0.009929 0.012100 -0.005440 0.005206 0.015275 -0.005300 0.005913 0.012959 -0.006389 0.001844 -0.000991 -0.004139 0.005651 -0.002765 0.001608 -0.003835 -0.001044 -0.000143 -0.001440 -0.000926 0.002841 0.003118 0.000219 0.002092 0.006414 -0.007239 0.006994 -0.000707 -0.005050 0.017228 0.000223 -0.002044 -0.010982 -0.000111 -0.008617 0.009943 0.012821 -0.007553 -0.000963 0.008437 0.004122 0.002717 0.013139 -0.010755 -0.011133 -0.003521 0.000457 -0.004973 -0.000105 -0.004916 -0.004366 -0.006810 -0.003907 -0.005141 -0.001067 0.008061 -0.011518 0.003971 0.003694 -0.006636 -0.002346 -0.005779 0.000119 0.001696 -0.000822 0.006292 0.006899 0.002749 -0.009189 -0.010752 0.008598 -0.008058 0.004195 -0.002763 0.000497 0.010871 0.001409 0.002022 0.009823 -0.008134 0.003045 0.007288 -0.002624 -0.001729 -0.001770 0.002805 0.000712 0.010684 0.003072 -0.001989 -0.006754 -0.017402 0.010549 0.001179 0.008653 -0.003011 -0.001807 -0.001194 -0.008067 0.004551 0.006737 0.004828 -0.003193 0.002257 -0.004297 0.011164 0.004917 -0.008777 -0.002383 0.006138 0.001726 -0.004184 0.000886 -0.004448 -0.000502 -0.009514 -0.010117 -0.001056 -0.005958 -0.011922 0.006873 -0.004846 0.008321 -0.005294 -0.006109 0.002250 -0.003121 0.003058 -0.005385 0.002335 0.008009 -0.000466 -0.005636 -0.000168 -0.007356 0.002595 0.004699 -0.001740 -0.001441 0.002576 -0.002640 -0.001652 -0.008975 -0.001443 -0.000898 0.008848 -0.001035 0.005924 0.000541 0.001586 0.005709 -0.017525 0.001278 0.011607 0.005709 0.003295 0.000354 -0.008665 0.006043 0.000596 0.004863 -0.007244 0.005672 -0.005783 0.005770 -0.008129 0.005814 0.006814 0.003177 -0.002021 -0.001578 0.000885 0.002473 -0.004759 -0.003784 -0.009007 -0.004246 -0.008901 -0.016829 0.005098 -0.003745 -0.004773 -0.012100 0.000480 0.007205 -0.001430 0.003399 -0.017414 -0.000053 -0.001609 0.003215 -0.009276 0.009289 -0.007870 -0.001380 0.010757 -0.011519 0.000093 0.001649 0.005413 0.000728 0.004798 -0.001183 0.005283 0.004893 -0.006172 -0.004222 -0.004494 -0.002059 0.009467 -0.007805 0.002725 0.003222 -0.011173 -0.009035 0.001640 0.000831 0.010278 -0.000591 -0.001218 -0.002209 -0.001750 -0.000139 -0.000171 0.001314 0.010191 0.000510 0.004754 -0.015897 -0.012226 -0.001708 0.005144 0.002931 -0.009086 0.001207 -0.005224 0.007282 0.007301 0.002690 0.012352 0.006038 -0.002095 0.006575 0.009611 -0.002006 -0.000303 0.004808 0.000764 -0.006539 -0.000359 0.002655 0.011489 0.011407 0.001633 -0.003047 -0.011728 0.005851 -0.003749 -0.003397 -0.009168 -0.001730 -0.004771 0.002655 -0.005100 -0.011788 -0.003113 0.000504 0.011567 0.005755 -0.005125 0.000160 -0.006110 0.006899 0.000636 0.015536 0.013053 -0.003904 0.004709 -0.000040 0.011826 0.004189 -0.014260 -0.004616 0.005886 0.014871 -0.001790 0.016312 0.000460 0.008511 -0.008793 -0.008433 -0.003084 -0.012818 -0.000066 0.009463 0.000523 0.003879 -0.001094 -0.008118 0.006472 0.007261 -0.002040 -0.000824 0.004848 -0.009885 0.004566 0.002365 -0.003481 -0.004331 0.005082 0.005647 -0.001958 0.001726 -0.004354 -0.009291 -0.003042 -0.002021 0.011655 0.009004 -0.004804 -0.009376 0.001189 -0.001660 0.001594 -0.002394 -0.004297 -0.007828 0.003234 -0.008570 -0.001699 -0.002960 -0.001547 -0.001511 -0.000479 0.001559 0.007139 -0.004047 -0.002042 -0.001188 -0.000519 0.002369 0.011040 0.006936 0.002612 -0.008331 -0.003660 -0.011023 0.005054 0.008242 0.006355 -0.009163 -0.004057 -0.006979 -0.004121 0.002321 0.002999 0.010353 0.001028 0.005543 0.004100 -0.000676 -0.003518 0.003999 -0.007714 0.004783 -0.006789 0.009366 -0.003440 -0.010572 -0.004991 -0.001752 0.005996 -0.005674 0.003154 -0.012179 -0.002094 -0.001926 0.008329 -0.004156 -0.000547 0.004329 -0.001977 -0.005183 -0.000527 0.003135 0.001939 -0.000799 0.002676 0.003855 0.010189 -0.004109 -0.006090 -0.001067 0.007352 -0.000020 -0.001751 -0.003298 0.008399 0.000925 0.001856 0.007155 0.003106 -0.003256 0.000000 0.001876 -0.002334 -0.000071 -0.000365 0.001614 -0.002944 -0.000578 0.001495 0.012853 -0.013375 0.004876 0.000469 0.011881 -0.003412 0.013315 -0.004738 -0.008174 -0.007808 -0.000026 0.001161 -0.004331 0.005794 -0.004654 0.003823 0.002136 -0.001278 -0.009849 0.003763 -0.005420 0.004608 0.008475 -0.003692 0.008191 0.012057 0.004969 -0.000180 0.015785 -0.009162 -0.000706 0.008518 -0.003448 -0.002028 0.006336 -0.007165 -0.007988 -0.004506 0.004065 0.002213 -0.001436 0.002607 0.005463 0.008660 -0.006904 -0.005067 -0.000306 -0.008407 0.008167 0.001175 -0.003477 0.004841 -0.009455 0.003004 0.001172 -0.001621 0.008466 -0.006338 0.008156 -0.007635 -0.001587 -0.003275 -0.011686 -0.001595 0.000044 -0.002883 0.004186 0.000884 0.002043 0.004958 0.003482 -0.009133 -0.004543 0.011253 0.008375 0.009904 0.005198 0.001603 -0.012048 -0.003180 -0.003201 0.009585 0.001866 -0.012521 0.011207 -0.003483 0.000332 0.000847 -0.013095 -0.004196 -0.010020 0.013763 -0.001283 -0.001538 0.004710 0.001507 0.003091 0.006508 -0.012877 -0.001816 0.004719 -0.010794 -0.004319 0.000963 -0.000982 -0.007514 0.002356 -0.006031 0.006366 0.001477 0.005784 -0.004239 0.000429 0.005955 0.009632 0.010470 0.000898 0.007605 0.004675 -0.002859 -0.001842 0.010227 0.004657 -0.009984 0.002314 -0.003846 -0.002359 0.005011 -0.006862 0.006242 0.005850 0.009176 -0.006033 -0.008745 -0.001210 -0.008079 -0.001511 0.005346 -0.004366 0.000054 -0.011513 0.004837 -0.004783 0.004248 -0.005189 -0.002402 0.008053 0.004560 0.010113 -0.007555 0.002158 -0.003770 -0.002047 -0.002610 -0.003246 -0.002649 -0.009381 0.006787 0.003477 -0.000062 -0.004692 -0.001416 -0.007431 0.005720 -0.001059 -0.008704 0.008718 -0.006209 -0.000254 0.007640 0.007392 0.006155 0.003747 -0.006556 -0.002554 0.004904 0.010612 0.002413 0.004898 -0.003556 -0.004277 0.007824 0.009165 0.008338 -0.001704 0.003961 0.009955 -0.009589 0.002342 -0.008471 -0.000826 0.000690 0.001975 -0.002887 -0.002200 -0.000720 -0.007099 0.006940 -0.005071 -0.004536 0.002349 -0.006177 0.002157 0.001826 0.001192 0.009207 -0.001165 0.010141 -0.008553 0.002763 0.006984 0.011111 -0.000910 -0.005578 -0.002353 -0.003668 0.009308 -0.002267 -0.007254 -0.006629 -0.000217 -0.004248 -0.003666 -0.002211 0.009684 0.005600 0.007142 0.004319 -0.001081 -0.004790 0.002539 0.001726 -0.002638 -0.000293 -0.007872 -0.006096 0.004082 0.005413 -0.001584 -0.007385 -0.008414 -0.004702 -0.000282 -0.000486 0.006893 0.000801 0.004399 0.010693 -0.003219 -0.011180 0.001938 -0.004790 0.006887 -0.006069 -0.006604 -0.004769 -0.005018 -0.002247 -0.003466 -0.002449 -0.000386 0.000818 0.006841 0.015275 -0.007429 0.000172 -0.005410 -0.001636 0.004242 0.004295 0.008423 -0.015638 -0.006265 0.007485 -0.001422 -0.003364 -0.011623 -0.004778 0.010343 0.006917 0.005950 0.006231 -0.000234 0.003502 -0.000901 0.003011 0.003358 0.000700 -0.004569 -0.001018 -0.000737 0.009310 0.014583 0.004271 -0.000041 0.009971 0.007140 -0.003803 -0.000981 0.012150 -0.002814 0.007057 0.003017 0.001275 -0.003046 0.004253 0.004651 0.001927 -0.009236 0.000837 0.000607 -0.004788 0.003006 0.001227 -0.003811 -0.005499 -0.005627 0.002677 0.007749 0.004793 -0.001121 0.002609 0.006206 0.000896 0.007936 0.004305 -0.002252 -0.007648 -0.005112 -0.002426 0.002890 -0.006397 -0.003718 0.005107 0.002563 0.004405 -0.002295 0.000776 -0.013435 0.001852 0.006209 -0.006599 -0.006254 -0.010176 0.003352 -0.003255 0.009028 0.002638 -0.009246 0.012359 0.004446 0.001239 -0.001627 -0.004411 -0.001493 -0.009660 0.001403 -0.008691 -0.016067 0.002522 -0.003409 -0.005986 0.000328 -0.010416 -0.001664 0.005565 -0.008609 0.005741 0.004203 0.000557 0.010932 -0.001435 0.008200 -0.010258 -0.000454 -0.005011 0.011284 0.001731 0.003004 -0.003106 0.005989 -0.005942 0.012628 -0.000185 -0.009668 -0.005218 0.008391 -0.020845 0.008643 -0.008505 -0.003310 0.002238 -0.006597 0.008333 -0.004456 -0.005740 0.003517 0.003920 0.004500 0.003078 -0.005141 -0.004727 -0.001784 -0.003074 -0.001903 0.000636 0.005908 -0.003227 0.009745 0.008934 0.002781 -0.003445 -0.007498 0.000675 0.003975 0.011933 0.000944 -0.002236 0.001716 -0.015163 -0.002806 -0.003910 -0.004958 -0.004146 0.009161 0.001939 -0.011729 -0.001162 0.005047 0.009911 0.001586 -0.009635 0.008723 0.000098 0.002586 0.003243 0.004018 0.010072 -0.004226 0.008310 0.006733 0.006121 -0.000765 -0.002086 0.000813 -0.000942 -0.004088 -0.008419 0.003332 0.000100 0.013052 0.001803 -0.004068 0.001285 0.000906 0.004475 0.008449 -0.000796 0.010669 0.000711 -0.001762 0.004664 -0.003181 -0.013169 0.002134 0.005652 -0.001032 -0.001109 -0.001890 -0.008787 0.010011 -0.007003 -0.001544 0.000123 0.011427 0.002211 -0.004087 -0.005617 0.008096 0.012032 -0.001714 0.000412 -0.006167 -0.002666 0.007622 -0.005903 -0.007083 -0.000125 -0.001970 -0.005240 -0.000232 0.006346 -0.004111 -0.008557 -0.005482 -0.004498 0.002890 -0.002657 -0.010478 -0.012542 -0.008643 0.006238 -0.012437 0.004844 0.005806 0.003398 -0.005547 0.000428 0.007357 0.003174 -0.003051 0.008990 -0.010778 0.005103 0.004627 0.000954 0.002224 0.005211 0.011956 -0.005492 0.007212 0.002059 0.000981 -0.000445 -0.002845 -0.008504 -0.001856 0.002645 -0.005286 0.003243 0.002652 -0.001589 0.005022 -0.004596 0.001852 0.000274 0.010745 0.002120 0.002933 0.003120 -0.001918 -0.000271 -0.003862 -0.005095 -0.011906 -0.006935 -0.004839 -0.007513 0.007546 -0.001361 -0.007140 0.004167 -0.005774 0.004639 -0.007602 -0.011258 0.008732 0.009726 -0.005069 -0.000214 0.002327 -0.005435 -0.006021 -0.002867 0.000989 -0.000254 0.000187 -0.000524 -0.019226 0.002087 -0.005864 0.008667 -0.015347 0.001105 0.004711 -0.001603 0.009307 -0.004219 0.001321 -0.000261 0.011333 0.003092 -0.002093 -0.009860 -0.013088 0.001918 -0.003704 -0.001259 -0.006248 0.000943 0.006650 0.002517 0.001523 0.006261 -0.003602 -0.003968 0.000414 0.001298 -0.000623 0.007155 -0.010948 0.005986 -0.004175 0.003216 0.005330 0.017344 0.008556 0.004320 0.002850 -0.001745 -0.000246 -0.001775 0.006900 0.003524 -0.005621 -0.002879 -0.004053 -0.003698 0.001303 -0.003223 -0.003115 -0.004019 0.004140 -0.011997 -0.004928 0.008624 -0.001844 -0.000601 -0.012006 0.005525 0.004865 -0.003315 0.006137 -0.004828 0.016981 0.004086 -0.005721 0.000279 -0.009933 -0.004167 0.007842 -0.010709 0.003119 0.007390 0.003783 0.004516 0.002757 0.004990 0.003521 0.011213 0.003828 0.007003 -0.000674 -0.006859 0.002981 -0.002780 0.001958 -0.008708 -0.004249 -0.002722 -0.002346 0.004182 0.000815 -0.000306 0.004898 0.001966 0.003581 0.006487 0.001703 -0.001381 0.007154 -0.005549 0.001206 -0.002443 0.002666 -0.007238 -0.013268 0.002520 -0.005558 -0.001405 -0.010037 0.000721 0.001647 0.008645 -0.004194 -0.009348 0.001964 0.000984 -0.018159 0.008336 0.002378 0.000949 0.001941 -0.003644 0.005031 -0.015394 -0.007951 0.009259 0.002597 -0.009130 -0.006435 0.006337 -0.005853 -0.010673 -0.003569 -0.003821 0.003787 -0.004741 -0.004840 -0.007245 -0.003436 -0.003001 -0.002443 -0.006050 0.000876 -0.007126 0.001400 0.010854 0.006349 -0.008800 -0.000627 -0.000590 -0.001110 -0.006951 0.000430 0.007330 0.000923 0.013945 -0.012825 0.002588 -0.006974 -0.006873 -0.000597 -0.006096 -0.007137 0.005543 0.001687 -0.013874 0.005009 0.003586 0.006453 0.000463 -0.009487 -0.012737 0.005507 -0.002889 -0.001491 0.005274 0.010661 -0.002319 -0.001783 -0.000420 0.004834 -0.002063 0.002783 0.002327 -0.000541 0.010414 -0.008050 -0.010297 -0.000875 0.001534 0.000548 -0.004074 0.012020 -0.005868 0.000741 0.016929 0.001514 0.002855 0.000725 0.013139 0.000861 -0.002842 0.002205 -0.005519 -0.001780 0.002000 0.007387 -0.005853 -0.007698 -0.012027 0.013976 -0.004870 0.000843 0.008242 0.001170 0.002677 0.000509 0.004987 0.010508 -0.011676 0.005051 0.005486 -0.003760 -0.005622 0.004118 -0.004375 -0.000690 -0.008136 -0.001119 0.007916 0.004178 -0.001546 -0.010597 -0.000217 0.002659 0.005926 ];
Xim=[0.000000 0.001936 0.004089 0.004613 0.003490 -0.001947 0.002722 0.005465 -0.010027 -0.005728 -0.012295 0.006678 0.007684 -0.003076 0.003025 0.005604 0.002651 0.000121 -0.000658 0.000643 0.011075 -0.014560 0.002243 -0.000937 0.008067 -0.001364 0.005818 -0.001312 -0.002559 0.003116 0.005204 -0.005623 -0.003094 -0.001175 0.001155 0.000150 -0.010009 -0.001203 -0.010398 -0.002433 0.004224 -0.008690 0.005645 0.001544 -0.008695 0.001780 -0.005580 0.004645 -0.006574 0.002506 0.002618 -0.005542 -0.002903 0.005234 0.004554 -0.000999 -0.000242 -0.005880 -0.012815 0.003098 0.001176 -0.001869 -0.001274 0.011094 -0.001237 0.001674 -0.001259 0.001412 -0.005991 0.001656 -0.001485 0.004177 0.006991 -0.011088 0.001103 -0.012427 -0.000584 -0.000391 0.007738 0.001662 -0.005337 0.000035 0.002705 0.001108 0.008510 -0.005499 0.005649 0.007413 0.001526 -0.002202 0.008194 0.004141 -0.003818 -0.003059 -0.000557 -0.003653 0.001903 -0.004345 0.010819 0.004478 -0.003616 -0.001765 -0.004583 0.012985 -0.010228 -0.003481 -0.003049 -0.003334 -0.009809 0.003375 0.000846 -0.003228 -0.010550 0.007233 -0.003959 -0.000539 0.009750 -0.007323 0.004602 0.004994 0.015901 -0.004209 -0.000673 -0.006812 -0.006859 -0.004114 -0.000398 0.001077 -0.016712 -0.002641 -0.001084 -0.001514 -0.005005 -0.006084 -0.000064 -0.005007 -0.002876 -0.001054 0.000896 -0.007515 -0.000035 0.002023 -0.002253 0.006805 -0.000922 -0.003057 -0.000294 0.002001 -0.007680 -0.005982 0.006055 0.007024 -0.007784 0.000574 -0.005567 -0.011957 -0.003709 0.005445 0.001297 0.001799 0.004645 -0.005290 -0.006083 -0.001617 -0.003638 0.001667 0.006273 -0.004289 -0.003557 -0.004654 0.000155 -0.004829 0.001128 0.010129 -0.021682 -0.006975 -0.012136 -0.011246 0.001765 0.007429 -0.001695 0.004157 0.015875 0.003305 -0.008752 0.001442 0.002383 -0.007048 -0.000737 -0.001593 0.009513 0.002794 -0.004233 0.005598 -0.000233 -0.002729 -0.006713 -0.000964 0.013559 0.005179 -0.027230 -0.002635 -0.000435 -0.002569 -0.000892 0.003076 -0.006477 -0.008545 -0.003283 -0.009668 0.003855 -0.004127 0.002335 0.006724 -0.003013 0.000018 0.003266 -0.006363 -0.007594 0.002667 0.008060 -0.005606 -0.003139 -0.009018 0.009827 -0.004457 -0.001058 -0.000196 -0.006458 0.002244 0.004494 0.000900 -0.014054 -0.001633 -0.008037 0.003949 0.002465 -0.000925 -0.003075 -0.003374 -0.002139 -0.004580 0.004153 0.002379 0.010294 -0.004989 0.004962 -0.011474 -0.002306 0.004793 0.000383 0.001958 -0.010728 0.008408 0.003146 0.004368 -0.007365 -0.004435 0.001770 -0.017297 -0.001786 0.000039 0.001262 0.000969 0.004128 -0.006987 -0.003038 -0.002106 -0.002090 0.004724 -0.007191 0.000627 0.000514 -0.005140 0.002398 -0.007964 0.003148 -0.006418 -0.006541 0.008010 -0.010165 0.007714 -0.008431 -0.001023 0.003691 -0.003992 -0.006441 0.004426 0.006850 0.000765 -0.005003 0.011856 0.000139 0.000473 -0.007881 -0.002329 0.012646 0.006360 -0.004199 0.011043 -0.002689 -0.004297 -0.002554 -0.003841 -0.002043 -0.004582 0.010772 0.000280 -0.009746 0.000779 0.008287 -0.004663 -0.005471 -0.003716 -0.000386 0.002625 -0.005412 0.008520 -0.006138 0.003082 0.003755 0.011304 -0.004087 -0.008136 0.001812 0.002531 0.000474 -0.002065 -0.000535 -0.001150 -0.001487 0.000529 0.002517 0.003584 -0.011810 -0.003542 -0.004179 -0.007148 0.019322 -0.001121 0.007698 -0.001304 -0.004340 0.015089 -0.001176 0.002378 0.012739 -0.011859 -0.001620 0.000718 0.001901 0.003241 0.009667 -0.002908 -0.006354 0.001922 0.004189 -0.002509 0.002499 -0.000670 0.002437 -0.000087 0.002866 -0.008531 -0.007229 0.000892 0.012049 0.005022 -0.005665 -0.006880 0.000575 -0.001707 -0.006914 0.010754 -0.002293 0.015057 0.000740 0.003912 0.000407 0.006482 -0.009261 -0.008045 -0.003587 0.004253 0.001225 -0.006499 0.001586 -0.004833 -0.001575 0.010908 0.000282 0.004053 0.001525 -0.000383 -0.003221 0.005895 -0.004252 0.002171 -0.000176 -0.006395 0.005247 -0.007570 -0.001119 0.008500 -0.002284 0.015248 -0.013291 0.001143 -0.007370 0.000007 0.003197 -0.003397 0.002108 0.000370 0.008447 -0.004223 0.001589 0.002809 -0.000361 -0.009053 0.012707 -0.015028 -0.000465 0.003726 0.007245 0.003893 -0.005803 -0.011129 -0.014694 0.001068 0.006040 0.010018 0.005427 0.007128 -0.004298 0.004753 -0.002750 -0.003087 0.007670 0.004191 -0.008567 0.007846 0.008680 0.003945 -0.000404 0.000532 -0.012225 -0.008941 -0.005378 0.008456 0.006880 0.000000 0.003206 -0.003669 0.007981 -0.001441 0.003565 0.002222 -0.011633 -0.008263 0.000074 0.000583 -0.003237 -0.007272 -0.005878 0.007843 -0.003469 -0.000597 -0.000999 -0.004984 0.010829 0.004590 0.009315 0.005088 -0.002757 -0.000443 0.001025 0.000817 0.002199 0.002318 -0.007442 -0.004123 -0.004287 0.009919 0.002790 0.000764 -0.009305 -0.006863 -0.007613 -0.006983 0.002700 0.003878 -0.000646 0.000444 -0.000800 0.004354 0.005400 0.005233 0.008167 -0.003189 0.007710 0.003229 0.006536 0.004164 0.008293 0.006825 -0.006038 -0.007280 0.007301 -0.013554 0.001973 0.009234 0.000084 0.000930 -0.009045 0.011963 -0.004092 -0.002756 -0.006402 0.004503 0.002633 0.012217 0.002759 -0.004406 -0.004228 -0.010989 0.007250 0.008776 -0.012318 -0.007351 -0.006998 -0.004183 0.012917 -0.003881 0.004075 0.006910 -0.001050 0.000250 -0.007558 0.008736 0.005539 0.010687 -0.009071 -0.001641 0.004522 -0.004366 -0.004249 -0.001699 -0.004833 0.000338 0.007459 -0.002336 -0.008949 -0.004936 0.002003 -0.000924 0.000194 0.000375 0.001639 -0.000823 0.006393 -0.013165 0.006997 0.003861 0.009755 -0.007425 0.004601 -0.003240 -0.005074 -0.003054 -0.005761 -0.009504 -0.009164 0.011046 0.007029 0.005595 -0.001621 -0.001539 -0.000381 -0.001616 0.003937 0.000624 -0.001882 0.003864 0.006209 0.005837 -0.003393 -0.001553 0.008267 -0.004728 0.000166 0.000473 -0.002976 0.006246 -0.001302 0.001958 -0.003443 -0.009982 0.009171 -0.000673 0.008611 -0.004622 -0.004642 0.001150 -0.003444 0.001840 -0.001363 -0.001578 0.003665 0.000872 -0.001052 -0.003635 -0.001709 0.004179 0.010225 -0.003298 -0.008112 0.001811 -0.005705 0.000220 0.000325 -0.003685 -0.004418 -0.010857 -0.008697 -0.000623 -0.003845 -0.005109 0.016188 -0.001653 -0.008530 0.002131 -0.001608 -0.005485 -0.017705 0.000268 -0.016142 -0.006816 0.007465 0.004792 -0.012471 -0.013539 -0.005299 0.003564 -0.002247 0.001820 0.004393 -0.001749 0.007775 0.005134 -0.004593 -0.001560 0.001155 0.007885 -0.013037 -0.004735 -0.008310 0.007185 0.005458 0.002926 -0.003350 0.002832 -0.009076 -0.000990 0.000309 -0.007485 -0.004104 -0.008439 0.005226 -0.006723 0.002789 0.001048 0.004812 0.004302 -0.001946 0.003237 -0.002483 -0.006490 -0.004034 0.001589 -0.000687 -0.001154 0.005416 -0.004332 0.007954 -0.004230 -0.007237 -0.003064 0.000305 0.001709 0.008258 -0.010644 0.010853 -0.000554 0.003833 0.004070 0.002826 -0.002980 0.008964 0.010979 0.002358 0.003791 -0.007955 -0.004309 0.003351 -0.002198 -0.005204 -0.010910 0.005631 0.017323 -0.000823 0.005909 0.006405 -0.002700 -0.001722 -0.024159 0.001365 0.009316 0.005320 0.000738 0.002340 0.003718 0.007367 0.002397 -0.006881 -0.010008 0.015154 0.000989 0.001269 0.003689 0.001360 0.006356 -0.015764 -0.007835 -0.001207 -0.005673 -0.013537 0.004709 0.002754 0.000496 0.005184 0.005541 0.006518 -0.007258 -0.009415 0.005465 -0.004387 0.003397 -0.000282 -0.000465 0.001231 -0.008273 0.002739 -0.000642 -0.005978 0.021246 -0.002691 -0.002464 -0.010210 0.010927 -0.007966 0.004718 -0.005020 -0.000220 0.014617 -0.013363 -0.005076 0.000091 -0.000134 -0.006017 -0.007756 -0.008183 0.008588 -0.009774 0.012852 -0.007288 0.002223 0.001661 0.000343 0.010868 0.008512 0.003381 0.012228 -0.000303 -0.004463 -0.011239 -0.002970 0.001069 -0.011022 -0.017561 0.000113 -0.003656 0.001149 0.005263 -0.002812 0.002923 -0.004373 0.006849 -0.001572 0.003307 -0.005023 0.002632 -0.008367 0.005325 -0.004812 -0.004285 0.005063 0.007363 0.001544 0.012620 -0.008637 -0.004994 0.000573 -0.004584 -0.003387 0.001600 -0.004493 -0.005075 -0.003920 0.011042 -0.005505 0.004058 0.001332 0.001107 -0.000574 0.000165 -0.004026 -0.005016 -0.004976 -0.013772 0.000034 -0.006981 0.006856 -0.004295 -0.006820 -0.001759 -0.003716 0.004310 -0.003182 -0.003133 -0.005080 0.012038 0.007969 0.000605 0.004714 0.004221 -0.000878 -0.006262 -0.009354 -0.002978 0.008753 0.007969 -0.002366 -0.009958 -0.007001 0.003326 -0.003379 -0.005928 0.001664 -0.005706 0.005901 0.000029 -0.000328 0.004958 0.003150 -0.003955 -0.006855 0.000800 0.000186 -0.007606 0.008469 -0.010157 -0.003848 -0.000706 0.004801 -0.008989 0.001940 0.006977 0.001689 0.017156 0.004398 0.001125 0.003883 0.010947 -0.009397 0.002009 0.005878 -0.006101 0.005655 0.005085 -0.000671 0.009445 0.007255 -0.000618 -0.000998 0.002139 0.011730 -0.009752 -0.009338 -0.006589 0.013138 -0.003899 -0.008465 0.001438 0.002808 -0.011755 -0.005720 -0.005232 0.002424 0.013542 0.003541 0.009650 0.004956 0.010027 0.001416 -0.010442 0.007349 -0.008198 -0.000766 0.003972 0.005216 0.008231 0.007230 -0.002461 -0.000610 -0.000022 -0.003670 -0.012501 0.008924 0.001619 0.012549 -0.007699 0.002047 0.001643 0.012391 0.008237 -0.008952 -0.011542 0.000981 -0.001022 0.005737 -0.006735 -0.001585 0.001152 -0.002361 -0.000880 0.009664 0.008762 0.000565 -0.002097 0.002115 -0.006674 -0.010653 0.013553 -0.001745 0.010780 -0.005924 -0.005699 -0.003496 -0.001368 0.006252 -0.012953 -0.001498 -0.010753 -0.004171 0.000202 -0.010972 -0.013293 -0.000384 -0.006101 -0.005827 0.006887 -0.004227 -0.001132 0.001822 0.000593 0.007290 0.004495 -0.003296 0.008874 0.011949 -0.003720 -0.001224 0.003400 -0.008290 -0.008065 -0.010927 0.002365 -0.001139 0.009591 0.005562 0.001802 -0.000301 0.007217 0.010475 0.002588 0.009075 0.014300 -0.007232 -0.004614 0.007214 0.001693 -0.000707 -0.002607 0.007297 -0.004885 -0.000724 0.001340 0.007266 0.020623 -0.000491 0.000495 0.005783 -0.007335 0.000727 -0.002157 0.002668 -0.011727 0.001571 -0.003464 -0.002157 0.008259 0.013996 -0.008751 0.010709 0.001576 0.013312 0.008159 -0.004654 -0.001139 0.004733 0.002984 -0.004618 0.004396 -0.004059 0.001669 -0.009405 0.012164 -0.007959 0.005100 0.007897 0.007494 -0.005772 -0.015116 -0.012473 0.002842 0.001543 0.006928 0.010270 -0.003469 -0.012552 0.001366 -0.003193 0.009217 0.001426 0.003514 0.005839 0.000670 0.004519 -0.004110 -0.004532 0.000274 0.007175 -0.013046 0.006955 0.002759 0.002091 -0.012896 -0.000259 0.001002 -0.006813 -0.007597 -0.004663 0.007456 -0.001230 0.005148 0.006132 -0.002158 -0.005634 0.000212 -0.000469 -0.001832 -0.002089 -0.002811 -0.010461 0.001712 0.002709 -0.005363 -0.001038 0.011328 0.006415 0.001418 -0.005572 -0.016065 0.007824 -0.003980 0.008370 -0.003543 0.005711 -0.014154 -0.010861 0.007141 0.002894 0.004866 -0.004282 0.001003 -0.001020 -0.001806 -0.003955 -0.009101 0.006560 -0.009089 -0.004719 0.000470 0.019279 0.004008 -0.003208 -0.005236 0.010906 -0.003047 -0.004933 0.009134 -0.004247 0.007854 0.007384 -0.003032 0.003957 -0.002487 -0.002498 -0.004188 0.000626 0.010056 0.008508 0.008683 0.001119 -0.000470 -0.005189 0.007895 0.003149 0.003619 0.007991 0.000960 0.009032 0.004770 -0.004474 0.011821 -0.000233 -0.009071 -0.003080 -0.011484 -0.004605 -0.006711 -0.003035 0.002163 0.010212 -0.002188 0.003800 -0.002624 0.000183 -0.014522 -0.003392 -0.005205 -0.006773 -0.002021 0.013685 0.002288 0.006550 0.004497 0.009776 -0.001977 0.002827 -0.001122 -0.001411 -0.002980 -0.001235 0.003596 -0.000692 0.004497 0.003150 0.006895 0.002063 -0.005550 -0.007216 -0.007544 -0.005559 0.007886 0.001841 -0.001102 0.005615 0.000050 -0.001928 -0.000609 -0.007278 -0.000736 0.000464 0.004178 0.002352 -0.006527 -0.005046 -0.013145 -0.002446 -0.002697 0.015525 0.002403 0.004733 0.011584 -0.003002 0.006023 0.006672 -0.001864 -0.006476 -0.008360 -0.000230 -0.002647 -0.002376 0.015953 -0.000648 0.004330 0.005720 0.006616 -0.003350 -0.006215 0.005371 -0.002409 0.000468 -0.004973 0.004162 -0.005027 -0.000003 -0.005011 0.003656 -0.007869 0.001363 -0.004721 -0.003537 -0.006908 0.000941 0.001374 0.004205 0.001047 -0.012737 -0.006533 -0.013671 -0.008151 0.011410 -0.000543 -0.014425 0.022235 0.000586 -0.001535 0.007042 0.010301 -0.001725 0.001351 0.004752 -0.014761 0.002541 0.003415 0.004373 -0.003741 -0.006367 -0.005116 -0.005309 0.007876 0.000004 -0.003226 0.007036 0.003121 -0.003486 -0.006967 0.005229 0.005128 -0.000960 -0.014349 0.004772 0.004031 -0.002048 0.002037 0.007417 0.004859 0.005636 -0.005430 0.009243 -0.001022 -0.002707 -0.004369 0.003826 -0.007425 -0.003922 -0.005907 0.001856 -0.003941 -0.009594 0.008114 0.002713 0.002536 0.013814 -0.001996 -0.000394 -0.003416 -0.007046 0.005809 -0.001037 -0.000737 0.005779 0.007116 -0.006270 0.008130 -0.007591 -0.010391 0.003934 -0.008260 0.004251 0.008543 -0.003636 -0.003630 0.007015 -0.006954 -0.000834 0.001014 0.003833 0.006708 -0.000298 -0.002456 0.020385 0.001686 -0.002854 0.001570 0.010376 -0.004012 0.013845 -0.005696 0.005371 0.000594 -0.010074 0.004161 -0.003878 0.006938 -0.001163 0.007725 -0.002106 -0.016959 0.001763 -0.004169 0.004983 0.000600 -0.005214 0.002717 0.009131 0.003126 -0.000737 -0.010632 0.007018 0.006204 -0.001059 0.004109 0.005585 0.008129 -0.001058 0.001723 0.004744 -0.009550 0.003272 0.003179 0.005547 0.008702 0.014745 -0.009502 0.004614 0.006862 -0.000935 -0.004549 0.008359 -0.009312 -0.002268 0.014637 0.001788 0.003650 0.000498 -0.006254 0.003716 -0.003782 0.002168 -0.006008 0.015192 0.004507 0.000590 0.002663 0.005278 -0.000687 0.010613 0.002083 0.006845 -0.001142 0.004953 0.007229 0.012977 0.005340 -0.004635 0.000189 0.000037 -0.007303 -0.002961 0.005525 0.003442 -0.001064 0.006549 -0.000479 -0.000632 0.001070 -0.005580 0.004562 0.003651 -0.016465 0.007863 -0.001820 0.011587 0.006458 0.007112 0.001341 -0.010244 0.000834 0.004032 0.005077 -0.000143 0.003495 0.000342 0.001281 0.008906 0.002826 -0.001774 0.000010 0.003104 -0.001647 -0.005466 0.007041 -0.006564 -0.004554 -0.004193 0.000158 0.007829 0.009446 0.005422 -0.001189 0.008533 -0.015982 0.005180 -0.010731 -0.008107 0.003537 -0.001502 -0.000463 0.002114 0.006204 0.015505 0.002135 0.000640 -0.007281 -0.010023 0.007619 -0.004340 -0.013143 0.008614 -0.000892 0.005363 -0.002686 -0.011136 -0.002145 0.007314 0.000105 -0.008267 -0.001839 -0.003823 0.001224 -0.004703 0.000700 -0.003851 0.003358 0.001324 -0.005942 -0.019102 0.000992 -0.007813 0.006549 -0.000494 0.000297 -0.003995 0.006884 0.002113 0.002530 -0.002408 0.004360 -0.005870 0.010624 -0.016569 -0.001491 0.001678 -0.000091 0.003702 -0.000086 0.012513 0.002813 0.002285 0.003982 -0.002340 -0.007853 -0.002211 -0.005721 -0.000565 0.008170 -0.000016 -0.004065 -0.001505 -0.004368 0.001569 0.010602 -0.002772 -0.007260 0.001272 0.000732 0.003098 -0.002494 0.001588 0.007444 0.000948 -0.006605 0.004506 0.003028 0.005380 -0.001680 0.000234 -0.002528 -0.008205 -0.007320 -0.004746 -0.001420 -0.002891 0.002138 -0.002203 0.008838 0.002346 0.011267 -0.011301 0.006784 -0.002503 0.006130 -0.009508 0.006397 -0.009287 0.003807 0.013198 -0.014197 0.005031 0.006207 0.001345 0.003221 -0.003026 -0.002634 -0.002711 -0.012013 -0.005928 0.007837 -0.003723 0.010823 0.003148 0.000053 0.002641 -0.013149 0.007593 -0.009151 0.004283 -0.010284 -0.005601 0.003466 0.002357 0.002889 -0.005641 -0.009096 -0.000004 0.006117 -0.004990 -0.007995 0.000962 -0.004575 -0.007327 -0.006731 -0.002960 0.004174 0.001887 0.001915 0.002849 0.005973 0.005135 0.000757 -0.000744 -0.005841 0.014971 -0.006834 0.012566 -0.002124 0.002467 -0.008254 0.001306 0.013162 -0.006577 -0.016576 -0.005933 -0.004189 -0.001683 0.001412 -0.002837 0.007462 -0.002257 -0.000679 0.000641 0.011283 0.001813 0.000368 -0.001243 -0.006020 0.002015 0.004864 0.005773 0.006083 0.008211 0.009375 0.001558 0.002760 -0.005778 0.004497 0.004232 0.000285 -0.000957 -0.002362 -0.003791 0.004624 0.003157 0.003771 0.005901 0.008686 0.003939 0.005510 -0.000284 -0.008181 0.001846 -0.007127 0.001790 -0.001525 -0.003409 -0.000849 -0.012325 -0.012469 -0.002063 -0.002118 -0.001587 0.014493 -0.004887 0.012021 -0.001276 -0.008467 -0.008309 -0.007660 0.004751 -0.002152 0.002103 -0.004099 0.004322 0.000338 0.001811 0.006771 -0.002521 -0.015367 -0.005117 0.007569 -0.004452 -0.014460 0.000017 -0.005292 0.002786 0.009199 -0.008278 -0.003669 -0.006707 -0.004398 -0.000056 -0.018264 0.003128 0.007781 0.002770 0.000892 0.003125 -0.003419 0.010246 0.004225 -0.002415 0.001209 -0.008321 0.004328 0.009275 0.007801 0.004227 -0.007596 0.005075 0.011089 0.006557 0.009289 -0.003284 -0.007810 0.003600 0.001892 -0.008528 -0.007674 0.016114 -0.001009 -0.011903 -0.001596 -0.009029 0.006314 -0.001320 0.004900 0.005458 0.002522 -0.005011 -0.001065 -0.005519 0.004253 -0.003269 -0.007314 -0.000899 0.001185 -0.001628 0.005399 0.000073 -0.000054 0.004214 -0.015136 -0.003871 -0.002128 -0.014291 0.007171 0.011546 0.005050 0.008319 0.002056 -0.002109 0.002367 0.001225 0.006404 0.005733 -0.003191 -0.011610 -0.004407 0.008992 0.004862 0.003265 0.004184 -0.003747 0.007433 0.006002 -0.002139 0.006352 0.001938 -0.009213 -0.005588 -0.007500 0.016900 0.002770 -0.001545 -0.000618 0.001120 -0.004989 0.004028 -0.001399 -0.010532 0.004955 0.003479 0.002940 0.000303 -0.002787 0.005485 -0.006253 0.002365 -0.003882 0.006917 -0.001500 0.010025 0.000013 -0.003644 0.009250 -0.000116 0.003007 0.006198 0.012708 0.011422 0.012417 0.003947 0.011727 0.005521 0.000702 -0.002643 0.005825 -0.004373 0.002329 -0.001777 -0.005597 -0.000681 0.002409 0.004563 0.002955 0.005110 -0.000242 -0.005423 0.002118 0.007096 0.003954 -0.012734 0.004482 -0.002298 -0.000571 -0.005309 -0.003294 0.000408 -0.000198 0.002484 -0.006773 -0.002880 0.002025 -0.004724 -0.005044 -0.001666 0.007180 -0.001574 0.001048 -0.002143 -0.009030 -0.015418 -0.004750 0.000632 0.005721 0.002011 0.001730 0.009738 -0.004908 -0.001804 -0.002956 -0.010422 0.000567 -0.002810 0.003270 -0.006298 0.000983 0.003555 0.009788 -0.007009 0.001172 0.003599 0.007879 -0.002646 0.000763 -0.001421 -0.002012 0.005204 0.002871 -0.009127 0.002008 -0.011353 0.007911 0.004672 0.001493 0.002645 0.003944 0.000641 0.002006 -0.007933 -0.000094 0.000942 -0.007185 -0.004231 0.016237 -0.003147 -0.002634 0.011041 -0.004029 0.001222 0.004776 -0.011909 0.001181 0.005746 0.005980 -0.002839 -0.001343 0.003355 -0.002770 0.001559 0.004871 0.006331 0.011262 -0.001094 0.004274 0.005087 -0.003949 -0.001456 0.001373 0.001723 -0.001494 -0.010456 0.006412 0.004103 -0.004397 -0.003688 0.010801 -0.008390 -0.002481 -0.006229 -0.000439 -0.006775 0.005817 0.005378 -0.001397 0.002866 -0.002925 -0.004957 0.003097 -0.003774 0.004822 0.005798 0.023943 -0.001069 0.002068 -0.008527 -0.001591 0.006765 -0.005417 -0.001587 -0.006938 -0.009680 0.004462 -0.001095 -0.010544 -0.006586 -0.004276 0.000017 -0.001034 0.011328 0.005433 0.003568 -0.008609 -0.011144 -0.000990 0.001202 -0.003356 -0.000510 -0.009167 -0.012596 -0.006432 0.003099 0.004741 -0.007328 0.001571 0.002096 -0.000501 -0.002528 0.004922 0.003063 0.005855 -0.000847 -0.003364 -0.003517 -0.003969 -0.013129 -0.000834 0.001652 -0.003889 -0.000523 -0.003585 -0.008157 -0.000378 0.004189 0.004061 -0.002100 -0.000644 0.008602 0.000509 0.002022 -0.001618 -0.004451 0.000623 -0.000802 -0.003861 0.008000 -0.001251 0.000898 0.010778 -0.011194 -0.002638 -0.004907 0.009940 -0.007836 0.006984 -0.005604 -0.004040 -0.001640 0.009883 0.006548 -0.006007 0.000531 0.004455 -0.014995 -0.008991 -0.010654 -0.004297 -0.012071 -0.006983 -0.005732 0.013872 -0.008344 0.004802 -0.004848 -0.001530 0.007629 -0.003233 0.004978 0.000071 -0.005905 0.006001 0.001287 0.008241 0.004289 -0.005564 -0.001425 -0.004101 0.000566 0.001398 -0.004512 0.007003 0.009632 -0.002409 -0.002251 -0.011196 0.008942 0.001335 -0.000113 -0.000892 -0.006202 -0.002649 0.000109 0.004056 0.006771 0.000000 -0.006771 -0.004056 -0.000109 0.002649 0.006202 0.000892 0.000113 -0.001335 -0.008942 0.011197 0.002251 0.002409 -0.009633 -0.007003 0.004512 -0.001398 -0.000566 0.004102 0.001425 0.005564 -0.004289 -0.008241 -0.001287 -0.006001 0.005905 -0.000071 -0.004978 0.003233 -0.007629 0.001530 0.004848 -0.004802 0.008344 -0.013872 0.005732 0.006984 0.012071 0.004297 0.010654 0.008991 0.014995 -0.004455 -0.000531 0.006007 -0.006549 -0.009884 0.001640 0.004040 0.005604 -0.006984 0.007836 -0.009940 0.004907 0.002638 0.011194 -0.010778 -0.000898 0.001251 -0.008000 0.003861 0.000802 -0.000623 0.004451 0.001618 -0.002023 -0.000509 -0.008602 0.000644 0.002100 -0.004061 -0.004189 0.000378 0.008157 0.003585 0.000523 0.003889 -0.001652 0.000834 0.013129 0.003969 0.003517 0.003364 0.000847 -0.005855 -0.003063 -0.004922 0.002528 0.000501 -0.002096 -0.001571 0.007328 -0.004741 -0.003099 0.006432 0.012596 0.009167 0.000510 0.003356 -0.001202 0.000990 0.011144 0.008609 -0.003568 -0.005432 -0.011328 0.001034 -0.000017 0.004276 0.006587 0.010544 0.001095 -0.004462 0.009680 0.006938 0.001587 0.005417 -0.006765 0.001591 0.008527 -0.002068 0.001069 -0.023943 -0.005798 -0.004822 0.003774 -0.003097 0.004957 0.002925 -0.002866 0.001397 -0.005378 -0.005817 0.006775 0.000439 0.006229 0.002481 0.008390 -0.010802 0.003688 0.004397 -0.004103 -0.006412 0.010456 0.001494 -0.001723 -0.001373 0.001456 0.003949 -0.005087 -0.004274 0.001094 -0.011262 -0.006332 -0.004871 -0.001559 0.002770 -0.003355 0.001343 0.002839 -0.005980 -0.005746 -0.001180 0.011910 -0.004776 -0.001222 0.004029 -0.011041 0.002634 0.003147 -0.016238 0.004232 0.007185 -0.000942 0.000094 0.007933 -0.002005 -0.000641 -0.003944 -0.002645 -0.001493 -0.004673 -0.007911 0.011353 -0.002008 0.009128 -0.002871 -0.005204 0.002012 0.001422 -0.000763 0.002646 -0.007879 -0.003599 -0.001172 0.007009 -0.009788 -0.003555 -0.000983 0.006298 -0.003270 0.002810 -0.000567 0.010422 0.002956 0.001804 0.004909 -0.009738 -0.001730 -0.002011 -0.005721 -0.000632 0.004750 0.015419 0.009030 0.002143 -0.001048 0.001574 -0.007180 0.001666 0.005044 0.004725 -0.002025 0.002880 0.006773 -0.002484 0.000198 -0.000408 0.003294 0.005309 0.000571 0.002298 -0.004482 0.012734 -0.003954 -0.007096 -0.002118 0.005423 0.000242 -0.005110 -0.002955 -0.004563 -0.002409 0.000681 0.005597 0.001777 -0.002329 0.004373 -0.005825 0.002643 -0.000702 -0.005521 -0.011727 -0.003947 -0.012417 -0.011422 -0.012708 -0.006198 -0.003007 0.000116 -0.009250 0.003644 -0.000013 -0.010026 0.001500 -0.006917 0.003882 -0.002365 0.006253 -0.005485 0.002787 -0.000303 -0.002940 -0.003479 -0.004955 0.010532 0.001399 -0.004028 0.004989 -0.001120 0.000618 0.001545 -0.002770 -0.016901 0.007500 0.005588 0.009213 -0.001938 -0.006352 0.002139 -0.006002 -0.007433 0.003747 -0.004184 -0.003265 -0.004862 -0.008992 0.004407 0.011610 0.003191 -0.005733 -0.006404 -0.001225 -0.002367 0.002109 -0.002056 -0.008319 -0.005050 -0.011546 -0.007172 0.014291 0.002128 0.003871 0.015136 -0.004214 0.000054 -0.000073 -0.005399 0.001628 -0.001185 0.000899 0.007314 0.003269 -0.004253 0.005519 0.001065 0.005011 -0.002522 -0.005458 -0.004900 0.001320 -0.006314 0.009029 0.001596 0.011903 0.001009 -0.016114 0.007674 0.008528 -0.001892 -0.003600 0.007810 0.003284 -0.009289 -0.006557 -0.011089 -0.005075 0.007596 -0.004227 -0.007801 -0.009275 -0.004329 0.008321 -0.001209 0.002415 -0.004225 -0.010246 0.003419 -0.003125 -0.000892 -0.002770 -0.007781 -0.003128 0.018265 0.000056 0.004398 0.006707 0.003669 0.008278 -0.009199 -0.002786 0.005292 -0.000017 0.014460 0.004452 -0.007569 0.005118 0.015367 0.002521 -0.006771 -0.001811 -0.000338 -0.004322 0.004099 -0.002103 0.002152 -0.004751 0.007661 0.008309 0.008467 0.001276 -0.012021 0.004887 -0.014493 0.001587 0.002118 0.002063 0.012469 0.012325 0.000849 0.003409 0.001525 -0.001790 0.007127 -0.001846 0.008181 0.000284 -0.005510 -0.003939 -0.008686 -0.005901 -0.003771 -0.003157 -0.004624 0.003791 0.002362 0.000957 -0.000285 -0.004232 -0.004497 0.005778 -0.002760 -0.001558 -0.009375 -0.008211 -0.006083 -0.005773 -0.004864 -0.002015 0.006020 0.001243 -0.000368 -0.001813 -0.011283 -0.000641 0.000679 0.002258 -0.007462 0.002837 -0.001412 0.001684 0.004189 0.005933 0.016576 0.006577 -0.013162 -0.001306 0.008254 -0.002467 0.002124 -0.012566 0.006834 -0.014971 0.005841 0.000744 -0.000757 -0.005135 -0.005973 -0.002849 -0.001915 -0.001887 -0.004174 0.002960 0.006731 0.007327 0.004575 -0.000962 0.007995 0.004990 -0.006117 0.000004 0.009096 0.005641 -0.002889 -0.002357 -0.003466 0.005601 0.010284 -0.004283 0.009151 -0.007593 0.013150 -0.002641 -0.000053 -0.003148 -0.010824 0.003723 -0.007837 0.005928 0.012013 0.002711 0.002634 0.003026 -0.003221 -0.001345 -0.006207 -0.005031 0.014197 -0.013198 -0.003807 0.009287 -0.006398 0.009508 -0.006130 0.002503 -0.006785 0.011302 -0.011267 -0.002346 -0.008838 0.002203 -0.002138 0.002891 0.001420 0.004746 0.007320 0.008205 0.002528 -0.000234 0.001680 -0.005380 -0.003028 -0.004506 0.006605 -0.000947 -0.007444 -0.001588 0.002494 -0.003097 -0.000732 -0.001272 0.007260 0.002772 -0.010602 -0.001569 0.004368 0.001505 0.004065 0.000016 -0.008170 0.000565 0.005721 0.002212 0.007854 0.002340 -0.003982 -0.002285 -0.002813 -0.012513 0.000086 -0.003702 0.000091 -0.001678 0.001491 0.016569 -0.010624 0.005870 -0.004360 0.002408 -0.002530 -0.002113 -0.006884 0.003995 -0.000297 0.000494 -0.006549 0.007813 -0.000992 0.019102 0.005942 -0.001324 -0.003358 0.003851 -0.000700 0.004703 -0.001224 0.003823 0.001840 0.008267 -0.000105 -0.007314 0.002145 0.011136 0.002686 -0.005363 0.000892 -0.008614 0.013143 0.004340 -0.007619 0.010023 0.007281 -0.000640 -0.002135 -0.015506 -0.006204 -0.002114 0.000463 0.001502 -0.003537 0.008107 0.010731 -0.005180 0.015982 -0.008533 0.001189 -0.005422 -0.009446 -0.007829 -0.000158 0.004193 0.004554 0.006564 -0.007041 0.005466 0.001647 -0.003104 -0.000010 0.001774 -0.002826 -0.008906 -0.001281 -0.000342 -0.003495 0.000143 -0.005077 -0.004032 -0.000834 0.010244 -0.001341 -0.007112 -0.006458 -0.011587 0.001820 -0.007863 0.016465 -0.003651 -0.004562 0.005580 -0.001070 0.000632 0.000479 -0.006549 0.001064 -0.003442 -0.005525 0.002961 0.007303 -0.000037 -0.000189 0.004636 -0.005340 -0.012978 -0.007229 -0.004953 0.001142 -0.006845 -0.002083 -0.010613 0.000687 -0.005278 -0.002663 -0.000590 -0.004507 -0.015192 0.006008 -0.002168 0.003782 -0.003716 0.006254 -0.000498 -0.003650 -0.001788 -0.014637 0.002268 0.009312 -0.008359 0.004549 0.000935 -0.006862 -0.004614 0.009502 -0.014745 -0.008702 -0.005547 -0.003179 -0.003272 0.009550 -0.004744 -0.001723 0.001058 -0.008129 -0.005585 -0.004109 0.001059 -0.006204 -0.007018 0.010632 0.000737 -0.003126 -0.009131 -0.002717 0.005214 -0.000600 -0.004983 0.004169 -0.001763 0.016959 0.002106 -0.007725 0.001163 -0.006938 0.003878 -0.004161 0.010074 -0.000594 -0.005371 0.005696 -0.013845 0.004012 -0.010376 -0.001570 0.002854 -0.001686 -0.020385 0.002456 0.000297 -0.006709 -0.003833 -0.001014 0.000834 0.006954 -0.007015 0.003630 0.003636 -0.008543 -0.004251 0.008260 -0.003934 0.010391 0.007591 -0.008130 0.006270 -0.007116 -0.005779 0.000737 0.001037 -0.005809 0.007046 0.003416 0.000394 0.001996 -0.013815 -0.002536 -0.002713 -0.008114 0.009594 0.003941 -0.001856 0.005907 0.003922 0.007425 -0.003826 0.004369 0.002707 0.001022 -0.009243 0.005430 -0.005636 -0.004859 -0.007417 -0.002037 0.002048 -0.004031 -0.004772 0.014350 0.000960 -0.005128 -0.005229 0.006967 0.003486 -0.003121 -0.007037 0.003226 -0.000004 -0.007876 0.005309 0.005116 0.006367 0.003741 -0.004373 -0.003415 -0.002541 0.014761 -0.004752 -0.001351 0.001725 -0.010301 -0.007042 0.001535 -0.000586 -0.022235 0.014425 0.000543 -0.011410 0.008151 0.013671 0.006533 0.012737 -0.001047 -0.004205 -0.001374 -0.000941 0.006908 0.003537 0.004721 -0.001363 0.007869 -0.003656 0.005011 0.000003 0.005027 -0.004162 0.004973 -0.000468 0.002409 -0.005371 0.006215 0.003350 -0.006616 -0.005720 -0.004330 0.000648 -0.015953 0.002376 0.002647 0.000230 0.008360 0.006476 0.001864 -0.006672 -0.006023 0.003002 -0.011584 -0.004733 -0.002403 -0.015525 0.002697 0.002446 0.013145 0.005046 0.006527 -0.002352 -0.004178 -0.000464 0.000736 0.007278 0.000609 0.001927 -0.000050 -0.005615 0.001102 -0.001841 -0.007886 0.005559 0.007544 0.007216 0.005550 -0.002063 -0.006895 -0.003150 -0.004497 0.000692 -0.003596 0.001235 0.002980 0.001411 0.001122 -0.002827 0.001977 -0.009776 -0.004497 -0.006550 -0.002288 -0.013685 0.002021 0.006773 0.005205 0.003392 0.014522 -0.000183 0.002624 -0.003800 0.002188 -0.010212 -0.002163 0.003035 0.006711 0.004605 0.011484 0.003080 0.009071 0.000233 -0.011821 0.004474 -0.004770 -0.009032 -0.000960 -0.007991 -0.003619 -0.003149 -0.007895 0.005189 0.000470 -0.001119 -0.008683 -0.008508 -0.010056 -0.000626 0.004188 0.002498 0.002487 -0.003957 0.003032 -0.007384 -0.007854 0.004247 -0.009134 0.004933 0.003047 -0.010906 0.005236 0.003208 -0.004008 -0.019279 -0.000470 0.004719 0.009089 -0.006560 0.009101 0.003955 0.001806 0.001020 -0.001003 0.004282 -0.004866 -0.002895 -0.007141 0.010861 0.014154 -0.005711 0.003543 -0.008370 0.003980 -0.007824 0.016065 0.005572 -0.001418 -0.006415 -0.011328 0.001038 0.005363 -0.002709 -0.001712 0.010461 0.002811 0.002089 0.001832 0.000469 -0.000212 0.005634 0.002158 -0.006132 -0.005148 0.001230 -0.007456 0.004663 0.007597 0.006813 -0.001001 0.000259 0.012896 -0.002091 -0.002759 -0.006955 0.013046 -0.007175 -0.000274 0.004532 0.004110 -0.004519 -0.000670 -0.005839 -0.003514 -0.001426 -0.009217 0.003193 -0.001366 0.012552 0.003469 -0.010270 -0.006928 -0.001543 -0.002842 0.012473 0.015116 0.005772 -0.007494 -0.007897 -0.005100 0.007959 -0.012164 0.009405 -0.001669 0.004059 -0.004396 0.004618 -0.002984 -0.004733 0.001139 0.004654 -0.008159 -0.013312 -0.001576 -0.010709 0.008751 -0.013996 -0.008259 0.002157 0.003464 -0.001571 0.011727 -0.002668 0.002157 -0.000727 0.007335 -0.005783 -0.000495 0.000491 -0.020623 -0.007266 -0.001340 0.000724 0.004885 -0.007297 0.002607 0.000707 -0.001693 -0.007214 0.004614 0.007232 -0.014300 -0.009075 -0.002588 -0.010475 -0.007217 0.000301 -0.001802 -0.005562 -0.009591 0.001139 -0.002365 0.010927 0.008065 0.008290 -0.003400 0.001224 0.003720 -0.011949 -0.008874 0.003296 -0.004495 -0.007290 -0.000593 -0.001822 0.001132 0.004227 -0.006887 0.005827 0.006101 0.000384 0.013293 0.010972 -0.000202 0.004171 0.010753 0.001498 0.012953 -0.006252 0.001368 0.003496 0.005699 0.005924 -0.010780 0.001745 -0.013553 0.010653 0.006674 -0.002115 0.002097 -0.000565 -0.008762 -0.009664 0.000880 0.002361 -0.001152 0.001585 0.006735 -0.005737 0.001022 -0.000981 0.011542 0.008952 -0.008237 -0.012391 -0.001643 -0.002047 0.007699 -0.012549 -0.001619 -0.008924 0.012501 0.003670 0.000022 0.000610 0.002461 -0.007230 -0.008231 -0.005216 -0.003972 0.000766 0.008198 -0.007349 0.010442 -0.001416 -0.010027 -0.004956 -0.009650 -0.003541 -0.013542 -0.002424 0.005232 0.005720 0.011755 -0.002808 -0.001438 0.008465 0.003899 -0.013138 0.006589 0.009337 0.009752 -0.011730 -0.002139 0.000998 0.000618 -0.007255 -0.009445 0.000671 -0.005085 -0.005655 0.006101 -0.005878 -0.002009 0.009397 -0.010947 -0.003883 -0.001125 -0.004398 -0.017156 -0.001689 -0.006977 -0.001940 0.008989 -0.004801 0.000706 0.003848 0.010157 -0.008469 0.007606 -0.000186 -0.000800 0.006855 0.003954 -0.003150 -0.004958 0.000328 -0.000029 -0.005901 0.005706 -0.001664 0.005928 0.003379 -0.003326 0.007001 0.009958 0.002366 -0.007969 -0.008753 0.002978 0.009354 0.006262 0.000878 -0.004221 -0.004714 -0.000605 -0.007969 -0.012038 0.005080 0.003133 0.003182 -0.004310 0.003716 0.001759 0.006820 0.004295 -0.006856 0.006981 -0.000034 0.013772 0.004976 0.005016 0.004026 -0.000165 0.000574 -0.001107 -0.001332 -0.004058 0.005505 -0.011042 0.003920 0.005075 0.004493 -0.001600 0.003387 0.004584 -0.000573 0.004994 0.008637 -0.012620 -0.001544 -0.007363 -0.005063 0.004285 0.004812 -0.005325 0.008367 -0.002632 0.005023 -0.003307 0.001572 -0.006849 0.004373 -0.002923 0.002812 -0.005263 -0.001149 0.003656 -0.000113 0.017561 0.011022 -0.001069 0.002969 0.011239 0.004463 0.000303 -0.012228 -0.003381 -0.008512 -0.010868 -0.000343 -0.001661 -0.002223 0.007288 -0.012852 0.009774 -0.008588 0.008183 0.007756 0.006017 0.000134 -0.000091 0.005076 0.013363 -0.014616 0.000220 0.005020 -0.004718 0.007966 -0.010927 0.010210 0.002464 0.002691 -0.021245 0.005978 0.000642 -0.002739 0.008273 -0.001231 0.000465 0.000282 -0.003397 0.004387 -0.005465 0.009415 0.007258 -0.006518 -0.005541 -0.005184 -0.000496 -0.002754 -0.004709 0.013537 0.005673 0.001207 0.007835 0.015764 -0.006356 -0.001360 -0.003689 -0.001269 -0.000989 -0.015154 0.010008 0.006881 -0.002397 -0.007367 -0.003718 -0.002340 -0.000738 -0.005320 -0.009316 -0.001365 0.024159 0.001722 0.002700 -0.006405 -0.005909 0.000823 -0.017323 -0.005631 0.010910 0.005204 0.002198 -0.003351 0.004309 0.007955 -0.003791 -0.002358 -0.010979 -0.008964 0.002980 -0.002826 -0.004070 -0.003833 0.000554 -0.010852 0.010644 -0.008258 -0.001709 -0.000305 0.003064 0.007237 0.004230 -0.007954 0.004332 -0.005416 0.001154 0.000687 -0.001589 0.004034 0.006490 0.002483 -0.003237 0.001946 -0.004302 -0.004812 -0.001048 -0.002789 0.006723 -0.005226 0.008439 0.004104 0.007485 -0.000309 0.000991 0.009075 -0.002832 0.003350 -0.002926 -0.005458 -0.007185 0.008310 0.004735 0.013037 -0.007885 -0.001155 0.001561 0.004593 -0.005134 -0.007775 0.001749 -0.004393 -0.001820 0.002247 -0.003564 0.005299 0.013539 0.012471 -0.004792 -0.007465 0.006816 0.016142 -0.000268 0.017705 0.005485 0.001608 -0.002131 0.008530 0.001653 -0.016188 0.005109 0.003845 0.000623 0.008697 0.010857 0.004418 0.003685 -0.000325 -0.000220 0.005705 -0.001811 0.008112 0.003297 -0.010225 -0.004179 0.001709 0.003635 0.001052 -0.000872 -0.003665 0.001578 0.001363 -0.001840 0.003444 -0.001150 0.004642 0.004621 -0.008611 0.000673 -0.009171 0.009982 0.003443 -0.001958 0.001302 -0.006246 0.002976 -0.000473 -0.000166 0.004728 -0.008267 0.001553 0.003393 -0.005836 -0.006209 -0.003864 0.001882 -0.000624 -0.003937 0.001616 0.000381 0.001539 0.001621 -0.005595 -0.007029 -0.011046 0.009164 0.009504 0.005761 0.003054 0.005074 0.003240 -0.004601 0.007425 -0.009755 -0.003861 -0.006997 0.013165 -0.006393 0.000823 -0.001639 -0.000375 -0.000194 0.000924 -0.002004 0.004936 0.008949 0.002336 -0.007459 -0.000338 0.004833 0.001699 0.004249 0.004366 -0.004522 0.001641 0.009071 -0.010687 -0.005539 -0.008736 0.007558 -0.000250 0.001050 -0.006910 -0.004075 0.003881 -0.012917 0.004183 0.006998 0.007351 0.012318 -0.008775 -0.007250 0.010989 0.004228 0.004406 -0.002759 -0.012217 -0.002633 -0.004503 0.006402 0.002756 0.004092 -0.011963 0.009045 -0.000930 -0.000084 -0.009234 -0.001973 0.013554 -0.007301 0.007280 0.006038 -0.006824 -0.008292 -0.004164 -0.006536 -0.003228 -0.007710 0.003189 -0.008166 -0.005233 -0.005399 -0.004354 0.000800 -0.000444 0.000646 -0.003878 -0.002700 0.006983 0.007613 0.006863 0.009305 -0.000764 -0.002790 -0.009919 0.004287 0.004122 0.007442 -0.002318 -0.002199 -0.000817 -0.001025 0.000443 0.002757 -0.005088 -0.009315 -0.004590 -0.010829 0.004984 0.000999 0.000596 0.003469 -0.007843 0.005878 0.007272 0.003237 -0.000583 -0.000074 0.008263 0.011633 -0.002222 -0.003565 0.001441 -0.007981 0.003668 -0.003206 -0.000000 -0.006880 -0.008456 0.005378 0.008941 0.012225 -0.000532 0.000404 -0.003945 -0.008680 -0.007846 0.008567 -0.004191 -0.007670 0.003087 0.002750 -0.004753 0.004298 -0.007128 -0.005427 -0.010017 -0.006040 -0.001068 0.014694 0.011129 0.005803 -0.003893 -0.007245 -0.003726 0.000465 0.015028 -0.012707 0.009053 0.000361 -0.002809 -0.001589 0.004223 -0.008447 -0.000370 -0.002108 0.003397 -0.003197 -0.000007 0.007370 -0.001143 0.013291 -0.015248 0.002284 -0.008500 0.001119 0.007570 -0.005246 0.006395 0.000176 -0.002171 0.004252 -0.005895 0.003221 0.000383 -0.001525 -0.004053 -0.000282 -0.010908 0.001575 0.004833 -0.001586 0.006499 -0.001225 -0.004253 0.003587 0.008045 0.009261 -0.006482 -0.000407 -0.003912 -0.000740 -0.015057 0.002293 -0.010754 0.006914 0.001707 -0.000575 0.006880 0.005665 -0.005021 -0.012049 -0.000892 0.007229 0.008531 -0.002866 0.000087 -0.002437 0.000670 -0.002498 0.002509 -0.004188 -0.001922 0.006354 0.002908 -0.009667 -0.003241 -0.001900 -0.000718 0.001620 0.011859 -0.012739 -0.002378 0.001176 -0.015088 0.004340 0.001304 -0.007698 0.001121 -0.019321 0.007147 0.004179 0.003542 0.011810 -0.003584 -0.002517 -0.000529 0.001487 0.001150 0.000535 0.002065 -0.000474 -0.002531 -0.001812 0.008136 0.004087 -0.011304 -0.003755 -0.003082 0.006138 -0.008520 0.005412 -0.002625 0.000386 0.003716 0.005471 0.004663 -0.008287 -0.000779 0.009746 -0.000280 -0.010771 0.004582 0.002043 0.003841 0.002553 0.004297 0.002689 -0.011043 0.004199 -0.006360 -0.012646 0.002329 0.007881 -0.000473 -0.000139 -0.011856 0.005003 -0.000765 -0.006850 -0.004426 0.006441 0.003992 -0.003691 0.001024 0.008431 -0.007714 0.010165 -0.008010 0.006541 0.006418 -0.003148 0.007964 -0.002398 0.005140 -0.000514 -0.000627 0.007191 -0.004724 0.002090 0.002106 0.003038 0.006987 -0.004128 -0.000969 -0.001262 -0.000039 0.001786 0.017297 -0.001770 0.004435 0.007366 -0.004368 -0.003146 -0.008407 0.010728 -0.001958 -0.000383 -0.004793 0.002306 0.011473 -0.004962 0.004989 -0.010294 -0.002379 -0.004153 0.004580 0.002139 0.003374 0.003075 0.000925 -0.002465 -0.003949 0.008037 0.001633 0.014054 -0.000900 -0.004494 -0.002244 0.006458 0.000196 0.001058 0.004457 -0.009827 0.009018 0.003139 0.005606 -0.008060 -0.002667 0.007594 0.006363 -0.003266 -0.000018 0.003012 -0.006724 -0.002335 0.004127 -0.003855 0.009668 0.003283 0.008545 0.006477 -0.003076 0.000892 0.002569 0.000435 0.002635 0.027230 -0.005179 -0.013558 0.000964 0.006713 0.002729 0.000233 -0.005598 0.004233 -0.002794 -0.009513 0.001593 0.000737 0.007048 -0.002383 -0.001442 0.008752 -0.003305 -0.015875 -0.004157 0.001695 -0.007429 -0.001764 0.011246 0.012136 0.006974 0.021682 -0.010129 -0.001128 0.004829 -0.000154 0.004654 0.003556 0.004289 -0.006273 -0.001667 0.003638 0.001616 0.006083 0.005290 -0.004645 -0.001799 -0.001297 -0.005445 0.003708 0.011957 0.005567 -0.000574 0.007784 -0.007023 -0.006055 0.005982 0.007680 -0.002001 0.000294 0.003057 0.000922 -0.006805 0.002253 -0.002023 0.000035 0.007515 -0.000896 0.001054 0.002876 0.005007 0.000064 0.006084 0.005005 0.001514 0.001084 0.002641 0.016712 -0.001077 0.000398 0.004114 0.006859 0.006812 0.000674 0.004209 -0.015901 -0.004995 -0.004602 0.007323 -0.009750 0.000539 0.003959 -0.007234 0.010550 0.003228 -0.000847 -0.003375 0.009809 0.003334 0.003049 0.003481 0.010228 -0.012985 0.004583 0.001765 0.003616 -0.004478 -0.010819 0.004345 -0.001903 0.003653 0.000557 0.003059 0.003818 -0.004141 -0.008194 0.002202 -0.001526 -0.007413 -0.005649 0.005499 -0.008510 -0.001108 -0.002705 -0.000035 0.005337 -0.001662 -0.007738 0.000391 0.000584 0.012426 -0.001103 0.011088 -0.006991 -0.004177 0.001485 -0.001656 0.005990 -0.001412 0.001258 -0.001674 0.001237 -0.011094 0.001274 0.001869 -0.001176 -0.003097 0.012815 0.005879 0.000242 0.000999 -0.004554 -0.005234 0.002903 0.005542 -0.002617 -0.002506 0.006574 -0.004645 0.005580 -0.001780 0.008695 -0.001544 -0.005645 0.008689 -0.004224 0.002433 0.010398 0.001203 0.010009 -0.000150 -0.001155 0.001174 0.003094 0.005623 -0.005204 -0.003116 0.002559 0.001312 -0.005818 0.001364 -0.008067 0.000937 -0.002243 0.014560 -0.011075 -0.000643 0.000658 -0.000121 -0.002651 -0.005603 -0.003025 0.003076 -0.007684 -0.006678 0.012294 0.005728 0.010027 -0.005465 -0.002722 0.001947 -0.003490 -0.004613 -0.004089 -0.001936 0.000000 ];
Xmag=[0.008422 0.003289 0.004095 0.011558 0.003817 0.004610 0.008371 0.005578 0.012912 0.005769 0.013050 0.007845 0.009521 0.004858 0.006265 0.007544 0.011973 0.010509 0.005030 0.000820 0.011394 0.014607 0.008542 0.001260 0.009423 0.014043 0.013360 0.007809 0.006388 0.008018 0.005575 0.005898 0.006328 0.002498 0.003068 0.000874 0.016517 0.001405 0.010783 0.002866 0.017448 0.008721 0.008142 0.012119 0.009602 0.001863 0.005787 0.004727 0.012217 0.008431 0.010738 0.005569 0.003720 0.005927 0.005000 0.004937 0.000484 0.006144 0.013023 0.011102 0.005404 0.002390 0.003157 0.012385 0.012797 0.009634 0.001341 0.006606 0.006982 0.005275 0.013953 0.004505 0.008922 0.013187 0.006196 0.012441 0.006898 0.006986 0.008159 0.012933 0.014931 0.000923 0.007814 0.001188 0.010988 0.005610 0.005679 0.007439 0.008931 0.006720 0.013600 0.004372 0.008084 0.003182 0.006076 0.004395 0.003554 0.005540 0.013021 0.006594 0.005963 0.004178 0.005967 0.013467 0.014783 0.006810 0.007032 0.007248 0.013401 0.004258 0.009298 0.008582 0.018662 0.008811 0.005381 0.002014 0.009796 0.007699 0.009522 0.018834 0.015931 0.004645 0.009372 0.008000 0.011035 0.004431 0.000824 0.010095 0.016771 0.006153 0.002744 0.013354 0.008800 0.006643 0.002444 0.005150 0.006250 0.007232 0.001646 0.007705 0.006487 0.004113 0.002990 0.008385 0.000971 0.003164 0.004192 0.003083 0.008148 0.007338 0.010606 0.007291 0.008266 0.003036 0.008834 0.011976 0.007925 0.006656 0.011288 0.003955 0.006817 0.005965 0.007576 0.004114 0.008237 0.003537 0.012411 0.008938 0.005479 0.010969 0.000319 0.007487 0.004239 0.019773 0.022213 0.009290 0.012581 0.012253 0.005800 0.014118 0.001799 0.004547 0.018067 0.005934 0.014850 0.004384 0.004672 0.007706 0.003306 0.002059 0.010207 0.004923 0.005119 0.007933 0.003532 0.007421 0.006943 0.000995 0.013670 0.005911 0.027571 0.008952 0.017350 0.005917 0.003338 0.005186 0.008819 0.013888 0.007873 0.009688 0.004068 0.004148 0.004604 0.007628 0.006948 0.001523 0.004124 0.009204 0.007652 0.006794 0.008157 0.006719 0.003679 0.015895 0.013921 0.004924 0.003268 0.011335 0.006463 0.002604 0.006164 0.009350 0.014145 0.004986 0.008112 0.015847 0.009011 0.005937 0.003716 0.019520 0.002203 0.004584 0.004161 0.002576 0.010686 0.007819 0.007360 0.011707 0.002316 0.006976 0.009734 0.008949 0.015551 0.011335 0.005605 0.007240 0.008463 0.008405 0.002233 0.018872 0.007722 0.004839 0.007050 0.011946 0.006557 0.007984 0.003051 0.002849 0.003755 0.005561 0.007497 0.010764 0.000582 0.005463 0.005184 0.009415 0.003527 0.006944 0.007301 0.009597 0.010504 0.007934 0.011975 0.003023 0.003717 0.004111 0.006762 0.008462 0.008780 0.011981 0.007224 0.012063 0.000964 0.004651 0.009388 0.011027 0.015517 0.007054 0.005264 0.013270 0.002723 0.007017 0.004251 0.006962 0.005257 0.013255 0.012448 0.008648 0.015884 0.010507 0.008703 0.005486 0.007083 0.006623 0.008566 0.004878 0.008341 0.008523 0.008070 0.003658 0.003758 0.013340 0.007180 0.011149 0.003224 0.006666 0.000628 0.002684 0.012044 0.008177 0.005810 0.004121 0.003350 0.011977 0.011811 0.003864 0.008155 0.012301 0.021226 0.002197 0.007778 0.001663 0.007126 0.015239 0.013221 0.003971 0.013566 0.011990 0.001769 0.010693 0.002061 0.009050 0.010653 0.003046 0.006483 0.004499 0.004560 0.013291 0.002501 0.003399 0.008765 0.004089 0.003017 0.008570 0.007524 0.001175 0.013514 0.008399 0.010057 0.008074 0.010088 0.004366 0.007637 0.011061 0.002295 0.017402 0.009664 0.004221 0.009919 0.008215 0.009334 0.014223 0.004078 0.010100 0.004323 0.008174 0.004220 0.005588 0.015245 0.011043 0.002254 0.004162 0.012030 0.003994 0.003291 0.009538 0.005473 0.003528 0.008936 0.011656 0.006160 0.009603 0.001287 0.008711 0.003830 0.015352 0.014107 0.005267 0.007987 0.004500 0.005058 0.004889 0.006115 0.004472 0.011866 0.007833 0.002745 0.004341 0.008513 0.012516 0.024412 0.017212 0.005239 0.010361 0.007248 0.013215 0.008305 0.012638 0.015019 0.003188 0.006283 0.015089 0.007387 0.007143 0.011122 0.009478 0.003102 0.011359 0.007690 0.005935 0.010313 0.011648 0.010311 0.004282 0.010424 0.000625 0.013612 0.009569 0.005940 0.018156 0.011085 0.001403 0.010179 0.003961 0.009119 0.002173 0.003774 0.004970 0.016972 0.012400 0.002639 0.009047 0.004591 0.008007 0.011752 0.010031 0.007456 0.006238 0.002104 0.014330 0.010857 0.005132 0.010304 0.005697 0.005804 0.003745 0.006479 0.003003 0.003275 0.005613 0.010671 0.004698 0.006075 0.012703 0.002930 0.006253 0.009663 0.006954 0.008996 0.010431 0.003802 0.006834 0.005537 0.003837 0.001465 0.005291 0.007217 0.005268 0.008209 0.009771 0.007947 0.005661 0.007798 0.005160 0.008390 0.007462 0.009287 0.007805 0.014175 0.013589 0.004285 0.011672 0.009971 0.000931 0.010002 0.018862 0.010169 0.002853 0.006482 0.006415 0.002724 0.012670 0.004083 0.004497 0.005490 0.010991 0.009559 0.010603 0.014127 0.012689 0.008474 0.012353 0.013348 0.004134 0.008522 0.009328 0.015674 0.008427 0.008693 0.009712 0.005775 0.011979 0.009073 0.007609 0.015930 0.008115 0.004327 0.001742 0.005418 0.003483 0.007790 0.005535 0.010140 0.008245 0.006391 0.006949 0.004794 0.001974 0.011299 0.003323 0.012458 0.013881 0.007042 0.007901 0.009767 0.007430 0.006578 0.009017 0.008960 0.003441 0.007905 0.010343 0.011007 0.013564 0.007035 0.006186 0.002368 0.002969 0.004805 0.001944 0.005845 0.007169 0.005908 0.010427 0.006591 0.006892 0.005437 0.001568 0.010597 0.008659 0.002273 0.009320 0.004724 0.006674 0.005728 0.002159 0.011632 0.012183 0.009579 0.008579 0.013304 0.004766 0.010311 0.001657 0.003898 0.002835 0.006326 0.002830 0.005832 0.005145 0.007019 0.007976 0.001854 0.004722 0.010624 0.003844 0.008141 0.001991 0.010213 0.002352 0.009594 0.010615 0.005934 0.010990 0.012048 0.009186 0.008718 0.006663 0.016574 0.005169 0.008864 0.010824 0.005161 0.006050 0.018879 0.003757 0.017275 0.010055 0.010682 0.004799 0.013931 0.016103 0.010191 0.003718 0.006146 0.007651 0.004615 0.005007 0.007775 0.006200 0.008195 0.009510 0.002889 0.008527 0.013296 0.005158 0.009126 0.007502 0.009321 0.010527 0.005658 0.008537 0.009388 0.005283 0.004260 0.008883 0.006343 0.014275 0.005226 0.008016 0.006030 0.001839 0.009404 0.004469 0.008959 0.006846 0.009506 0.008738 0.007432 0.007043 0.005058 0.002627 0.006643 0.004911 0.012765 0.006291 0.012529 0.003575 0.002875 0.004978 0.011226 0.010682 0.015080 0.009648 0.007082 0.004092 0.005095 0.006506 0.009084 0.012691 0.006475 0.004463 0.010943 0.004419 0.003487 0.004846 0.011983 0.011887 0.005916 0.021585 0.006560 0.006668 0.006579 0.005429 0.002309 0.024193 0.013831 0.013682 0.006775 0.013116 0.002489 0.003733 0.008149 0.011460 0.014287 0.010180 0.017931 0.003351 0.003424 0.012600 0.002102 0.008211 0.018617 0.011469 0.011317 0.007268 0.016330 0.005857 0.005672 0.002102 0.005259 0.006945 0.007127 0.007258 0.009549 0.012901 0.005474 0.003750 0.007640 0.008169 0.006457 0.011837 0.003183 0.001337 0.006690 0.023254 0.005539 0.004262 0.010277 0.013642 0.011582 0.004728 0.007133 0.006907 0.016989 0.014437 0.005706 0.001439 0.002217 0.007262 0.008970 0.011436 0.011185 0.011648 0.013011 0.008062 0.008803 0.001805 0.009168 0.019165 0.008514 0.006010 0.017173 0.008196 0.005793 0.014076 0.005482 0.005524 0.011647 0.020134 0.001283 0.004234 0.003992 0.007025 0.006440 0.005226 0.004525 0.006849 0.007965 0.008818 0.006905 0.013573 0.009036 0.013020 0.004835 0.006491 0.014302 0.014812 0.002149 0.012634 0.009125 0.005248 0.000679 0.004584 0.004113 0.002466 0.004493 0.006029 0.005001 0.013158 0.005809 0.004162 0.008504 0.003479 0.001843 0.000166 0.008382 0.005128 0.007864 0.014371 0.010189 0.007974 0.007360 0.004369 0.007090 0.003595 0.003753 0.006741 0.003746 0.005343 0.005109 0.012736 0.011527 0.002018 0.005158 0.012889 0.003274 0.008450 0.011111 0.003455 0.010076 0.013239 0.004175 0.013670 0.009752 0.005826 0.008422 0.007151 0.003891 0.005746 0.007186 0.005543 0.001079 0.011479 0.004349 0.004585 0.007998 0.007025 0.004062 0.011908 0.010589 0.013081 0.006352 0.011046 0.006037 0.012255 0.003254 0.009838 0.011168 0.017319 0.004428 0.001636 0.004387 0.011671 0.011802 0.002543 0.005898 0.006286 0.005863 0.005884 0.001826 0.012754 0.007943 0.007852 0.004412 0.003210 0.011838 0.009893 0.009413 0.011460 0.013989 0.009812 0.014404 0.002480 0.004140 0.014984 0.007189 0.005509 0.003117 0.014672 0.006194 0.010577 0.006056 0.010302 0.004781 0.014379 0.008804 0.008239 0.002179 0.008276 0.008312 0.011561 0.007313 0.004594 0.000803 0.009463 0.003671 0.017904 0.009442 0.008587 0.015323 0.011477 0.002098 0.016394 0.012519 0.017000 0.010714 0.012431 0.014293 0.004312 0.013145 0.006735 0.004968 0.004070 0.013265 0.015560 0.009685 0.011152 0.006136 0.002103 0.005544 0.008813 0.015725 0.013562 0.003569 0.015974 0.007817 0.006287 0.005915 0.002205 0.011097 0.013391 0.004037 0.012242 0.012448 0.003054 0.011093 0.017516 0.011495 0.006654 0.005838 0.009497 0.004296 0.004939 0.001847 0.002092 0.012063 0.007965 0.003906 0.010733 0.017186 0.004591 0.007403 0.008037 0.009799 0.008155 0.014211 0.003766 0.005269 0.009742 0.013431 0.015999 0.004764 0.007235 0.014614 0.002903 0.009077 0.014301 0.007441 0.005115 0.007316 0.001793 0.010302 0.002736 0.007479 0.010271 0.011196 0.003490 0.007760 0.022050 0.009480 0.002118 0.007324 0.008464 0.006215 0.005347 0.005919 0.011786 0.005049 0.003539 0.005827 0.008422 0.013996 0.014466 0.015179 0.002094 0.015464 0.012364 0.010378 0.003411 0.004999 0.002985 0.018016 0.005557 0.004304 0.007396 0.009417 0.017157 0.009280 0.006328 0.009400 0.018422 0.010608 0.015701 0.015385 0.004732 0.005003 0.007356 0.010308 0.003811 0.012713 0.003458 0.007525 0.010897 0.008254 0.006756 0.008218 0.005712 0.008538 0.006367 0.004571 0.006050 0.011250 0.013051 0.007696 0.006341 0.011794 0.012959 0.017527 0.005796 0.006995 0.007617 0.007539 0.007528 0.008933 0.005226 0.006299 0.009231 0.005871 0.002648 0.002618 0.002331 0.002719 0.005476 0.010779 0.007553 0.002714 0.007779 0.001138 0.013873 0.006827 0.005568 0.006356 0.016366 0.008141 0.007291 0.009904 0.009044 0.007490 0.015734 0.016128 0.009300 0.003081 0.011227 0.010434 0.001122 0.004563 0.002012 0.005758 0.009263 0.008984 0.009396 0.009965 0.004939 0.022278 0.005876 0.003922 0.006133 0.011927 0.007394 0.006712 0.012187 0.004411 0.008059 0.007974 0.009169 0.004129 0.010838 0.017580 0.007947 0.002085 0.010514 0.013658 0.008712 0.003020 0.001832 0.005469 0.008320 0.007939 0.004730 0.011402 0.009870 0.009256 0.004974 0.011755 0.011832 0.002773 0.009994 0.008626 0.014346 0.011697 0.011379 0.004095 0.007230 0.011995 0.002337 0.004162 0.002626 0.005782 0.014710 0.007453 0.006383 0.007851 0.011694 0.015883 0.002524 0.008327 0.005957 0.011914 0.004793 0.005671 0.001127 0.005169 0.003015 0.003731 0.011699 0.010777 0.013887 0.004160 0.008033 0.008686 0.005633 0.010446 0.014875 0.011392 0.011681 0.001844 0.011037 0.005975 0.000229 0.017335 0.005087 0.007312 0.007033 0.007254 0.007655 0.003148 0.006530 0.005932 0.013448 0.002616 0.003057 0.015526 0.002620 0.006092 0.011695 0.004081 0.008259 0.007852 0.002111 0.006734 0.010521 0.012961 0.006478 0.005808 0.022087 0.005246 0.006953 0.013384 0.011931 0.004923 0.006358 0.011833 0.010747 0.002159 0.004978 0.012993 0.005821 0.001799 0.006221 0.006265 0.008875 0.001375 0.005691 0.003819 0.007096 0.010579 0.006396 0.006917 0.001647 0.023311 0.015873 0.014051 0.012115 0.012676 0.004982 0.016897 0.023963 0.002756 0.003956 0.008795 0.010473 0.001869 0.003358 0.012624 0.015665 0.004920 0.011350 0.010668 0.007169 0.008605 0.006629 0.007890 0.007878 0.005260 0.004901 0.007038 0.006469 0.009023 0.012483 0.012289 0.005753 0.001853 0.015778 0.013724 0.005743 0.002052 0.002045 0.010882 0.004934 0.008764 0.006025 0.009266 0.001549 0.005089 0.007150 0.010073 0.007450 0.012400 0.012965 0.005413 0.012408 0.011001 0.012448 0.002765 0.005621 0.014462 0.006598 0.003916 0.005376 0.014244 0.005928 0.011449 0.005818 0.016487 0.012145 0.006394 0.008221 0.009033 0.010396 0.007961 0.015275 0.008164 0.008692 0.012534 0.006087 0.010410 0.010600 0.003493 0.002355 0.004308 0.008505 0.003509 0.015975 0.020604 0.008099 0.004359 0.002033 0.010498 0.011927 0.013936 0.005696 0.010154 0.008873 0.013155 0.006979 0.013789 0.006939 0.002884 0.007784 0.004116 0.019639 0.008084 0.004657 0.005692 0.004386 0.008790 0.003937 0.019154 0.003545 0.006568 0.011957 0.014947 0.006557 0.001732 0.004438 0.013822 0.008498 0.005895 0.007611 0.005207 0.012004 0.006188 0.015719 0.007418 0.011281 0.014761 0.010033 0.006579 0.017100 0.001210 0.009032 0.012059 0.009327 0.004600 0.017010 0.004086 0.004240 0.004143 0.008873 0.012738 0.006150 0.005927 0.014997 0.015676 0.004633 0.004577 0.002801 0.005481 0.004334 0.011044 0.002347 0.012382 0.014349 0.009433 0.012848 0.012978 0.014702 0.005189 0.007539 0.010511 0.009118 0.011152 0.010681 0.005552 0.004551 0.007165 0.001645 0.005277 0.001934 0.009089 0.005150 0.005192 0.016614 0.007937 0.004739 0.014333 0.007170 0.008232 0.009947 0.010419 0.003895 0.004057 0.007821 0.009231 0.012664 0.002438 0.003667 0.009701 0.002927 0.008041 0.001605 0.003212 0.004856 0.005479 0.007114 0.006663 0.006791 0.012910 0.007326 0.012545 0.009707 0.005602 0.002354 0.010191 0.019148 0.006575 0.011713 0.010386 0.003640 0.011455 0.007170 0.009803 0.006225 0.015623 0.012108 0.003604 0.009599 0.010025 0.008206 0.004757 0.013481 0.012434 0.006064 0.006508 0.002702 0.012368 0.007943 0.009939 0.004663 0.008466 0.001849 0.005498 0.002699 0.011662 0.013849 0.005027 0.005476 0.004602 0.010868 0.020516 0.001500 0.008352 0.008737 0.003315 0.010802 0.005162 0.011063 0.005385 0.005709 0.010926 0.006582 0.009857 0.013976 0.016904 0.001506 0.001719 0.005426 0.003713 0.005578 0.014040 0.009064 0.006281 0.006886 0.006180 0.008314 0.005373 0.012392 0.004535 0.011762 0.006201 0.004072 0.003173 0.005506 0.003710 0.012800 0.009246 0.011198 0.001827 0.002286 0.003506 0.003558 0.005343 0.007924 0.001214 0.015228 0.005143 0.007792 0.007728 0.002672 0.005786 0.002768 0.008280 0.007328 0.014443 0.005959 0.008485 0.013212 0.005830 0.013349 0.006854 0.011279 0.011688 0.012292 0.002519 0.010500 0.017013 0.006504 0.010108 0.009739 0.013198 0.015238 0.005094 0.017428 0.004957 0.003590 0.009593 0.003381 0.010030 0.012122 0.007526 0.007958 0.003746 0.017609 0.009073 0.007909 0.002707 0.014934 0.010010 0.009680 0.008021 0.011621 0.005721 0.009484 0.005311 0.012110 0.005905 0.010631 0.005372 0.008563 0.006068 0.009321 0.001604 0.005142 0.011321 0.007941 0.003746 0.005992 0.003738 0.006457 0.002853 0.007763 0.007392 0.001154 0.005314 0.005841 0.015235 0.008492 0.013347 0.004982 0.004666 0.008274 0.001639 0.015783 0.009929 0.017458 0.006586 0.007440 0.001913 0.011190 0.003197 0.007747 0.004964 0.008621 0.003926 0.011357 0.007825 0.007076 0.002139 0.010303 0.002433 0.005044 0.008304 0.006723 0.010240 0.012677 0.003206 0.005642 0.008664 0.004555 0.004235 0.009014 0.006567 0.002460 0.005835 0.006299 0.004100 0.003899 0.013022 0.013097 0.008260 0.005687 0.005379 0.008675 0.005603 0.007624 0.003075 0.009988 0.006501 0.003976 0.012788 0.012675 0.009853 0.006946 0.002017 0.014544 0.010333 0.013085 0.004045 0.012142 0.010717 0.011549 0.006521 0.003826 0.003530 0.007180 0.007916 0.005095 0.005957 0.008750 0.009937 0.015443 0.010810 0.012836 0.005187 0.014475 0.002952 0.005293 0.007949 0.010938 0.010432 0.009795 0.009423 0.018283 0.011707 0.018364 0.015625 0.007801 0.008429 0.005946 0.011825 0.005698 0.011918 0.004762 0.007528 0.010543 0.008879 0.005270 0.009610 0.009421 0.009269 0.008908 0.010706 0.011090 0.014790 0.017124 0.003288 0.011275 0.007228 0.005358 0.008955 0.008827 0.017117 0.001540 0.012737 0.009183 0.009118 0.007185 0.012640 0.004987 0.009996 0.002933 0.005551 0.008328 0.009184 0.011194 0.004029 0.007316 0.006125 0.007335 0.005029 0.010217 0.009622 0.000520 0.004229 0.018111 0.008816 0.005117 0.015947 0.007177 0.013007 0.005115 0.008356 0.002126 0.002941 0.003501 0.003667 0.007556 0.006572 0.006268 0.012488 0.006265 0.017953 0.004916 0.007374 0.008743 0.005359 0.008572 0.007604 0.014951 0.014680 0.003096 0.011175 0.007638 0.007976 0.017378 0.008559 0.007119 0.003248 0.001742 0.004997 0.007813 0.005940 0.015526 0.008376 0.004949 0.005462 0.012767 0.002788 0.008627 0.006271 0.003466 0.003890 0.014087 0.002057 0.010086 0.007814 0.015007 0.010479 0.000187 0.004963 0.016416 0.012924 0.012391 0.013109 0.019473 0.011907 0.012647 0.010011 0.011329 0.008531 0.004377 0.008652 0.009360 0.005988 0.000984 0.007649 0.013112 0.005500 0.005198 0.006107 0.015488 0.002118 0.013221 0.004036 0.014105 0.004764 0.002313 0.003042 0.007660 0.005859 0.006228 0.006526 0.011617 0.006909 0.003702 0.012775 0.010726 0.010006 0.003673 0.007191 0.004820 0.001825 0.003729 0.012909 0.015858 0.005344 0.001835 0.005789 0.006790 0.006264 0.010192 0.005520 0.002909 0.009653 0.013594 0.003566 0.012450 0.008588 0.010027 0.011950 0.004297 0.009992 0.013690 0.001880 0.008738 0.011377 0.007156 0.002161 0.005848 0.003214 0.005272 0.003798 0.011150 0.003804 0.011546 0.008168 0.008285 0.005117 0.010048 0.004190 0.009124 0.002724 0.009651 0.004188 0.008464 0.007892 0.013563 0.016289 0.004544 0.005311 0.012754 0.004139 0.002561 0.006254 0.012312 0.001559 0.008591 0.006181 0.005013 0.005269 0.005885 0.002968 0.006854 0.007295 0.009405 0.011400 0.003093 0.006015 0.013398 0.003951 0.001600 0.002901 0.001778 0.002396 0.010637 0.008667 0.004103 0.006436 0.011086 0.011873 0.017597 0.010035 0.006374 0.019839 0.010333 0.010975 0.012624 0.002037 0.003533 0.004819 0.008793 0.003118 0.006317 0.006355 0.008626 0.024598 0.002587 0.002329 0.009676 0.007118 0.011660 0.009923 0.001726 0.009394 0.009772 0.004470 0.006175 0.011574 0.012352 0.012466 0.009340 0.002646 0.012279 0.011802 0.006006 0.009096 0.011409 0.004223 0.005987 0.003987 0.001849 0.016126 0.013148 0.006489 0.004915 0.005215 0.007347 0.003916 0.005828 0.013201 0.009200 0.012594 0.004245 0.005880 0.018647 0.010826 0.003879 0.004147 0.016655 0.004414 0.004927 0.008447 0.006406 0.004118 0.016798 0.000920 0.005689 0.011327 0.002571 0.002632 0.015446 0.011698 0.003421 0.002542 0.004650 0.000623 0.004976 0.007656 0.008725 0.002736 0.014181 0.010800 0.011766 0.002810 0.007352 0.009949 0.008829 0.007843 0.006090 0.004052 0.006330 0.010408 0.006548 0.006757 0.003833 0.005986 0.015297 0.009256 0.014036 0.006383 0.012072 0.006990 0.005806 0.014150 0.012997 0.009702 0.004888 0.009974 0.007828 0.007230 0.005011 0.000693 0.005966 0.006105 0.001856 0.009087 0.014100 0.007564 0.008304 0.009898 0.002516 0.001506 0.006034 0.012921 0.009871 0.002589 0.006861 0.011235 0.008993 0.010630 0.001213 0.001032 0.017904 0.007688 0.005832 0.005443 0.007686 0.001324 0.007686 0.005443 0.005832 0.007689 0.017904 0.001032 0.001213 0.010630 0.008994 0.011236 0.006861 0.002589 0.009871 0.012922 0.006034 0.001506 0.002516 0.009899 0.008304 0.007564 0.014100 0.009088 0.001856 0.006105 0.005966 0.000693 0.005011 0.007230 0.007828 0.009974 0.004888 0.009702 0.012997 0.014150 0.005806 0.006990 0.012072 0.006383 0.014036 0.009256 0.015298 0.005986 0.003832 0.006757 0.006549 0.010408 0.006331 0.004053 0.006090 0.007844 0.008829 0.009950 0.007352 0.002810 0.011766 0.010800 0.014182 0.002736 0.008725 0.007656 0.004977 0.000623 0.004650 0.002542 0.003421 0.011698 0.015447 0.002632 0.002571 0.011327 0.005689 0.000920 0.016798 0.004118 0.006406 0.008447 0.004927 0.004414 0.016655 0.004147 0.003879 0.010826 0.018647 0.005881 0.004245 0.012594 0.009200 0.013202 0.005828 0.003916 0.007347 0.005215 0.004915 0.006489 0.013149 0.016126 0.001849 0.003987 0.005988 0.004223 0.011409 0.009096 0.006006 0.011803 0.012280 0.002646 0.009341 0.012467 0.012352 0.011574 0.006176 0.004470 0.009772 0.009394 0.001726 0.009924 0.011660 0.007118 0.009677 0.002329 0.002587 0.024599 0.008626 0.006355 0.006317 0.003118 0.008794 0.004819 0.003533 0.002037 0.012624 0.010975 0.010333 0.019840 0.006375 0.010035 0.017598 0.011873 0.011086 0.006436 0.004103 0.008667 0.010637 0.002396 0.001778 0.002901 0.001600 0.003951 0.013398 0.006016 0.003093 0.011400 0.009405 0.007295 0.006854 0.002968 0.005885 0.005269 0.005013 0.006181 0.008591 0.001559 0.012312 0.006255 0.002561 0.004139 0.012754 0.005312 0.004544 0.016290 0.013564 0.007892 0.008465 0.004188 0.009651 0.002724 0.009124 0.004190 0.010048 0.005117 0.008285 0.008168 0.011546 0.003804 0.011150 0.003798 0.005272 0.003214 0.005848 0.002161 0.007156 0.011378 0.008738 0.001880 0.013691 0.009993 0.004297 0.011950 0.010027 0.008588 0.012450 0.003566 0.013594 0.009653 0.002909 0.005520 0.010192 0.006264 0.006790 0.005789 0.001835 0.005344 0.015858 0.012910 0.003729 0.001825 0.004820 0.007191 0.003673 0.010006 0.010726 0.012775 0.003702 0.006909 0.011617 0.006526 0.006228 0.005859 0.007660 0.003042 0.002313 0.004764 0.014105 0.004036 0.013221 0.002118 0.015489 0.006107 0.005198 0.005500 0.013112 0.007649 0.000984 0.005988 0.009360 0.008653 0.004378 0.008531 0.011329 0.010011 0.012647 0.011907 0.019473 0.013109 0.012391 0.012924 0.016416 0.004963 0.000187 0.010479 0.015007 0.007814 0.010086 0.002057 0.014087 0.003890 0.003466 0.006271 0.008627 0.002788 0.012767 0.005462 0.004949 0.008376 0.015526 0.005940 0.007813 0.004998 0.001742 0.003248 0.007119 0.008559 0.017378 0.007976 0.007638 0.011175 0.003096 0.014680 0.014951 0.007604 0.008572 0.005359 0.008743 0.007374 0.004916 0.017953 0.006266 0.012488 0.006268 0.006572 0.007556 0.003667 0.003501 0.002941 0.002126 0.008356 0.005116 0.013007 0.007177 0.015947 0.005117 0.008816 0.018111 0.004229 0.000520 0.009622 0.010217 0.005029 0.007335 0.006125 0.007316 0.004029 0.011194 0.009184 0.008328 0.005551 0.002933 0.009996 0.004987 0.012640 0.007185 0.009118 0.009184 0.012738 0.001540 0.017117 0.008827 0.008954 0.005358 0.007228 0.011275 0.003288 0.017124 0.014790 0.011090 0.010706 0.008908 0.009269 0.009421 0.009610 0.005271 0.008879 0.010543 0.007528 0.004762 0.011918 0.005698 0.011825 0.005946 0.008430 0.007801 0.015625 0.018364 0.011707 0.018283 0.009423 0.009795 0.010432 0.010938 0.007949 0.005293 0.002952 0.014475 0.005187 0.012836 0.010810 0.015443 0.009938 0.008750 0.005957 0.005095 0.007916 0.007180 0.003530 0.003826 0.006521 0.011549 0.010717 0.012142 0.004045 0.013085 0.010333 0.014544 0.002017 0.006946 0.009853 0.012675 0.012788 0.003976 0.006501 0.009988 0.003075 0.007624 0.005603 0.008675 0.005379 0.005687 0.008260 0.013097 0.013023 0.003899 0.004101 0.006299 0.005835 0.002460 0.006567 0.009014 0.004235 0.004555 0.008664 0.005642 0.003206 0.012677 0.010240 0.006724 0.008303 0.005044 0.002433 0.010303 0.002139 0.007076 0.007825 0.011357 0.003926 0.008621 0.004964 0.007747 0.003197 0.011190 0.001913 0.007440 0.006586 0.017459 0.009929 0.015783 0.001639 0.008274 0.004666 0.004982 0.013347 0.008492 0.015235 0.005842 0.005314 0.001154 0.007392 0.007763 0.002853 0.006457 0.003738 0.005992 0.003746 0.007941 0.011321 0.005142 0.001604 0.009321 0.006068 0.008564 0.005372 0.010631 0.005905 0.012110 0.005311 0.009484 0.005721 0.011622 0.008021 0.009680 0.010010 0.014934 0.002707 0.007910 0.009073 0.017609 0.003746 0.007958 0.007526 0.012122 0.010030 0.003381 0.009593 0.003590 0.004957 0.017428 0.005094 0.015238 0.013198 0.009739 0.010108 0.006505 0.017013 0.010500 0.002519 0.012292 0.011688 0.011279 0.006854 0.013349 0.005830 0.013212 0.008485 0.005959 0.014444 0.007328 0.008280 0.002768 0.005786 0.002672 0.007728 0.007792 0.005143 0.015228 0.001214 0.007924 0.005343 0.003558 0.003506 0.002286 0.001827 0.011199 0.009246 0.012800 0.003710 0.005506 0.003173 0.004072 0.006201 0.011763 0.004535 0.012392 0.005373 0.008314 0.006180 0.006886 0.006281 0.009064 0.014040 0.005578 0.003713 0.005426 0.001719 0.001506 0.016904 0.013976 0.009857 0.006582 0.010926 0.005709 0.005385 0.011063 0.005162 0.010802 0.003315 0.008737 0.008352 0.001500 0.020516 0.010868 0.004602 0.005476 0.005027 0.013849 0.011662 0.002699 0.005498 0.001849 0.008466 0.004663 0.009940 0.007943 0.012368 0.002702 0.006509 0.006064 0.012434 0.013481 0.004757 0.008206 0.010025 0.009599 0.003604 0.012108 0.015623 0.006225 0.009803 0.007170 0.011455 0.003640 0.010386 0.011713 0.006575 0.019148 0.010191 0.002354 0.005603 0.009707 0.012546 0.007326 0.012911 0.006791 0.006663 0.007114 0.005479 0.004856 0.003212 0.001605 0.008041 0.002927 0.009702 0.003667 0.002438 0.012664 0.009231 0.007821 0.004057 0.003895 0.010419 0.009947 0.008232 0.007170 0.014333 0.004739 0.007937 0.016614 0.005192 0.005150 0.009089 0.001934 0.005277 0.001645 0.007165 0.004551 0.005552 0.010681 0.011152 0.009118 0.010511 0.007539 0.005189 0.014702 0.012978 0.012848 0.009433 0.014349 0.012382 0.002347 0.011044 0.004334 0.005481 0.002801 0.004577 0.004633 0.015676 0.014997 0.005927 0.006150 0.012738 0.008873 0.004143 0.004240 0.004086 0.017010 0.004600 0.009328 0.012059 0.009032 0.001210 0.017100 0.006579 0.010033 0.014761 0.011281 0.007418 0.015719 0.006188 0.012004 0.005207 0.007611 0.005896 0.008498 0.013822 0.004438 0.001732 0.006557 0.014947 0.011957 0.006568 0.003545 0.019154 0.003937 0.008790 0.004386 0.005692 0.004657 0.008084 0.019639 0.004116 0.007784 0.002884 0.006939 0.013789 0.006979 0.013155 0.008873 0.010154 0.005696 0.013937 0.011927 0.010499 0.002033 0.004359 0.008099 0.020604 0.015975 0.003509 0.008505 0.004308 0.002356 0.003493 0.010600 0.010410 0.006087 0.012534 0.008692 0.008164 0.015275 0.007961 0.010396 0.009033 0.008221 0.006394 0.012145 0.016487 0.005818 0.011449 0.005928 0.014244 0.005376 0.003916 0.006598 0.014462 0.005621 0.002765 0.012448 0.011001 0.012408 0.005413 0.012965 0.012400 0.007450 0.010073 0.007150 0.005089 0.001549 0.009266 0.006026 0.008764 0.004934 0.010882 0.002045 0.002052 0.005743 0.013725 0.015778 0.001853 0.005753 0.012289 0.012483 0.009023 0.006469 0.007038 0.004901 0.005260 0.007878 0.007890 0.006629 0.008606 0.007169 0.010668 0.011350 0.004920 0.015665 0.012624 0.003358 0.001869 0.010473 0.008795 0.003956 0.002756 0.023963 0.016897 0.004982 0.012676 0.012115 0.014051 0.015873 0.023311 0.001647 0.006917 0.006396 0.010579 0.007096 0.003819 0.005691 0.001375 0.008875 0.006265 0.006221 0.001799 0.005821 0.012993 0.004978 0.002159 0.010747 0.011833 0.006358 0.004923 0.011931 0.013384 0.006953 0.005246 0.022087 0.005808 0.006478 0.012961 0.010521 0.006734 0.002111 0.007852 0.008259 0.004081 0.011695 0.006092 0.002620 0.015526 0.003057 0.002616 0.013448 0.005932 0.006530 0.003148 0.007655 0.007254 0.007033 0.007312 0.005087 0.017335 0.000229 0.005975 0.011037 0.001844 0.011681 0.011392 0.014875 0.010446 0.005633 0.008686 0.008033 0.004160 0.013887 0.010777 0.011699 0.003731 0.003015 0.005169 0.001127 0.005671 0.004793 0.011914 0.005957 0.008327 0.002524 0.015883 0.011694 0.007851 0.006383 0.007453 0.014710 0.005782 0.002626 0.004162 0.002337 0.011995 0.007230 0.004095 0.011379 0.011697 0.014346 0.008626 0.009994 0.002773 0.011832 0.011755 0.004974 0.009256 0.009870 0.011402 0.004730 0.007939 0.008320 0.005469 0.001832 0.003020 0.008712 0.013658 0.010514 0.002085 0.007947 0.017580 0.010838 0.004129 0.009169 0.007974 0.008059 0.004411 0.012186 0.006712 0.007394 0.011927 0.006133 0.003922 0.005876 0.022278 0.004939 0.009965 0.009396 0.008984 0.009263 0.005758 0.002012 0.004563 0.001122 0.010434 0.011227 0.003081 0.009300 0.016128 0.015734 0.007490 0.009044 0.009904 0.007291 0.008141 0.016366 0.006356 0.005568 0.006827 0.013873 0.001138 0.007779 0.002714 0.007553 0.010779 0.005476 0.002719 0.002331 0.002618 0.002648 0.005871 0.009231 0.006299 0.005226 0.008933 0.007527 0.007539 0.007617 0.006995 0.005796 0.017527 0.012959 0.011794 0.006341 0.007696 0.013051 0.011250 0.006050 0.004571 0.006367 0.008538 0.005712 0.008218 0.006756 0.008254 0.010897 0.007525 0.003458 0.012713 0.003811 0.010308 0.007356 0.005002 0.004732 0.015385 0.015701 0.010608 0.018422 0.009399 0.006328 0.009280 0.017157 0.009417 0.007396 0.004304 0.005556 0.018016 0.002985 0.004999 0.003411 0.010378 0.012364 0.015464 0.002094 0.015179 0.014466 0.013996 0.008422 0.005827 0.003539 0.005049 0.011786 0.005919 0.005347 0.006215 0.008464 0.007324 0.002118 0.009480 0.022050 0.007760 0.003490 0.011196 0.010271 0.007479 0.002736 0.010302 0.001793 0.007316 0.005115 0.007441 0.014301 0.009077 0.002903 0.014614 0.007235 0.004764 0.015999 0.013431 0.009742 0.005269 0.003766 0.014211 0.008155 0.009799 0.008037 0.007403 0.004591 0.017186 0.010733 0.003906 0.007965 0.012063 0.002092 0.001847 0.004939 0.004296 0.009497 0.005838 0.006654 0.011495 0.017516 0.011093 0.003054 0.012448 0.012242 0.004037 0.013391 0.011097 0.002205 0.005915 0.006287 0.007817 0.015974 0.003569 0.013562 0.015725 0.008813 0.005544 0.002103 0.006136 0.011152 0.009685 0.015560 0.013265 0.004070 0.004968 0.006735 0.013145 0.004312 0.014293 0.012431 0.010714 0.017000 0.012519 0.016394 0.002098 0.011477 0.015323 0.008587 0.009442 0.017904 0.003671 0.009463 0.000803 0.004594 0.007313 0.011561 0.008312 0.008276 0.002179 0.008239 0.008804 0.014379 0.004781 0.010302 0.006056 0.010577 0.006194 0.014672 0.003117 0.005509 0.007189 0.014984 0.004140 0.002480 0.014404 0.009812 0.013989 0.011460 0.009413 0.009893 0.011838 0.003210 0.004412 0.007852 0.007943 0.012754 0.001826 0.005884 0.005863 0.006286 0.005898 0.002543 0.011802 0.011671 0.004387 0.001636 0.004428 0.017319 0.011168 0.009838 0.003254 0.012255 0.006037 0.011046 0.006352 0.013081 0.010589 0.011908 0.004062 0.007025 0.007998 0.004585 0.004349 0.011479 0.001079 0.005543 0.007186 0.005746 0.003891 0.007151 0.008422 0.005826 0.009752 0.013670 0.004175 0.013239 0.010076 0.003455 0.011111 0.008450 0.003274 0.012889 0.005158 0.002018 0.011527 0.012736 0.005109 0.005343 0.003746 0.006741 0.003753 0.003595 0.007090 0.004369 0.007360 0.007974 0.010189 0.014372 0.007864 0.005128 0.008382 0.000166 0.001843 0.003479 0.008504 0.004162 0.005809 0.013158 0.005001 0.006029 0.004493 0.002466 0.004113 0.004584 0.000679 0.005248 0.009125 0.012634 0.002149 0.014812 0.014301 0.006491 0.004835 0.013020 0.009036 0.013573 0.006905 0.008818 0.007965 0.006849 0.004525 0.005226 0.006440 0.007026 0.003992 0.004234 0.001283 0.020134 0.011647 0.005525 0.005482 0.014076 0.005793 0.008196 0.017173 0.006010 0.008514 0.019165 0.009168 0.001805 0.008803 0.008062 0.013011 0.011648 0.011185 0.011436 0.008970 0.007262 0.002217 0.001439 0.005706 0.014437 0.016989 0.006907 0.007133 0.004728 0.011582 0.013642 0.010277 0.004262 0.005538 0.023254 0.006690 0.001337 0.003183 0.011837 0.006457 0.008169 0.007640 0.003750 0.005474 0.012901 0.009549 0.007258 0.007127 0.006945 0.005259 0.002102 0.005671 0.005857 0.016330 0.007268 0.011317 0.011469 0.018617 0.008211 0.002102 0.012600 0.003424 0.003351 0.017931 0.010180 0.014287 0.011460 0.008149 0.003733 0.002489 0.013116 0.006775 0.013682 0.013831 0.024193 0.002309 0.005429 0.006579 0.006668 0.006560 0.021585 0.005916 0.011887 0.011983 0.004846 0.003487 0.004419 0.010943 0.004463 0.006475 0.012691 0.009084 0.006506 0.005095 0.004092 0.007082 0.009648 0.015080 0.010682 0.011226 0.004978 0.002875 0.003575 0.012529 0.006291 0.012765 0.004911 0.006643 0.002626 0.005058 0.007044 0.007432 0.008738 0.009506 0.006846 0.008959 0.004469 0.009404 0.001839 0.006030 0.008016 0.005226 0.014275 0.006343 0.008883 0.004259 0.005283 0.009388 0.008537 0.005658 0.010527 0.009320 0.007502 0.009126 0.005158 0.013296 0.008527 0.002889 0.009510 0.008195 0.006200 0.007775 0.005007 0.004615 0.007651 0.006146 0.003718 0.010191 0.016103 0.013931 0.004799 0.010682 0.010055 0.017275 0.003757 0.018879 0.006050 0.005161 0.010824 0.008864 0.005169 0.016574 0.006663 0.008718 0.009186 0.012048 0.010990 0.005934 0.010615 0.009594 0.002352 0.010213 0.001991 0.008141 0.003844 0.010624 0.004722 0.001854 0.007976 0.007019 0.005145 0.005832 0.002830 0.006326 0.002835 0.003898 0.001657 0.010311 0.004766 0.013304 0.008579 0.009579 0.012183 0.011632 0.002159 0.005728 0.006674 0.004724 0.009320 0.002273 0.008659 0.010597 0.001568 0.005437 0.006892 0.006591 0.010427 0.005908 0.007169 0.005844 0.001944 0.004805 0.002969 0.002368 0.006186 0.007035 0.013564 0.011007 0.010343 0.007905 0.003441 0.008960 0.009017 0.006578 0.007430 0.009767 0.007901 0.007042 0.013880 0.012458 0.003323 0.011299 0.001974 0.004794 0.006949 0.006391 0.008245 0.010140 0.005535 0.007790 0.003483 0.005418 0.001742 0.004327 0.008115 0.015930 0.007608 0.009073 0.011979 0.005775 0.009712 0.008693 0.008427 0.015674 0.009328 0.008522 0.004134 0.013348 0.012353 0.008474 0.012689 0.014127 0.010603 0.009559 0.010991 0.005490 0.004497 0.004083 0.012670 0.002724 0.006415 0.006482 0.002853 0.010169 0.018862 0.010002 0.000931 0.009971 0.011672 0.004285 0.013589 0.014175 0.007805 0.009287 0.007461 0.008390 0.005160 0.007798 0.005661 0.007947 0.009771 0.008209 0.005268 0.007217 0.005291 0.001465 0.003837 0.005537 0.006834 0.003802 0.010431 0.008996 0.006954 0.009663 0.006253 0.002930 0.012703 0.006075 0.004697 0.010671 0.005613 0.003275 0.003003 0.006479 0.003745 0.005804 0.005697 0.010304 0.005132 0.010857 0.014329 0.002104 0.006238 0.007456 0.010031 0.011752 0.008007 0.004591 0.009047 0.002639 0.012400 0.016972 0.004970 0.003774 0.002173 0.009119 0.003960 0.010179 0.001403 0.011085 0.018156 0.005940 0.009569 0.013612 0.000625 0.010424 0.004282 0.010311 0.011648 0.010313 0.005935 0.007690 0.011359 0.003102 0.009478 0.011122 0.007143 0.007387 0.015089 0.006283 0.003188 0.015019 0.012638 0.008305 0.013214 0.007248 0.010361 0.005239 0.017211 0.024412 0.012516 0.008513 0.004341 0.002745 0.007833 0.011866 0.004472 0.006115 0.004889 0.005058 0.004500 0.007987 0.005267 0.014107 0.015352 0.003830 0.008711 0.001287 0.009603 0.006160 0.011656 0.008935 0.003528 0.005472 0.009538 0.003290 0.003994 0.012030 0.004162 0.002254 0.011042 0.015244 0.005588 0.004220 0.008174 0.004323 0.010100 0.004078 0.014223 0.009334 0.008215 0.009919 0.004222 0.009664 0.017401 0.002295 0.011061 0.007637 0.004366 0.010088 0.008074 0.010057 0.008399 0.013514 0.001175 0.007524 0.008569 0.003017 0.004089 0.008765 0.003399 0.002500 0.013290 0.004560 0.004499 0.006483 0.003046 0.010653 0.009050 0.002060 0.010693 0.001769 0.011989 0.013566 0.003971 0.013221 0.015239 0.007126 0.001663 0.007778 0.002197 0.021226 0.012301 0.008155 0.003864 0.011811 0.011976 0.003350 0.004121 0.005810 0.008177 0.012044 0.002684 0.000628 0.006666 0.003224 0.011149 0.007180 0.013340 0.003758 0.003658 0.008070 0.008523 0.008341 0.004878 0.008565 0.006623 0.007083 0.005486 0.008703 0.010507 0.015884 0.008648 0.012447 0.013255 0.005257 0.006962 0.004251 0.007017 0.002723 0.013269 0.005263 0.007054 0.015516 0.011027 0.009388 0.004651 0.000964 0.012063 0.007223 0.011980 0.008779 0.008462 0.006762 0.004111 0.003717 0.003023 0.011975 0.007934 0.010504 0.009597 0.007301 0.006944 0.003527 0.009415 0.005184 0.005463 0.000582 0.010763 0.007497 0.005561 0.003755 0.002849 0.003050 0.007984 0.006557 0.011946 0.007049 0.004839 0.007722 0.018871 0.002233 0.008405 0.008463 0.007240 0.005605 0.011335 0.015551 0.008948 0.009734 0.006976 0.002316 0.011707 0.007359 0.007819 0.010686 0.002576 0.004161 0.004584 0.002203 0.019520 0.003716 0.005937 0.009011 0.015847 0.008112 0.004986 0.014145 0.009350 0.006164 0.002604 0.006463 0.011335 0.003268 0.004924 0.013921 0.015894 0.003678 0.006719 0.008157 0.006794 0.007652 0.009204 0.004123 0.001523 0.006948 0.007628 0.004604 0.004148 0.004068 0.009688 0.007872 0.013888 0.008819 0.005185 0.003338 0.005916 0.017349 0.008952 0.027570 0.005911 0.013670 0.000995 0.006943 0.007421 0.003532 0.007933 0.005119 0.004923 0.010207 0.002059 0.003306 0.007706 0.004672 0.004384 0.014850 0.005934 0.018066 0.004547 0.001799 0.014118 0.005800 0.012253 0.012581 0.009290 0.022213 0.019772 0.004239 0.007487 0.000319 0.010969 0.005479 0.008938 0.012410 0.003537 0.008237 0.004114 0.007576 0.005965 0.006817 0.003954 0.011288 0.006656 0.007925 0.011976 0.008834 0.003036 0.008266 0.007291 0.010606 0.007338 0.008148 0.003083 0.004192 0.003164 0.000971 0.008385 0.002990 0.004113 0.006487 0.007705 0.001646 0.007232 0.006250 0.005150 0.002444 0.006643 0.008800 0.013354 0.002743 0.006153 0.016771 0.010095 0.000824 0.004431 0.011035 0.008000 0.009372 0.004645 0.015931 0.018833 0.009522 0.007699 0.009796 0.002014 0.005381 0.008811 0.018662 0.008581 0.009298 0.004258 0.013401 0.007247 0.007032 0.006810 0.014783 0.013467 0.005967 0.004178 0.005963 0.006593 0.013021 0.005539 0.003553 0.004394 0.006075 0.003182 0.008084 0.004372 0.013600 0.006720 0.008931 0.007439 0.005679 0.005610 0.010988 0.001188 0.007813 0.000923 0.014931 0.012932 0.008159 0.006985 0.006898 0.012441 0.006196 0.013186 0.008922 0.004505 0.013953 0.005275 0.006982 0.006606 0.001341 0.009634 0.012797 0.012385 0.003157 0.002391 0.005404 0.011102 0.013023 0.006144 0.000485 0.004936 0.005000 0.005927 0.003720 0.005568 0.010738 0.008431 0.012217 0.004727 0.005787 0.001862 0.009602 0.012119 0.008142 0.008721 0.017448 0.002865 0.010783 0.001405 0.016517 0.000874 0.003068 0.002498 0.006328 0.005898 0.005575 0.008018 0.006388 0.007809 0.013360 0.014042 0.009423 0.001260 0.008541 0.014607 0.011394 0.000820 0.005030 0.010508 0.011973 0.007544 0.006264 0.004858 0.009521 0.007845 0.013049 0.005769 0.012912 0.005578 0.008371 0.004610 0.003817 0.011557 0.004095 0.003289 0.005926 ];
//draw first plot
xmin=min(x);
xmax=max(x);
ymax=length(x);
n = [0:ymax-1];
subplot(3,1,1);
plot2d([0:(ymax-1)],x,rect=[0,xmin,ymax-1,xmax]);
legend("Input signal");
xtitle("Oryginal input signal","x(n)","Amplitude");
//second plot
all = [Xre,Xim];
xmax=max(all);
xmin=min(all);
ymax=length(Xre);
zero = zeros(ymax,1);
subplot(3,1,2);
x_x=[0:1:(ymax-1)];
xtitle("Xre and Xim amplitudes","Xre(n),Xim(n)","Amplitude");
plot2d(x_x,Xre,rect=[0,xmin,ymax,xmax]);
plot2d(x_x,Xim);
h=gcf();
h.children.children(1).children.line_style = 8;
h.children.children(1).children.thickness = 1.5;
legend("Xre", "Xim");
plot2d(x_x,zero);
clear h;
clear all;
//third plot
subplot(3,1,3)
bar([0:ymax-1],Xmag);
xtitle("DFT result","X(n)","Amplitude");
xgrid(1);
legend("n-harmonic")
xmax=max(Xmag);
ymax=length(Xmag);
h = gca();
h.data_bounds = [-0.2,0 ; ymax, xmax+0.05];
h.tight_limits=["on","on"];
h.auto_ticks=["on","on","on"];clear h;
//set window size
f = get("current_figure");
f.figure_position = [0,0];
f.figure_size = [1000,1000];
|
306b53c84b0257840d783cbfce8d9d7a3761a1f6 | 584105ff5b87869494a42f632079668e4c3f82de | /sci_gateway/cpp/Min.sci | 451f59d5fd5200e7bc6e4f3932b8cd96f990c51b | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,832 | sci | Min.sci | //*********************************************************************//
// Author : Asmita Bhar
//*********************************************************************//
function varargout = Minimum(image, varargin)
[lhs,rhs] = argn(0);
if rhs<1 then
error(msprintf("Not enough input arguments"));
end
if rhs>9 then
error(msprintf("Too many input arguments"));
end
if lhs>2 then
error(msprintf("Too many output arguments"));
end
[iRows iCols]=size(image(1))
iChannels = size(image)
valueOutputPort = 'true';
indexOutputPort = 'true';
dimension = 'All';
customDimension = 1;
ROIPROCESSING = 'true';
Matrix_Col = [];
Matrix_Row = [];
flag=0;
i=1;
while(i<rhs-1)
if strcmpi(varargin(i),'ValueOutputPort')==0 then
valueOutputPort = varargin(i+1)
if strcmpi(valueOutputPort,"true") & strcmpi(valueOutputPort,"false") then
error(msprintf(" wrong input argument #%d,ValidityOutputPort not matched",i))
end
elseif strcmpi(varargin(i),'IndexOutputPort')==0 then
indexOutputPort = varargin(i+1)
if strcmpi(indexOutputPort,"true") & strcmpi(indexOutputPort,"false") then
error(msprintf(" wrong input argument #%d, IndexOutputPort not matched",i))
end
elseif strcmpi(varargin(i),'Dimension')==0 then
dimension = varargin(i+1)
if strcmpi(dimension,"Column") & strcmpi(dimension,"Row") &strcmpi(dimension,"All") & strcmpi(dimension,"Custom") then
error(msprintf(" wrong input argument #%d, Dimension not matched",i))
end
elseif strcmpi(varargin(i),'ROIPROCESSING')==0 then
ROIPROCESSING = varargin(i+1)
if strcmpi(ROIPROCESSING,"true") & strcmpi(ROIPROCESSING,"false") then
error(msprintf(" wrong input argument #%d,ROIPROCESSING not matched",i))
end
elseif strcmpi(varargin(i),'MatrixCol')==0 then
Matrix_Col = varargin(i+1)
elseif strcmpi(varargin(i),'MatrixRow')==0 then
Matrix_Row = varargin(i+1)
elseif strcmpi(varargin(i),'CustomDimension')==0 then
customDimension = varargin(i+1)
flag=1;
end
i=i+2;
end
if (~strcmpi(valueOutputPort,'false') & ~strcmpi(indexOutputPort,'false'))
error(msprintf("Both cannot be false at the same time"));
end
if (strcmpi(dimension,'Custom') & (flag==1))
error(msprintf("The CustomDimension property is not relevant in this configuration"));
end
image2 = roipoly(image, Matrix_Col, Matrix_Row)
if (dimension=='All') then
if(iChannels==1) then
[val ind] = min(image2(1))
ind(1) = 1;
elseif (iChannels==3) then
val1 = min(image2(1))
val2 = min(image2(2))
val3 = min(image2(3))
if (val1<=val2) & (val1<=val3) then
[val ind] = min(image2(1))
ind(3) = 1
elseif (val2<=val1) & (val2<=val3) then
[val ind] = min(image2(2))
ind(3) = 2
else
[val ind] = min(image2(3))
ind(3) = 3
end
end
t = ind(1)
ind(1) = ind(2)
ind(2) = t
end
if (dimension=='Row') then
if(iChannels==1) then
[val ind] = min(image2(1),'c');
elseif(iChannels==3) then
[val1 ind1] = min(image2(1),'c');
[val2 ind2] = min(image2(2),'c');
[val3 ind3] = min(image2(3),'c');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
end
end
if (dimension=='Column') then
if(iChannels==1) then
[val ind] = min(image2(1),'r');
elseif(iChannels==3) then
[val1 ind1] = min(image2(1),'r');
[val2 ind2] = min(image2(2),'r');
[val3 ind3] = min(image2(3),'r');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
end
end
if (dimension=='Custom') then
if(iChannels==1) then
if(customDimension==1) then
[val ind] = min(image2(1),'r');
elseif(customDimension==2) then
[val ind] = min(image2(1),'c');
end
elseif(iChannels==3) then
if(customDimension==1) then
[val1 ind1] = min(image2(1),'r');
[val2 ind2] = min(image2(2),'r');
[val3 ind3] = min(image2(3),'r');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
elseif(customDimension==2) then
[val1 ind1] = min(image2(1),'c');
[val2 ind2] = min(image2(2),'c');
[val3 ind3] = min(image2(3),'c');
val(:,:,1) = val1;
val(:,:,2) = val2;
val(:,:,3) = val3;
ind(:,:,1) = ind1;
ind(:,:,2) = ind2;
ind(:,:,3) = ind3;
end
end
end
if (~strcmpi(valueOutputPort,'true') & ~strcmpi(indexOutputPort,'true')) then
varargout = list(val,ind);
elseif (~strcmpi(valueOutputPort,'true') & ~strcmpi(indexOutputPort,'false')) then
varargout = val
elseif (~strcmpi(indexOutputPort,'true') & ~strcmpi(valueOutputPort,'false')) then
varargout = ind
end
endfunction
|
78d63f8a261bca7e9a2c5f33419a91219e06f4e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH5/EX5.17/Ex5_17.sce | 7a56731f46be40e087734e4691f2fd75febe8aa7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,180 | sce | Ex5_17.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 5 Example 17")
Q12=1000;//heat added during process 1-2 in KJ
Q34=800;//heat added during process 3-4 in KJ
T1=500;//operating temperature for process 1-2
T3=400;//operating temperature for process 3-4
T5=300;//operating temperature for process 5-6
T2=T1;//isothermal process
T4=T3;//isothermal process
T6=T5;//isothermal process
disp("total heat added(Q)in KJ")
disp("Q=Q12+Q34")
Q=Q12+Q34
disp("for heat addition process 1-2")
disp("Q12=T1*(s2-s1)")
disp("deltaS=s2-s1=Q12/T1 in KJ/K")
deltaS=Q12/T1
disp("or heat addition process 3-4")
disp("Q34=T3*(s4-s3)")
disp("deltaS=s4-s3=Q34/T3 in KJ/K")
deltaS=Q34/T3
disp("or heat rejected in process 5-6(Q56)in KJ")
disp("Q56=T5*(s5-s6)=T5*((s2-s1)+(s4-s3))=T5*(deltaS+deltaS)")
Q56=T5*(deltaS+deltaS)
disp("net work done=net heat(W_net)in KJ")
disp("W_net=(Q12+Q34)-Q56")
W_net=(Q12+Q34)-Q56
disp("thermal efficiency of cycle(n)=W_net/Q")
n=W_net/Q
disp("or n=n*100 %")
n=n*100
disp("so work done=600 KJ and thermal efficiency=33.33 %")
|
18b9bc9c9c49d214c69d1a640bc83f85f64fc68d | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH14/EX14.4/14_4.sce | ee7ec92d36334c000cf068ce03fbc9bb97126bdb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 655 | sce | 14_4.sce | h3 = 882; h2 = 1034;
h6 = 998; h1 = 1008;
v1 = 0.084;
h4 = h3-h1+h6; h5 = h4;
t4 = 25+273;
disp("kJ/kg",h6-h5,"Refrigeration effect is")
m = 10;
w = (m*14000)/((h6-h5)*3600); // in kg/s
disp("kg/s",w,"Refrigerant flow rate is")
v1 = 0.084;
VFR = w*3600*v1; // in kg/h
ve = 0.8; // volumetric efficiency
CD = VFR/(ve*60); // in m3/min
N = 900;
n = 2;
D = ((CD*4)/(%pi*1.1*N*n))^(1/3); // L = 1.1D L = length D = diameter
L = 1.1*D;
disp("cm",D*100,"Diameter of cylinder is")
disp("cm",L*100,"Length of cylinder is")
COP = (h6-h5)/(h2-h1);
PI = w*(h2-h1);
disp("kW",PI,"Power required to drive the compresor is")
disp(COP,"COP is")
|
0e8416da373704c57b5a510db0c5ecdaca131c33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH5/EX5.4/5_4.sci | 03ea4b0592bda67c574a767eba0ea9a397ad4369 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,006 | sci | 5_4.sci | //5.4
clc;
To=1/2000;
T=1/50;
//Rn=1/(1+n^2*(To/T)^2)
R1=1/(1+1^2*(To/T)^2);
R3=1/(1+3^2*(To/T)^2);
R5=1/(1+5^2*(To/T)^2);
R7=1/(1+7^2*(To/T)^2);
R11=1/(1+11^2*(To/T)^2);
R13=1/(1+13^2*(To/T)^2);
PE3=(R3-1/1)*100;
printf("Percentage error for the production of 3rd harmonics=%.2f",PE3)
PE5=(R5-1/1)*100;
printf("\nPercentage error for the production of 5th harmonics=%.2f",PE5)
PE7=(R7-1/1)*100;
printf("\nPercentage error for the production of 7th harmonics=%.2f",PE7)
PE11=(R11-1/1)*100;
printf("\nPercentage error for the production of 11th harmonics=%.2f",PE11)
PE13=(R13-1/1)*100;
printf("\nPercentage error for the production of 13th harmonics=%.2f",PE13)
//displacement of nth harmonic alpha=atan2*n/((T/To)-n^2*(To/T))
alpha_1=atand(2*1/((T/To)-(1^2*(To/T))));
alpha_13=(atand(2*13/((T/To)-(13^2*(To/T)))));
alpha_1_equivalent_13=13*alpha_1;
phase_displacement_13=alpha_13-alpha_1_equivalent_13;
printf("\n Displacement of 13th harmonic=%.2f degree",phase_displacement_13) |
b4d1ddfe3bb4a25ee3c95a19758bae240674c47e | 449d555969bfd7befe906877abab098c6e63a0e8 | /854/CH9/EX9.4/Example9_4.sce | 8487ac2d381728f6fed9de17721a7eeada1fdc76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,584 | sce | Example9_4.sce | //clear//
//Caption: Program to find the torque and force acting on each side of planar loop
//Example9.4
//page 271
clc;
ax = sym('ax');
ay = sym('ay');
az = sym('az');
I = 4e-03; //current in Amps
B = [0,-0.6,0.8]; //Magentic Field acting on current loop in Tesla
L1 = [1,0,0]; //length along x-axis
L2 = [0,2,0]; //length along y-axis
F1 = I*cross_product(L1,B);
F3 = -F1;
F2 = I*cross_product(L2,B);
F4 = -F2;
R1 = [0,-1,0]; //distance from center of loop for side1
R2 = [0.5,0,0]; //distance from center of loop for side2
R3 = [0,1,0]; //distance from center of loop for side3
R4 = [-0.5,0,0];//distance from center of loop for side4
T1 = cross_product(R1,F1);
T2 = cross_product(R2,F2);
T3 = cross_product(R3,F3);
T4 = cross_product(R4,F4);
T = T1+T2+T3+T4;
Tx = float(T(1)*1e03);
disp(F1,'F1 =')
disp(F2,'F2 =')
disp(F3,'F3 =')
disp(F4,'F4 =')
disp(T1,'T1 =')
disp(T2,'T2 =')
disp(T3,'T3 =')
disp(T4,'T4 =')
disp(Tx*ax,'Total torque acting on the rectangular planar loop in milli N/m T =')
//Result
// F1 =
// 0.
// - 0.0032
// - 0.0024
// F2 =
// 0.0064
// 0.
// 0.
// F3 =
// 0.
// 0.0032
// 0.0024
// F4 =
// - 0.0064
// 0.
// 0.
// T1 =
// 0.0024
// 0.
// 0.
// T2 =
// 0.
// 0.
// 0.
// T3 =
// 0.0024
// 0.
// 0.
// T4 =
// 0.
// 0.
// 0.
// Total torque acting on the rectangular planar loop in milli N/m T = 4.8*ax
|
f1f6549af06f9dd46d7a42c2036ff4383409e2bf | bf63c70e054c641e89a6f7a4623a7634ce9a8a9d | /legacy/bofor_2005/test/ASS1.prev.tst | dd3d7aa2fa3056cb69ad4826067be68b997f605e | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | gfis/jextra | 9c8c030faf35f0834843ed8f07cc061ca9d65a64 | bdad8fd33fdf633cf2ff4c1879e1f61935c3d636 | refs/heads/master | 2022-03-13T21:31:56.132450 | 2022-02-12T21:27:40 | 2022-02-12T21:27:40 | 30,127,957 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 18,680 | tst | ASS1.prev.tst | UNDEF : @,@
ASSLOA END
---1 -ALONG : IN STATE 1 POSIT 1 NOT FOUND
---2 -HAPPEN: CANNOT ALLOCATE STRING, STRHIB=2, FSYM=2
---3 -EMITT : SYMBOL 3 IN STATE 3 NOT FOUND
---4 -PARSE : TEST-TRACE STATE=4, ITEM=4
---5 -SETALL: TOO MUCH SET-ELEMENTS, FSET=5, SETHIB=5
---6 -PREDEL: STATE 6 IS NOT A PREDECESSOR OF STATE 6
---7 -HAMAP : CANNOT ALLOCATE SYMBOL, SYMHIB=7, FSTR=7
---8 -SPEINS: CANNOT ALLOCATE SYMBOL, SYMHIB=8, FSTR=8
---9 -PARADD: MORE THAN 9 PARAMETERS 9
---10 -DELTA : INVALID MEMBER AT POSITION 10, 10
---11 -PREINS: CANNOT ALLOCATE PREDECESSOR 11 OF STATE 11
---12 -STAALL: CANNOT ALLOCATE STATE 12 REACHED,SYMBOL 12
---13 -SETDEL: 13 NOT FOUND IN LIST, TAIL=13
---14 -UNDEF : 14,14
---15 -UNDEF : 15,15
---16 -PROCHA: CANNOT ALLOCATE PRODUCTION OF 16, FMEM=16
---17 -PROCHA: SAME PRODUCTION 17 FOR 17 IN THE GRAMMAR
---18 -INFLIS: CYCLE IN LIST, AHIB=18, FA=18
---19 -PROCHA: CANNOT ALLOCATE MEMBER, LEFT=19, FMEM=19'
---20 -SEPUSH: CANNOT APPEND,TAIL 20, VALUE 20
---21 -ITEALL: CANNOT ALLOCATE ITEM FOR STATE 21, ITEHIB=21
---22 -ITEINS: IN STATE 22 CANNOT INSERT POSIT 22
---23 -PREINS: STATE 23 IS ALREADY A PREDECESSOR OF STATE 23
---24 -RECEIV: 'ALONG' DOES NOT YIELD PRODUCTION 24, BUT 24
---25 -LITRAC: ELEMENT 25 ALREADY MARKED, TAIL=25
---26 -UNDEF : 26,26
---27 -STAFRE: STATE 27 NOT IN REACHING LIST OF SYMBOL 27
---28 -SPEINS: CANNOT ALLOCATE STRING, FSTR=28, STRHIB=28
---29 -SCAN : IN LINE 29, COLUMN 29 END OF FILE IN COMMENT
---30 -SCAN : IN LINE 30, COLUMN 30 END OF FILE IN STRING
---31 -UNDEF : 31,31
---32 -UNDEF : 32,32
---33 -LITRAC: 128 LOOP CYCLES, AHEAD=33, ATAIL=33
---34 -UNDEF : 34,34
---35 -UNDEF : 35,35
---36 -UNDEF : 36,36
---37 -UNDEF : 37,37
---38 -PARSE : STACK OVERFLOW IN STATE 38, SYMBOL 38
---39 -PARSE : IN STATE 39 NONTERMINAL 39 NOT FOUND
---40 -UNDEF : 40,40
---41 -UNDEF : 41,41
---42 -PARSER: PARSE COMPLETE. 42 ERRORS. 42
---43 -PREINS: IN STATE 43 PREDECESSOR 43 NOT FOUND
---44 -UNDEF : 44,44
---45 -UNDEF : 45,45
---46 -UNDEF : 46,46
---47 -UNDEF : 47,47
---48 -UNDEF : 48,48
---49 -UNDEF : 49,49
---50 -GRAMAR: INVALID SYMBOL 50: ''50''
---51 -UNDEF : 51,51
---52 -UNDEF : 52,52
---53 -UNDEF : 53,53
---54 -UNDEF : 54,54
---55 -GRAMAR: NO NUMBER AFTER ''->'', SYMBOL=55, ENTITY=55'
---56 -GRAMAR: CANNOT ALLOCATE MEMBER 56, SYMBOL=56
---57 -GRAMAR: CANNOT ALLOCATE MEMBER 57, SYMBOL=57
---58 -UNDEF : 58,58
---59 -UNDEF : 59,59
---60 -CLEARE: STATE 60 CONTAINS AT LEAST A 2ND REDUCTION 60
---61 -UNDEF : 61,61
---62 -SEPANT: 62 IS NO ATTRIBUTE OF RECORD 62
---63 -SEMARI: INVALID OPERATION 63 63
---64 -SEMARI: '*64' NOT ALLOWED HERE, REPLACED BY '*64'
---65 -UNDEF : 65,65
---66 -UNDEF : 66,66
---67 -UNDEF : 67,67
---68 -UNDEF : 68,68
---69 -UNDEF : 69,69
---70 -UNDEF : 70,70
---71 -UNDEF : 71,71
---72 -UNDEF : 72,72
---73 -UNDEF : 73,73
---74 -UNDEF : 74,74
---75 -UNDEF : 75,75
---76 -UNDEF : 76,76
---77 -UNDEF : 77,77
---78 -UNDEF : 78,78
---79 -UNDEF : 79,79
---80 -UNDEF : 80,80
---81 -UNDEF : 81,81
---82 -UNDEF : 82,82
---83 -UNDEF : 83,83
---84 -UNDEF : 84,84
---85 -UNDEF : 85,85
---86 -UNDEF : 86,86
---87 -UNDEF : 87,87
---88 -UNDEF : 88,88
---89 -UNDEF : 89,89
---90 -UNDEF : 90,90
---91 -SEMWRI: INCREASE 'SEMHIB' (=91) 91
---92 -SEMA30: COMBINED SYMBOL 92 MUST NOT BE AN ACCU WITH INCARNATION 92
---93 -SEMA24: RE-INPUT NOT ALLOWED AT POSITION 93 93
---94 -SEMA27: ATTRIBUTE 94 NOT ALLOWED HERE 94
---95 -SEMA13: RE-INPUT NOT ALLOWED AT POSITION 95 95
---96 -SEMA14: RE-INPUT NOT ALLOWED AT POSITION 96 96
---97 -SEMGET: SON NUMBER 97 IS NOT AN IDENTIFIER/NUMBER/STRING97
---98 -UNDEF : 98,98
---99 -UNDEF : 99,99
---100-UNDEF : 100,100
---101-UNDEF : 101,101
---102-UNDEF : 102,102
---103-UNDEF : 103,103
---104-UNDEF : 104,104
---105-UNDEF : 105,105
---106-UNDEF : 106,106
---107-UNDEF : 107,107
---108-UNDEF : 108,108
---109-UNDEF : 109,109
---110-UNDEF : 110,110
---111-UNDEF : 111,111
---112-UNDEF : 112,112
---113-UNDEF : 113,113
---114-UNDEF : 114,114
---115-UNDEF : 115,115
---116-UNDEF : 116,116
---117-UNDEF : 117,117
---118-UNDEF : 118,118
---119-UNDEF : 119,119
---120-UNDEF : 120,120
---121-UNDEF : 121,121
---122-UNDEF : 122,122
---123-UNDEF : 123,123
---124-UNDEF : 124,124
---125-TRANS : ASSIGNMENT TO NON-EXISTING ACCU-INCARNATION 125:125
---126-TRANS-ATIN: 126 HAS NO ATTRIBUTE 126
---127-TRANS : EXTRA-ERROR, 'ACIN' IN PRODUCTION 127, POSITION 127
---128-TRANS-SYAT: 128 HAS NO ATTRIBUTE 128
---129-TRAPIM: INCREASE 'TRAHIB' (=129), FTRA = 129
---130-CLEARE: 130 REDUCE- AND 130 SHIFT-ITEMS DELETED
---131-TRANS : 'ACCU' IN PRODUCTION 131, POSITION 131
---132-TRANS : 'ATTR' IN PRODUCTION 132, POSITION 132
---133-TRATTR: EMPTY SON 133, ATTRIBUTE 133 IS UNDEFINED
---134-TRATTR: 134 IS NO ENTITY, ATTRIBUTE 134 IS UNDEFINED
---135-SEMARI: ONLY ONE OPERAND FOR DYADIC OPERATION 135 135
---136-PUTCON: CONFLICT FOR 136 IN STATE 136
---137-UNDEF : 137,137
---138-TRADO : LOOP-CHECK, ACT = 138, FTRA = 138
---139-SEPANT: INVALID ACTION NUMBER 139 139
---140-STASYM: CANNOT FIND SYMBOL FOR STATE 140 140
---141-TARGET: ANCHOR NOT FOUND, ACT=141, FSTK=141
---142-UNDEF : 142,142
---143-UNDEF : 143,143
---144-UNDEF : 144,144
---145-LINEXT: COLUMNS 1-5 OF CONTINUATION LINE NOT BLANK 145 145
---146-LINEXT: MORE THAN 146 CONTINUATION LINES 146
---147-TREXPA: INCREASE STKHIB (=147)147
---148-PARSER: SYNTACTICAL ERROR BETWEEN 148 AND 148
---149-ITEMA8-PAG: INCREASE DIRHIB. I2=149, STATE=149
---150-ITEMA1-PAG: INCREASE ITEHIB. STATE=150, FITE=150
---151-ITEMA1-PAG: TEST-INFORMATION: STATE 151 HAS 151 ITEMS
---152-ITEMA2: TEST-INFORMATION: STATE=152, STAITE()=152
---153-DIRWRI: TEST-INFORMATION: LOW=153, HIGH=153
---154-PARSER: TEST PANIC-MODE FSTK=154, STATE=154
---155-DIRECT: FDIR=155, LENGTH=155
---156-UNDEF : 156,156
---157-UNDEF : 157,157
---158-ITEMA8-PAG: TEST-INFORMATION: STATE 158 HAS 158 ITEMS
---159-ITEMA9: TEST-INFORMATION: STATE=159, STAITE()=159
---160-UNDEF : 160,160
---161-ITEMA1-NOPAG: TEST-INFORMATION: STATE 161 HAS 161 ITEMS
---162-UNDEF : 162,162
---163-UNDEF : 163,163
---164-UNDEF : 164,164
---165-UNDEF : 165,165
---166-UNDEF : 166,166
---167-UNDEF : 167,167
---168-ITEMA8-NOPAG: TEST-INFORMATION: STATE 168 HAS 168 ITEMS
---169-UNDEF : 169,169
---170-UNDEF : 170,170
---171-UNDEF : 171,171
---172-UNDEF : 172,172
---173-UNDEF : 173,173
---174-UNDEF : 174,174
---175-SEMA08: CANNOT ALLOCATE MEMBER, FMEM=175, ENTITY=175
---176-OUTPRO: LOOP-CHECK, I=176, NUC(I)=176
---177-UNDEF : 177,177
---178-UNDEF : 178,178
---179-UNDEF : 179,179
---180-UNDEF : 180,180
---181-UNDEF : 181,181
---182-UNDEF : 182,182
---183-UNDEF : 183,183
---184-UNDEF : 184,184
---185-PUTCON: FOLLOWING CONFLICTS WERE DETECTED: 185 185
---186-UNDEF : 186,186
---187-UNDEF : 187,187
---188-UNDEF : 188,188
---189-UNDEF : 189,189
---190-UNDEF : 190,190
---191-UNDEF : 191,191
---192-UNDEF : 192,192
---193-UNDEF : 193,193
---194-UNDEF : 194,194
---195-195 PUTCON: INCREASE PREHIB (=@)
---196-PUTCON: FOLLOWING TERMINALS CONTAIN UNDERSCORES: 196 196
---197-PUTCON: CONFLICT FOR SYMBOL 197:197
---198-PUTCON: FOLLOWING SYMBOLS WERE NOT REACHED 198 198
---199-RECEXP 199,199
---200-RECEXP 200,200
|
8f9b27f67b5ff8d246a9be4498eed670a4a237a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH18/EX18.7/Ex18_7.sce | 96d22ac6760475626b8a6cfb31a92e8c72bb8eaa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 184 | sce | Ex18_7.sce | //chapter18
//example18.7
//page406
Vcc=50 // V
Np=5
Ns=1
R=50 // ohm
R_ac=(Np/Ns)^2*R
Po=Vcc^2/R_ac
printf("ac load = %.3f ohm \n",R_ac)
printf("maximum load power = %.3f W \n",Po)
|
b90f62742f31642a1cc418b532af4e01d944961b | 717ddeb7e700373742c617a95e25a2376565112c | /1340/CH4/EX4.4/4_4.sce | a2492327fd879f0dedc6d9a32cf48282a11e4591 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 379 | sce | 4_4.sce | clc;
s =%s;
for k = 12:4:20
G = syslin('c',k/(s^2+8*s+k));
disp(G);
den = denom(G);
coef = coeff(den);
Wn = sqrt(coef(1,1));disp(Wn,"Natural Frequency = ");
zeta = coef(1,2)/(2*Wn);disp(zeta,"Daming ratio = ");
if(zeta==1)
printf("system is critically damped");
else if(zeta>1)
printf("overdamped");
else printf("underdamped");
end
end
end |
a035bb488afa0c23f726cdcd45443895504fa61b | 1489f5f3f467ff75c3223c5c1defb60ccb55df3d | /tests/test_btree_3_a.tst | 396e7836349c02aff608e1b31d7ea4891a2fe023 | [
"MIT"
] | permissive | ciyam/ciyam | 8e078673340b43f04e7b0d6ac81740b6cf3d78d0 | 935df95387fb140487d2e0053fabf612b0d3f9e2 | refs/heads/master | 2023-08-31T11:03:25.835641 | 2023-08-31T04:31:22 | 2023-08-31T04:31:22 | 3,124,021 | 18 | 16 | null | 2017-01-28T16:22:57 | 2012-01-07T10:55:14 | C++ | UTF-8 | Scilab | false | false | 320 | tst | test_btree_3_a.tst | Total index levels = 0
Total number of nodes = 2
Total number of items = 5
Dumping level #0
[Node 0] flags = 3, dge_link = -1
lft_link = -1, rgt_link = -1
Item #0, data = aaa, link = -1
Item #1, data = aaa, link = -1
Item #2, data = aaa, link = -1
Item #3, data = aaa, link = -1
Item #4, data = aaa, link = -1
|
05e35cc44f2eabfa515ab0c04ebe6172e3f46bca | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/Prism_channel_m6_dealiasing.tst | f7c4de48eed767ad5537dc2945ab50ccb111f641 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,023 | tst | Prism_channel_m6_dealiasing.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>3D channel flow, Prismatic elements, P=6</description>
<executable>IncNavierStokesSolver</executable>
<parameters>Prism_channel_m6_dealiasing.xml</parameters>
<files>
<file description="Session File">Prism_channel_m6_dealiasing.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">6.66372e-15</value>
<value variable="v" tolerance="1e-12">7.15702e-15</value>
<value variable="w" tolerance="1e-12">2.30265e-14</value>
<value variable="p" tolerance="1e-12">3.04193e-13</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">3.1256e-14</value>
<value variable="v" tolerance="1e-12">3.90951e-14</value>
<value variable="w" tolerance="1e-12">7.31359e-14</value>
<value variable="p" tolerance="2e-12">1.93734e-12</value>
</metric>
</metrics>
</test>
|
a19ff6903f3065edfc72fed244a73dde68ac864c | da5b40d917ec2982828bd9bdf06b18b7bf189f26 | /sim/cmd/test/hxthreesides.tst | 71c32297eeadaad00227631de0c5bafe035763c4 | [] | no_license | psy007/NNPC-CHEMICAL-SIM- | 4bddfc1012e0bc60c5ec6307149174bcd04398f9 | 8fb4c90180dc96be66f7ca05a30e59a8735fc072 | refs/heads/master | 2020-04-12T15:37:04.174834 | 2019-02-06T10:10:20 | 2019-02-06T10:10:20 | 162,587,144 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,400 | tst | hxthreesides.tst | # Heat exchanger test
units SI
$thermo = VirtualMaterials.Peng-Robinson
/ -> $thermo
thermo + WATER
# lets have some streams for this test
hotInlet = Stream.Stream_Material()
coldInlet = Stream.Stream_Material()
hotOutlet = Stream.Stream_Material()
coldOutlet = Stream.Stream_Material()
hotInlet2 = Stream.Stream_Material()
hotOutlet2 = Stream.Stream_Material()
cd /hotInlet.In
Fraction = 1.0
P = 101
MoleFlow = 800
cd /hotInlet2.In
Fraction = 1.0
P = 101
MoleFlow = 300
cd /coldInlet.In
Fraction = 1.0
#VapFrac = 0
P = 101
MoleFlow = 1000
cd /
exch = Heater.MultiSidedHeatExchangerOp()
exch.NumberSides = 3
cd exch
DeltaP0 = 0.0
DeltaP1 = 0.0
DeltaP2 = 0.0
cd /
coldInlet.Out -> exch.In0
exch.Out0 -> coldOutlet.In
hotInlet.Out -> exch.In1
exch.Out1 -> hotOutlet.In
hotInlet2.Out -> exch.In2
exch.Out2 -> hotOutlet2.In
exch.IsCounterCurrent1 = 0
exch.IsCounterCurrent2 = 1
#spec UA and coldInlet.T
exch.UA0_1 = 8288.42280702 #Cold with the first hot side
exch.UA0_2 = 5000.42280702 #Cold with the second hot side
exch.UA1_2 = 0.0 #Ignore heat transfer between both hot sides
hotInlet.In.T = 573.15 K
hotInlet2.In.T = 500 K
coldInlet.In.T = 413.15 K
units sim42
coldInlet.In
coldOutlet.In
hotInlet.In
hotOutlet.In
hotInlet2.In
hotOutlet2.In
exch.UA0_1
copy /
paste /
cd /RootClone
coldInlet.In
coldOutlet.In
hotInlet.In
hotOutlet.In
hotInlet2.In
hotOutlet2.In
exch.UA0_1
|
837d146eafb1519d1cf9c52e4331bfd764490353 | 8d952a06e3809a06825a3be7b067201f3652f16a | /debug/bin/BackDoor/sci_gateway/c/loader.sce | 29465d084ffa9c6581f74d3dd70e090460487f35 | [
"GPL-3.0-only",
"MIT"
] | permissive | andyLaurito92/haikunet | b771eaf6bd91292485f0a49698ce123b9308d676 | db44623b248c56735c28a5f589c3239dc7e9855e | refs/heads/master | 2021-06-14T12:38:38.996450 | 2021-05-05T18:26:02 | 2021-05-05T18:26:02 | 75,564,849 | 2 | 1 | MIT | 2021-05-05T18:26:26 | 2016-12-04T21:12:31 | C++ | UTF-8 | Scilab | false | false | 847 | sce | loader.sce | // This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
libbackdoor_c_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('libbackdoor_c');
if bOK then
ulink(ilib);
end
//
link(libbackdoor_c_path + filesep() + '../../src/c/libbackdoor' + getdynlibext());
list_functions = [ 'openBackDoor';
'closeBackDoor';
];
addinter(libbackdoor_c_path + filesep() + 'libbackdoor_c' + getdynlibext(), 'libbackdoor_c', list_functions);
// remove temp. variables on stack
clear libbackdoor_c_path;
clear bOK;
clear ilib;
clear list_functions;
// ----------------------------------------------------------------------------
|
2ebeca0433a77eeb26d2fa3be526c44c6a81f65d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH8/EX8.12/Example_8_12.sce | 20219bac11b6cc198e4303cdefaae2cbce57f365 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 698 | sce | Example_8_12.sce | //Example 8.12
clear;
clc;
//Given
T1=1225;//initial temperature in K
T2=1200;//final temperature in K
R=8.314;//gas constant in J K^-1 mol^-1
delHo=216.7;//standard enthalpy of the reaction in kJ
K1=0.00328;//equillibrium constant at temperature T1
//To determine equillibrium constant,delSo and delGo at temperature T2
k=(log(K1)-((1000*delHo/R)*((1/T2)-(1/T1))));//k=log(K2)
K2=exp(k);//equillibrium constant at T2
delGo=R*T2*k/1000;//delGo in kJ mol^-1
delSo=1000*((delHo+delGo)/T2);//delSo in J mol^-1 K^-1
mprintf('equillibrium constant at 1200 K = %f',K2);
mprintf('\n delGo at 1200 K = %f kJ mol^-1',delGo);
mprintf('\n delSo at 1200 K = %f J K^-1 mol^-1',delSo);
//end |
7b6aa20546f3659296b6992e1baefdcecc8a40d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH13/EX13.4/exm13_4.sci | 85044f29fcb366b53be85c2cf9ec9381e463c18d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,138 | sci | exm13_4.sci | // Example 13.4
//Write a function to insert a given item before a specified node known as
//key node.
funcprot(0);
//Create the list
function [List]=create(list1)
global List;
// Create the current node
list1.number=input("Input a number(Type -999 to end); ");
if list1.number==-999 then
list1.next=NULL;
list1.add=NULL;
else
list1.add=list1.add+1;
list1.next=NULL;
List(i)=list1;
if(i==1) then
else
List(i-1).next=List(i).add
end
i=i+1;
create(list1);// Creates the next node
end
return;
endfunction
//Function to insert the item before the specified key node
function [List]=insert(list1)
x=input("Value of new item?");
printf("Value of key item?(Before which you want to insert?)");
key=scanf("%d");
while list1(i)(1).next~=NULL
i=i+1;
end
j=i+1;
//Find the key node and insert the new node
while(list1(i)(1).number~=key)
list1(i+1)(1).number=list1(i)(1).number;
i=i-1;
if(i==0) then
printf("Item not Found");
return;
end
end
list1(i+1)(1).number=list1(i)(1).number
list1(i)(1).number=x; //Inset the new node before the key node
list1(j)(1).add=j;
list1(j)(1).next=NULL;
list1(j-1)(1).next=list1(j)(1).add;
List=list1;
endfunction
//Function to print the numbers of list
function []=print1(list1)
if list1(i)(1).next~=NULL then
printf("%d--->",list1(i)(1).number);//Print current item
i=i+1;
if list1(i)(1).next==NULL then
printf("%d",list1(i)(1).number);
end
print1(list1);//Move to next item
end
return;
endfunction
global List;
NULL=0;i=1;
//Create the structure i.e. node
node=struct('number',0,'add',0,'next',0);
head=node;
//Calling the functions
List=create(head);
printf("\nOriginal List: ");
print1(List);
List=insert(List);
printf("\nNew List: ");
print1(List); |
cd78c43c4488be7a51021bf4da33e2bae6e0f274 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH6/EX6.18/6_18.sce | 8516978b702a6e66eddd313da062a3bbd60d84c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 389 | sce | 6_18.sce | clear;
clc;
Zin=36;Zt=500;f=40;x=0.97
Zo=sqrt(Zin*Zt);
A=10^(Zo/276);
lo=300/f;
l1=lo*x/4;
printf("-The characteristic impedance of the transmission line = %f ohms\n",round(Zo));
printf("-The spacing between the conductors shud be %f times the radius of the conductor\n",round(A));
printf("-The length of the quarter wavelength transformer must be %f metres",round(l1*100)/100);
|
581335a3500a2b85f634ce4fe81a89f0e8ff16d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH13/EX13.14/example13_14.sce | 4333b18387653c86a1982b27dde278e372f1d9e9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 988 | sce | example13_14.sce | clear;
clc;
//Example13.14[Radiation Heat Transfer in a Cylindrical Furnace]
//Given:-
Ts=600;//Wall Temperature[K]
d=5,H=5;//Diameter and Height of cylindrical furnace
Tg=1200,eg=0.45;//Average gas temperature and average emissivity of the combustion gases
Pc=0.10,L=3,Pw=0.16;//From Previous examples
//Solution:-
x=Pc*L*Ts/Tg;//[m.atm]
y=Pw*L*Ts/Tg;//[m.atm]
ec_1=0.11,ew_1=0.25;//Emissivities of CO2 and H2O corresponding to 600K and 1atm
Cc=1.1,Cw=1.4;//Correction Factors
a_c=Cc*((Tg/Ts)^(0.65))*(ec_1);
a_w=Cw*((Tg/Ts)^(0.45))*ew_1;
disp(a_w,"and",a_c,"The absorptivities of CO2 and H2O are")
del_a=0.027;
a_g=a_c+a_w-del_a;
disp(a_g,"The absorptivity of the combustion gases is")
As=(%pi*d*H)+(%pi*(d^2)/2);//[m^2]
disp("m^2",round(As),"the surface area of the cylindrical surface is")
Q_net=round(As)*(5.67*10^(-8))*((eg*(Tg^4))-(a_g*(Ts^4)));
disp("W",Q_net,"The net rate of radiation heat transfer from the combustion gases to walls of the furnace is") |
c48c8b5980858740a47c15eaf2b4350c958fa6f1 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/Couette_FRDG_LFRDG_adiabatic.tst | 17222e83546358a1557c241c759eea3b3c52e770 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,058 | tst | Couette_FRDG_LFRDG_adiabatic.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>NS, Couette flow, mixed bcs, FRDG advection and LFRDG diffusion, MODIFIED</description>
<executable>CompressibleFlowSolver</executable>
<parameters>Couette_FRDG_LFRDG_adiabatic.xml</parameters>
<files>
<file description="Session File">Couette_FRDG_LFRDG_adiabatic.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-8">0.0926743</value>
<value variable="rhou" tolerance="1e-8">64.2553</value>
<value variable="rhov" tolerance="1e-8">0.210065</value>
<value variable="E" tolerance="1e-8">4937.29</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-8">0.0753016</value>
<value variable="rhou" tolerance="1e-8">70.0111</value>
<value variable="rhov" tolerance="2e-8">0.358313</value>
<value variable="E" tolerance="1e-8">4483.59</value>
</metric>
</metrics>
</test>
|
07ce129afa443218fed613dd79310f2bbcb491c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH4/EX4.7/ex4_7.sce | 0e4bce115adb91cf717781382e444bf29fd0d6c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | ex4_7.sce | //Find the inductance of a 3 phase line(triangle)
clear;
clc;
//soltion
//given
r=1;//cm//radius of the conductor
re=r*exp(-1/4);
d1=600;//cm//spacing of the triangular shaped system
d2=700;//cm//spacing of the triangular shaped system
d3=800;//cm//spacing of the triangular shaped system
L=0.2*log(((d1*d2*d3)^(1/3))/re);
printf("Loop Inductance of line= %.4f mH/km\n",L);
|
6cc16f002abe9ffa247d33a0be90248d3981f001 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1026/CH6/EX6.11/Example6_11.sce | 5f497ebcc751a088306a9f472f0ae3d08c6c8a3e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 340 | sce | Example6_11.sce | //chapter6,Example6_11,pg 124
ni=2.5*10^13
e=1.6*10^-19
un=3900
up=1900
sigin=ni*e*(un+up)//intrinsic conductivity
//1 donor atom/10^8 Ge atom dropped
rhoGe=4.42*10^22//no. of Ge atom/cc
Nd=rhoGe/10^8
sigex=Nd*e*un//extrinsic conductivity
printf("extrinsic conductivity\n")
printf("sigex=%.4f ohm cm",sigex) |
4a1537033666795360e0fc454910f0e9781bb5f1 | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/gr_harm/out/condor/myscijob.sce | 271082d827ca62f4a0fd1169675e5221e0c73e14 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 176 | sce | myscijob.sce | //function myscijob()
a=rand(5,5);
b=rand(5,1);
A=sparse(a);
[h,rk]=lufact(A);
x=lusolve(h,b);
res=a*x-b
fprintfMat('myscitest.dat',x);
exit();
//endfunction
|
46720ceb6cee1b786ac223da69dd08f5ed6087ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH24/EX24.01/24_01.sce | da07439139798268cdf02d185c8e36ef24658aae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,381 | sce | 24_01.sce | //Problem 24.01: Determine the values of the resistance and the series-connected inductance or capacitance for each of the following impedances:(a)(12 + i5)ohm (b)-i40 ohm (c)30/_60° ohm (d)2.20 x 10^6 /_-30° ohm. Assume for each a frequency of 50 Hz.
//initializing the variables:
z1 = 12 + %i*5;
z2 = -40*%i;
r3 = 30;
theta3 = 60; // in degrees
r4 = 2.20E6;
theta4 = -30; // in degrees
f = 50; // in Hz
//calculation:
//for an R–L series circuit, impedance
// Z = R + iXL
Ra = real(z1)
XLa = imag(z1)
La = XLa/(2*%pi*f)
//for a purely capacitive circuit, impedance Z = -iXc
Xcb = abs(imag(z2))
Cb = 1/(2*%pi*f*Xcb)
z3 = r3*cos(theta3*%pi/180) + %i*(r3*sin(theta3*%pi/180))
Rc = real(z3)
XLc = imag(z3)
Lc = XLc/(2*%pi*f)
z4 = r4*cos(theta4*%pi/180) + %i*(r4*sin(theta4*%pi/180))
Rd = real(z4)
Xcd = abs(imag(z4))
Cd = 1/(2*%pi*f*Xcd)
printf("\n\n Result \n\n")
printf("\n (a)an impedance (12 + i5)ohm represents a resistance of %.0f ohm in series with an inductance of %.2E", Ra,La)
printf("\n (b)an impedance -i40 ohm represents a pure capacitor of capacitance %.2E", Cb)
printf("\n (c)an impedance 30/_60° ohm represents a resistance of %.0f ohm in series with an inductance of %.2E", Rc,Lc)
printf("\n (d)an impedance 2.20 x 10^6 /_-30° ohm represents a resistance of %.2E ohm in series with a capacitor of capacitance %.2E",Rd, Cd) |
ce3ddc2ffcbbe40cbed5569949218c4d42a7bb3a | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/Morisita_RP-001.tst | be5d404e868fc6702ab8a885e35bb0e8f29d3d33 | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 24 | tst | Morisita_RP-001.tst | ../inputs/pops-1x1-1.ssv |
18f274c3760fa6bfbe4bfad79260c815ac1c1484 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH8/EX8.9/ex8_9.sce | 979f6f48f1185a6aa13135c2f2d04de76cd0a293 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 205 | sce | ex8_9.sce | // Exa 8.9
clc;
clear;
close;
// Given data
C = 0.82;// in kg
H2 = .12;// in kg
O2 = 0.02;// in kg
a = C/12;
b = H2/2;
y = (32*(a+(0.5*b))-O2)/0.23;
disp(y,"Minimum quantity of air in kg is");
|
8470bfd8b37ce8f19fa527ad58acb8099020a694 | d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3 | /r38/packages/defint/defint.tst | f5c151e87d1920dea1418d64fc9f1e46d3dfbc86 | [
"BSD-3-Clause"
] | permissive | reduce-algebra/reduce-historical | 8220e211b116e0e01ff1a38f51917cac9db6069f | e014152729c4d62bb1ce4f5c311a027042a5495a | refs/heads/master | 2023-04-10T22:54:00.796596 | 2021-04-16T08:52:19 | 2021-04-16T08:52:19 | 343,245,204 | 7 | 1 | NOASSERTION | 2021-04-16T08:53:31 | 2021-03-01T00:15:22 | TeX | UTF-8 | Scilab | false | false | 5,129 | tst | defint.tst | % Test cases for definite integration.
int(x/(x+2),x,2,6);
int(sin x,x,0,pi/2);
int(log(x),x,1,5);
int((1+x**2/p**2)**(1/2),x,0,p);
int(x**9+y+y**x+x,x,0,2);
% Collected by Kerry Gaskell, ZIB, 1993/94.
int(x^2*log(1+x),x,0,infinity);
int(x*e^(-1/2x),x,0,infinity);
int(x/4*e^(-1/2x),x,0,infinity);
int(sqrt(2)*x^(1/2)*e^(-1/2x),x,0,infinity);
int(x^(3/2)*e^(-x),x,0,infinity);
int(sqrt(pi)*x^(3/2)*e^(-x),x,0,infinity);
int(x*log(1+1/x),x,0,infinity);
int(si(1/x),x,0,infinity);
int(cos(1/x),x,0,infinity);
int(sin(x^2),x,0,infinity);
int(sin(x^(3/2)),x,0,infinity);
int(besselj(2,x),x,0,infinity);
int(besselj(2,y^(5/4)),y,0,infinity);
int(x^(-1)*besselj(2,sqrt(x)),x,0,infinity);
int(bessely(2,x),x,0,infinity);
int(x*besseli(2,x),x,0,infinity);
int(besselk(0,x),x,0,infinity);
int(x^2*besselk(2,x),x,0,infinity);
int(sinh(x),x,0,infinity);
int(cosh(2*x),x,0,infinity);
int(-3*ei(-x),x,0,infinity);
int(x*shi(x),x,0,infinity);
int(x*fresnel_c(x),x,0,infinity);
int(x^3*e^(-2*x),x,0,infinity);
int(x^(-1)*sin(x/3),x,0,infinity);
int(x^(-1/2)*sin(x),x,0,infinity);
int(2*x^(-1/2)*cos(x),x,0,infinity);
int(sin x + cos x,x,0,infinity);
int(ei(-x) + sin(x^2),x,0,infinity);
int(x^(-1)*(sin (-2*x) + sin(x^2)),x,0,infinity);
int(x^(-1)*(cos(x/2) - cos(x/3)),x,0,infinity);
int(x^(-1)*(cos x - cos(2*x)),x,0,infinity);
int(x^(-1)*(cos(x) - cos(x)),x,0,infinity);
int(2,x,0,infinity);
int(cos(x)*si(x),x,0,infinity);
int(2*cos(x)*e^(-x),x,0,infinity);
int(x/2*cos(x)*e^(-x),x,0,infinity);
int(x^2/4*cos(x)*e^(-2*x),x,0,infinity);
int(1/(2*x)*sin(x)*e^(-3*x),x,0,infinity);
int(3/x^2*sin(x)*e^(-x),x,0,infinity);
int(cos(sqrt(x))*e^(-x),x,0,infinity);
int(e^(-x)*besselj(2,x),x,0,infinity);
int(cos(x^2)*e^(-x),x,0,infinity);
int(erf(x)*e^(-x),x,0,infinity);
int(besseli(2,x)*e^(-x),x,0,infinity);
int(e^(-x^2)*cos(x),x,0,infinity);
int(x^(-1)*sin(x)*cos(x),x,0,infinity);
int(x^(-1)*sin(x)*cos(2*x),x,0,infinity);
int(x^(-1)*sin(x)*cos(x/2),x,0,infinity);
int(e^x,x,0,infinity);
int(e^(-x^2 - x),x,0,infinity);
int(e^(-(x+x^2+1)),x,0,infinity);
int(e^(-(x+1/x)^2),x,0,infinity);
int(e^(-(x+2))*sin(x),x,0,infinity);
int(-3*x*e^(-1/2x),x,0,infinity);
int(x*e^(-1/2*x^2),x,0,infinity);
int(x^2*besselj(2,x),x,0,infinity);
int(x*besselk(1,x),x,0,infinity);
int(-3*ei(-x),x,0,infinity);
int(x^3*e^(-2*x^2),x,0,infinity);
int(sqrt(2)/2*x^(-3/2)*sin x,x,0,infinity);
int(x^(-1)*(sin(-2*x) + sin(x^2)),x,0,infinity);
int(x^(-1)*(cos(3*x) - cos(x/2)),x,0,infinity);
int(x^(-1)*(sin x - sin(2*x)),x,0,infinity);
int(1/x*sin(x)*e^(-3*x),x,0,infinity);
int(sin(x)*e^(-x),x,0,infinity);
int(x^(-1)*sin(x)*cos(x),x,0,infinity);
int(e^(1-x)*e^(2-x^2),x,0,infinity);
int(e^(-1/2x),x,0,y);
int(si(x),x,0,y);
int(besselj(2,x^(1/4)),x,0,y);
int(x*besseli(2,x),x,0,y);
int(x^(3/2)*e^(-x),x,0,y);
int(sinh(x),x,0,y);
int(cosh(2*x),x,0,y);
int(x*shi(x),x,0,y);
int(x^2*e^(-x^2),x,0,y);
int(x^(-1)/2*sin(x),x,0,y);
int(sin x + cos x,x,0,y);
int(sin x + sin(-2*x),x,0,y);
int(sin(n*x),x,0,y);
int(heaviside(x-1),x,0,y);
% Tests of transformations defined in defint package.
laplace_transform(1,x);
laplace_transform(x,x);
laplace_transform(x^a/factorial(a),x);
laplace_transform(x,e^(-a*x),x);
laplace_transform(x^k,e^(-a*x),x);
laplace_transform(cosh(a*x),x);
laplace_transform(1/(2*a^3),sinh(a*x)-sin(a*x),x);
laplace_transform(1/(a^2),1-cos(a*x),x);
laplace_transform(1/(b^2-a^2),cos(a*x)-cos(b*x),x);
laplace_transform(besselj(0,2*sqrt(k*x)),x);
laplace_transform(Heaviside(x-1),x);
laplace_transform(1/x,sin(k*x),x);
laplace_transform(1/(k*sqrt(pi)),e^(-x^2/(4*k^2)),x);
laplace_transform(1/k,e^(-k^2/(4*x)),x);
laplace_transform(2/(sqrt(pi*x)),besselk(0,2*sqrt(2*k*x)),x);
hankel_transform(x,x);
Y_transform(x,x);
K_transform(x,x);
struveh_transform(x,x);
fourier_sin(e^(-x),x);
fourier_sin(sqrt(x),e^(-1/2*x),x);
fourier_sin(1/x,e^(-a*x),x);
fourier_sin(x^k,x);
fourier_sin(1/(b-a),(e^(-a*x)-e^(-b*x)),x);
fourier_sin(besselj(0,a*x),x);
fourier_sin(1/sqrt(pi*x),cos(2*sqrt(k*x)),x);
fourier_sin(1/(k*sqrt(pi)),e^(-x^2/(4*k^2)),x);
fourier_cos(e^(-1/2x),x);
fourier_cos(x,e^(-x),x);
fourier_cos(x,e^(-1/2*x^2),x);
fourier_cos(2*x^2,e^(-1/2x),x);
fourier_cos(x,e^(-a*x),x);
fourier_cos(x^n,e^(-a*x),x);
fourier_cos(1/x,sin(k*x),x);
fourier_cos(1/sqrt(pi*x),cos(2*sqrt(k*x)),x);
fourier_cos(1/(k*sqrt(pi)),e^(-x^2/(4*k^2)),x);
fourier_cos(1/(pi*x),sin(2*k*sqrt(x)),x);
fourier_cos(1/(sqrt(pi*x)),e^(-2*k*sqrt(x)),x);
laplace_transform(x^n/factorial(n)*e^(-a*x),x);
laplace_transform(1/(2*a^2)*(cosh(a*x)-cos(a*x)),x);
laplace_transform(k*a^k/x*besselj(k,a*x),x);
fourier_sin(1/x*e^(-3*x),x);
fourier_sin(1/(pi*x)*sin(2*k*sqrt(x)),x);
fourier_cos(x^n*e^(-a*x),x);
fourier_cos(1/(k*sqrt(pi))*e^(-x^2/(4*k^2)),x);
end;
|
fd7c318639c4bca03388f1f7b11712aa8a9786ea | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Circle Tracking 60 Seconds.sce | 56e18ec70b11d63331a8b3c95b727d8905c183e3 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 71,602 | sce | Circle Tracking 60 Seconds.sce | Name=Circle Tracking 60 Seconds
PlayerCharacters=Circle Tracking Player
BotCharacters=Circle Tracking Target.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Circle Tracking Player
AddedBots=Circle Tracking Target.bot;Circle Tracking Target.bot;Circle Tracking Target.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=circle_spawns.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.1
ScorePerKill=1000.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Tracking, Target-switching, MCA-WIP
WeaponHeroTag=Fully-auto
DifficultyTag=3
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Targets move in a circle.
GameVersion=2.0.1.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Circle Tracking Aimbot
MinReactionTime=0.01
MaxReactionTime=0.01
MinSelfMovementCorrectionTime=0.01
MaxSelfMovementCorrectionTime=0.01
FlickFOV=90.0
FlickSpeed=1.0
FlickError=0.0
TrackSpeed=1.1
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=-60.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=1.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Circle Tracking Target
DodgeProfileNames=Circle Tracking Dodging
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=60.0
DodgeProfileMinChangeTime=60.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Circle Tracking Aimbot;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Circle Tracking Target
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Circle Tracking Player
MaxHealth=100.0
WeaponProfileNames=Circle Tracking Fully-auto;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=0.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=15.0
BlockSpawnDistance=1024.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Circle Tracking Target
MaxHealth=180.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=256.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=0.0
AirControl=1.0
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Spheroid
MainBBHeight=16.0
MainBBRadius=8.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=16.0
ProjBBRadius=8.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=128.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=512.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=true
FlightObeysPitch=true
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Circle Tracking Dodging
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=false
ToggleForwardBack=false
MinLRTimeChange=100.0
MaxLRTimeChange=100.0
MinFBTimeChange=0.4
MaxFBTimeChange=0.7
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.1
BlockedMovementReactionMax=0.1
WaypointLogic=FollowAimAtWaypoint
WaypointTurnRate=100000.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=Circle Tracking Fully-auto
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=0.0
TimeBetweenShots=0.05
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=50
ADSFOVOverride=40.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
64.000000 256.000000 272.000000
448.000000 256.000000 272.000000
448.000000 256.000000 144.000000
64.000000 256.000000 144.000000
64.000000 240.000000 272.000000
448.000000 240.000000 272.000000
448.000000 240.000000 144.000000
64.000000 240.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
48.000000 416.000000 272.000000
64.000000 416.000000 272.000000
64.000000 416.000000 144.000000
48.000000 416.000000 144.000000
48.000000 256.000000 272.000000
64.000000 256.000000 272.000000
64.000000 256.000000 144.000000
48.000000 256.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
448.000000 416.000000 272.000000
464.000000 416.000000 272.000000
464.000000 416.000000 144.000000
448.000000 416.000000 144.000000
448.000000 256.000000 272.000000
464.000000 256.000000 272.000000
464.000000 256.000000 144.000000
448.000000 256.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 856.000000 144.000000
768.000000 856.000000 144.000000
768.000000 856.000000 128.000000
-256.000000 856.000000 128.000000
-256.000000 -168.000000 144.000000
768.000000 -168.000000 144.000000
768.000000 -168.000000 128.000000
-256.000000 -168.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
64.000000 432.000000 272.000000
448.000000 432.000000 272.000000
448.000000 432.000000 144.000000
64.000000 432.000000 144.000000
64.000000 416.000000 272.000000
448.000000 416.000000 272.000000
448.000000 416.000000 144.000000
64.000000 416.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
64.000000 416.000000 288.000000
448.000000 416.000000 288.000000
448.000000 416.000000 272.000000
64.000000 416.000000 272.000000
64.000000 256.000000 288.000000
448.000000 256.000000 288.000000
448.000000 256.000000 272.000000
64.000000 256.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-256.000000 -168.000000 1168.000000
768.000000 -168.000000 1168.000000
768.000000 -168.000000 144.000000
-256.000000 -168.000000 144.000000
-256.000000 -184.000000 1168.000000
768.000000 -184.000000 1168.000000
768.000000 -184.000000 144.000000
-256.000000 -184.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
768.000000 856.000000 1168.000000
784.000000 856.000000 1168.000000
784.000000 856.000000 144.000000
768.000000 856.000000 144.000000
768.000000 -168.000000 1168.000000
784.000000 -168.000000 1168.000000
784.000000 -168.000000 144.000000
768.000000 -168.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-272.000000 856.000000 1168.000000
-256.000000 856.000000 1168.000000
-256.000000 856.000000 144.000000
-272.000000 856.000000 144.000000
-272.000000 -168.000000 1168.000000
-256.000000 -168.000000 1168.000000
-256.000000 -168.000000 144.000000
-272.000000 -168.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 872.000000 1168.000000
768.000000 872.000000 1168.000000
768.000000 872.000000 144.000000
-256.000000 872.000000 144.000000
-256.000000 856.000000 1168.000000
768.000000 856.000000 1168.000000
768.000000 856.000000 144.000000
-256.000000 856.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-256.000000 856.000000 1184.000000
768.000000 856.000000 1184.000000
768.000000 856.000000 1168.000000
-256.000000 856.000000 1168.000000
-256.000000 -168.000000 1184.000000
768.000000 -168.000000 1184.000000
768.000000 -168.000000 1168.000000
-256.000000 -168.000000 1168.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type Target
Vector3 position 256.000000 392.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_0
entity
type Target
Vector3 position 301.000000 373.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_45
entity
type Target
Vector3 position 211.000000 373.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_315
entity
type Target
Vector3 position 211.000000 283.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_225
entity
type Target
Vector3 position 301.000000 283.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_135
entity
type Target
Vector3 position 192.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_270
entity
type Target
Vector3 position 320.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_90
entity
type Target
Vector3 position 256.000000 264.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_64_180
entity
type Target
Vector3 position 256.000000 456.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_0
entity
type Target
Vector3 position 384.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_90
entity
type Target
Vector3 position 128.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_270
entity
type Target
Vector3 position 256.000000 200.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_180
entity
type Target
Vector3 position 166.000000 418.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_315
entity
type Target
Vector3 position 346.000000 418.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_45
entity
type Target
Vector3 position 166.000000 238.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_225
entity
type Target
Vector3 position 346.000000 238.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_128_135
entity
type Target
Vector3 position 256.000000 520.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_0
entity
type Target
Vector3 position 448.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_90
entity
type Target
Vector3 position 64.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_270
entity
type Target
Vector3 position 256.000000 136.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_180
entity
type Target
Vector3 position 391.000000 193.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_135
entity
type Target
Vector3 position 391.000000 463.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_45
entity
type Target
Vector3 position 121.000000 193.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_225
entity
type Target
Vector3 position 121.000000 463.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_192_315
entity
type Target
Vector3 position 256.000000 424.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_0
entity
type Target
Vector3 position 256.000000 488.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_0
entity
type Target
Vector3 position 324.000000 396.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_45
entity
type Target
Vector3 position 369.000000 441.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_45
entity
type Target
Vector3 position 352.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_90
entity
type Target
Vector3 position 416.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_90
entity
type Target
Vector3 position 324.000000 260.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_135
entity
type Target
Vector3 position 369.000000 215.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_135
entity
type Target
Vector3 position 256.000000 232.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_180
entity
type Target
Vector3 position 256.000000 168.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_180
entity
type Target
Vector3 position 188.000000 260.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_225
entity
type Target
Vector3 position 143.000000 215.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_225
entity
type Target
Vector3 position 160.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_270
entity
type Target
Vector3 position 96.000000 328.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_270
entity
type Target
Vector3 position 188.000000 396.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_96_315
entity
type Target
Vector3 position 143.000000 441.000000 768.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_l_160_315
entity
type Target
Vector3 position 256.000000 392.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_0
entity
type Target
Vector3 position 301.000000 373.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_45
entity
type Target
Vector3 position 211.000000 373.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_315
entity
type Target
Vector3 position 211.000000 283.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_225
entity
type Target
Vector3 position 301.000000 283.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_135
entity
type Target
Vector3 position 192.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_270
entity
type Target
Vector3 position 320.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_90
entity
type Target
Vector3 position 256.000000 264.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_64_180
entity
type Target
Vector3 position 256.000000 456.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_0
entity
type Target
Vector3 position 384.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_90
entity
type Target
Vector3 position 128.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_270
entity
type Target
Vector3 position 256.000000 200.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_180
entity
type Target
Vector3 position 166.000000 418.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_315
entity
type Target
Vector3 position 346.000000 418.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_45
entity
type Target
Vector3 position 166.000000 238.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_225
entity
type Target
Vector3 position 346.000000 238.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_128_135
entity
type Target
Vector3 position 256.000000 520.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_0
entity
type Target
Vector3 position 448.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_90
entity
type Target
Vector3 position 64.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_270
entity
type Target
Vector3 position 256.000000 136.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_180
entity
type Target
Vector3 position 391.000000 193.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_135
entity
type Target
Vector3 position 391.000000 463.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_45
entity
type Target
Vector3 position 121.000000 193.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_225
entity
type Target
Vector3 position 121.000000 463.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_192_315
entity
type Target
Vector3 position 256.000000 424.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_0
entity
type Target
Vector3 position 256.000000 488.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_0
entity
type Target
Vector3 position 324.000000 396.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_45
entity
type Target
Vector3 position 369.000000 441.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_45
entity
type Target
Vector3 position 352.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_90
entity
type Target
Vector3 position 416.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_90
entity
type Target
Vector3 position 324.000000 260.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_135
entity
type Target
Vector3 position 369.000000 215.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_135
entity
type Target
Vector3 position 256.000000 232.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_180
entity
type Target
Vector3 position 256.000000 168.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_180
entity
type Target
Vector3 position 188.000000 260.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_225
entity
type Target
Vector3 position 143.000000 215.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_225
entity
type Target
Vector3 position 160.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_270
entity
type Target
Vector3 position 96.000000 328.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_270
entity
type Target
Vector3 position 188.000000 396.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_96_315
entity
type Target
Vector3 position 143.000000 441.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
String32 name circle_r_160_315
entity
type PlayerSpawn
Vector3 position 256.000000 392.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_315,circle_l_64_270,circle_l_64_225,circle_l_64_180,circle_l_64_135,circle_l_64_90,circle_l_64_45,circle_l_64_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 424.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_315,circle_l_96_270,circle_l_96_225,circle_l_96_180,circle_l_96_135,circle_l_96_90,circle_l_96_45,circle_l_96_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 456.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_315,circle_l_128_270,circle_l_128_225,circle_l_128_180,circle_l_128_135,circle_l_128_90,circle_l_128_45,circle_l_128_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 488.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_315,circle_l_160_270,circle_l_160_225,circle_l_160_180,circle_l_160_135,circle_l_160_90,circle_l_160_45,circle_l_160_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 520.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_315,circle_l_192_270,circle_l_192_225,circle_l_192_180,circle_l_192_135,circle_l_192_90,circle_l_192_45,circle_l_192_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 301.000000 373.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_0,circle_l_64_315,circle_l_64_270,circle_l_64_225,circle_l_64_180,circle_l_64_135,circle_l_64_90,circle_l_64_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 324.000000 396.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_0,circle_l_96_315,circle_l_96_270,circle_l_96_225,circle_l_96_180,circle_l_96_135,circle_l_96_90,circle_l_96_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 346.000000 418.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_0,circle_l_128_315,circle_l_128_270,circle_l_128_225,circle_l_128_180,circle_l_128_135,circle_l_128_90,circle_l_128_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 369.000000 441.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_0,circle_l_160_315,circle_l_160_270,circle_l_160_225,circle_l_160_180,circle_l_160_135,circle_l_160_90,circle_l_160_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 391.000000 463.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_0,circle_l_192_315,circle_l_192_270,circle_l_192_225,circle_l_192_180,circle_l_192_135,circle_l_192_90,circle_l_192_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 320.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_45,circle_l_64_0,circle_l_64_315,circle_l_64_270,circle_l_64_225,circle_l_64_180,circle_l_64_135,circle_l_64_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 352.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_45,circle_l_96_0,circle_l_96_315,circle_l_96_270,circle_l_96_225,circle_l_96_180,circle_l_96_135,circle_l_96_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 384.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_45,circle_l_128_0,circle_l_128_315,circle_l_128_270,circle_l_128_225,circle_l_128_180,circle_l_128_135,circle_l_128_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 416.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_45,circle_l_160_0,circle_l_160_315,circle_l_160_270,circle_l_160_225,circle_l_160_180,circle_l_160_135,circle_l_160_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 448.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_45,circle_l_192_0,circle_l_192_315,circle_l_192_270,circle_l_192_225,circle_l_192_180,circle_l_192_135,circle_l_192_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 301.000000 283.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_90,circle_l_64_45,circle_l_64_0,circle_l_64_315,circle_l_64_270,circle_l_64_225,circle_l_64_180,circle_l_64_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 324.000000 260.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_90,circle_l_96_45,circle_l_96_0,circle_l_96_315,circle_l_96_270,circle_l_96_225,circle_l_96_180,circle_l_96_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 346.000000 238.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_90,circle_l_128_45,circle_l_128_0,circle_l_128_315,circle_l_128_270,circle_l_128_225,circle_l_128_180,circle_l_128_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 369.000000 215.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_90,circle_l_160_45,circle_l_160_0,circle_l_160_315,circle_l_160_270,circle_l_160_225,circle_l_160_180,circle_l_160_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 391.000000 193.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_90,circle_l_192_45,circle_l_192_0,circle_l_192_315,circle_l_192_270,circle_l_192_225,circle_l_192_180,circle_l_192_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 264.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_135,circle_l_64_90,circle_l_64_45,circle_l_64_0,circle_l_64_315,circle_l_64_270,circle_l_64_225,circle_l_64_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 232.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_135,circle_l_96_90,circle_l_96_45,circle_l_96_0,circle_l_96_315,circle_l_96_270,circle_l_96_225,circle_l_96_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 200.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_135,circle_l_128_90,circle_l_128_45,circle_l_128_0,circle_l_128_315,circle_l_128_270,circle_l_128_225,circle_l_128_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 168.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_135,circle_l_160_90,circle_l_160_45,circle_l_160_0,circle_l_160_315,circle_l_160_270,circle_l_160_225,circle_l_160_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 136.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_135,circle_l_192_90,circle_l_192_45,circle_l_192_0,circle_l_192_315,circle_l_192_270,circle_l_192_225,circle_l_192_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 211.000000 283.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_180,circle_l_64_135,circle_l_64_90,circle_l_64_45,circle_l_64_0,circle_l_64_315,circle_l_64_270,circle_l_64_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 188.000000 260.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_180,circle_l_96_135,circle_l_96_90,circle_l_96_45,circle_l_96_0,circle_l_96_315,circle_l_96_270,circle_l_96_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 166.000000 238.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_180,circle_l_128_135,circle_l_128_90,circle_l_128_45,circle_l_128_0,circle_l_128_315,circle_l_128_270,circle_l_128_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 143.000000 215.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_180,circle_l_160_135,circle_l_160_90,circle_l_160_45,circle_l_160_0,circle_l_160_315,circle_l_160_270,circle_l_160_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 121.000000 193.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_180,circle_l_192_135,circle_l_192_90,circle_l_192_45,circle_l_192_0,circle_l_192_315,circle_l_192_270,circle_l_192_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 192.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_225,circle_l_64_180,circle_l_64_135,circle_l_64_90,circle_l_64_45,circle_l_64_0,circle_l_64_315,circle_l_64_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 160.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_225,circle_l_96_180,circle_l_96_135,circle_l_96_90,circle_l_96_45,circle_l_96_0,circle_l_96_315,circle_l_96_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 128.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_225,circle_l_128_180,circle_l_128_135,circle_l_128_90,circle_l_128_45,circle_l_128_0,circle_l_128_315,circle_l_128_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 96.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_225,circle_l_160_180,circle_l_160_135,circle_l_160_90,circle_l_160_45,circle_l_160_0,circle_l_160_315,circle_l_160_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 64.000000 328.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_225,circle_l_192_180,circle_l_192_135,circle_l_192_90,circle_l_192_45,circle_l_192_0,circle_l_192_315,circle_l_192_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 211.000000 373.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_64_270,circle_l_64_225,circle_l_64_180,circle_l_64_135,circle_l_64_90,circle_l_64_45,circle_l_64_0,circle_l_64_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 188.000000 396.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_96_270,circle_l_96_225,circle_l_96_180,circle_l_96_135,circle_l_96_90,circle_l_96_45,circle_l_96_0,circle_l_96_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 166.000000 418.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_128_270,circle_l_128_225,circle_l_128_180,circle_l_128_135,circle_l_128_90,circle_l_128_45,circle_l_128_0,circle_l_128_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 143.000000 441.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_160_270,circle_l_160_225,circle_l_160_180,circle_l_160_135,circle_l_160_90,circle_l_160_45,circle_l_160_0,circle_l_160_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 121.000000 463.000000 768.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_l_192_270,circle_l_192_225,circle_l_192_180,circle_l_192_135,circle_l_192_90,circle_l_192_45,circle_l_192_0,circle_l_192_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 392.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_45,circle_r_64_90,circle_r_64_135,circle_r_64_180,circle_r_64_225,circle_r_64_270,circle_r_64_315,circle_r_64_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 424.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_45,circle_r_96_90,circle_r_96_135,circle_r_96_180,circle_r_96_225,circle_r_96_270,circle_r_96_315,circle_r_96_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 456.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_45,circle_r_128_90,circle_r_128_135,circle_r_128_180,circle_r_128_225,circle_r_128_270,circle_r_128_315,circle_r_128_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 488.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_45,circle_r_160_90,circle_r_160_135,circle_r_160_180,circle_r_160_225,circle_r_160_270,circle_r_160_315,circle_r_160_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 520.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_45,circle_r_192_90,circle_r_192_135,circle_r_192_180,circle_r_192_225,circle_r_192_270,circle_r_192_315,circle_r_192_0
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 301.000000 373.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_90,circle_r_64_135,circle_r_64_180,circle_r_64_225,circle_r_64_270,circle_r_64_315,circle_r_64_0,circle_r_64_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 324.000000 396.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_90,circle_r_96_135,circle_r_96_180,circle_r_96_225,circle_r_96_270,circle_r_96_315,circle_r_96_0,circle_r_96_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 346.000000 418.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_90,circle_r_128_135,circle_r_128_180,circle_r_128_225,circle_r_128_270,circle_r_128_315,circle_r_128_0,circle_r_128_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 369.000000 441.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_90,circle_r_160_135,circle_r_160_180,circle_r_160_225,circle_r_160_270,circle_r_160_315,circle_r_160_0,circle_r_160_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 391.000000 463.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_90,circle_r_192_135,circle_r_192_180,circle_r_192_225,circle_r_192_270,circle_r_192_315,circle_r_192_0,circle_r_192_45
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 320.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_135,circle_r_64_180,circle_r_64_225,circle_r_64_270,circle_r_64_315,circle_r_64_0,circle_r_64_45,circle_r_64_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 352.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_135,circle_r_96_180,circle_r_96_225,circle_r_96_270,circle_r_96_315,circle_r_96_0,circle_r_96_45,circle_r_96_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 384.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_135,circle_r_128_180,circle_r_128_225,circle_r_128_270,circle_r_128_315,circle_r_128_0,circle_r_128_45,circle_r_128_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 416.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_135,circle_r_160_180,circle_r_160_225,circle_r_160_270,circle_r_160_315,circle_r_160_0,circle_r_160_45,circle_r_160_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 448.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_135,circle_r_192_180,circle_r_192_225,circle_r_192_270,circle_r_192_315,circle_r_192_0,circle_r_192_45,circle_r_192_90
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 301.000000 283.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_180,circle_r_64_225,circle_r_64_270,circle_r_64_315,circle_r_64_0,circle_r_64_45,circle_r_64_90,circle_r_64_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 324.000000 260.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_180,circle_r_96_225,circle_r_96_270,circle_r_96_315,circle_r_96_0,circle_r_96_45,circle_r_96_90,circle_r_96_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 346.000000 238.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_180,circle_r_128_225,circle_r_128_270,circle_r_128_315,circle_r_128_0,circle_r_128_45,circle_r_128_90,circle_r_128_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 369.000000 215.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_180,circle_r_160_225,circle_r_160_270,circle_r_160_315,circle_r_160_0,circle_r_160_45,circle_r_160_90,circle_r_160_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 391.000000 193.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_180,circle_r_192_225,circle_r_192_270,circle_r_192_315,circle_r_192_0,circle_r_192_45,circle_r_192_90,circle_r_192_135
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 264.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_225,circle_r_64_270,circle_r_64_315,circle_r_64_0,circle_r_64_45,circle_r_64_90,circle_r_64_135,circle_r_64_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 232.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_225,circle_r_96_270,circle_r_96_315,circle_r_96_0,circle_r_96_45,circle_r_96_90,circle_r_96_135,circle_r_96_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 200.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_225,circle_r_128_270,circle_r_128_315,circle_r_128_0,circle_r_128_45,circle_r_128_90,circle_r_128_135,circle_r_128_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 168.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_225,circle_r_160_270,circle_r_160_315,circle_r_160_0,circle_r_160_45,circle_r_160_90,circle_r_160_135,circle_r_160_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 256.000000 136.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_225,circle_r_192_270,circle_r_192_315,circle_r_192_0,circle_r_192_45,circle_r_192_90,circle_r_192_135,circle_r_192_180
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 211.000000 283.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_270,circle_r_64_315,circle_r_64_0,circle_r_64_45,circle_r_64_90,circle_r_64_135,circle_r_64_180,circle_r_64_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 188.000000 260.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_270,circle_r_96_315,circle_r_96_0,circle_r_96_45,circle_r_96_90,circle_r_96_135,circle_r_96_180,circle_r_96_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 166.000000 238.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_270,circle_r_128_315,circle_r_128_0,circle_r_128_45,circle_r_128_90,circle_r_128_135,circle_r_128_180,circle_r_128_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 143.000000 215.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_270,circle_r_160_315,circle_r_160_0,circle_r_160_45,circle_r_160_90,circle_r_160_135,circle_r_160_180,circle_r_160_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 121.000000 193.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_270,circle_r_192_315,circle_r_192_0,circle_r_192_45,circle_r_192_90,circle_r_192_135,circle_r_192_180,circle_r_192_225
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 192.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_315,circle_r_64_0,circle_r_64_45,circle_r_64_90,circle_r_64_135,circle_r_64_180,circle_r_64_225,circle_r_64_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 160.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_315,circle_r_96_0,circle_r_96_45,circle_r_96_90,circle_r_96_135,circle_r_96_180,circle_r_96_225,circle_r_96_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 128.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_315,circle_r_128_0,circle_r_128_45,circle_r_128_90,circle_r_128_135,circle_r_128_180,circle_r_128_225,circle_r_128_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 96.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_315,circle_r_160_0,circle_r_160_45,circle_r_160_90,circle_r_160_135,circle_r_160_180,circle_r_160_225,circle_r_160_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 64.000000 328.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_315,circle_r_192_0,circle_r_192_45,circle_r_192_90,circle_r_192_135,circle_r_192_180,circle_r_192_225,circle_r_192_270
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 211.000000 373.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_64_0,circle_r_64_45,circle_r_64_90,circle_r_64_135,circle_r_64_180,circle_r_64_225,circle_r_64_270,circle_r_64_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 188.000000 396.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_96_0,circle_r_96_45,circle_r_96_90,circle_r_96_135,circle_r_96_180,circle_r_96_225,circle_r_96_270,circle_r_96_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 166.000000 418.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_128_0,circle_r_128_45,circle_r_128_90,circle_r_128_135,circle_r_128_180,circle_r_128_225,circle_r_128_270,circle_r_128_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 143.000000 441.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_160_0,circle_r_160_45,circle_r_160_90,circle_r_160_135,circle_r_160_180,circle_r_160_225,circle_r_160_270,circle_r_160_315
Bool8 loopingPath 1
entity
type PlayerSpawn
Vector3 position 121.000000 463.000000 800.000000
Vector3 angles -180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
String32 path circle_r_192_0,circle_r_192_45,circle_r_192_90,circle_r_192_135,circle_r_192_180,circle_r_192_225,circle_r_192_270,circle_r_192_315
Bool8 loopingPath 1
|
48e3102bc07c0ef04abedbd978d42cc709d8244d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2975/CH23/EX23.1w/Ex23_1w.sce | 9f4d43803a4909de9d12abd8eae55efe92b084e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 406 | sce | Ex23_1w.sce | //developed in windows 8 operating system 64bit
//platform Scilab 5.4.1
//example 23_1w
clc;clear;
//Given Data
temp=373.15;//Temperature at steam point (Unit Kelvin)
press=1.5*10^4;//Pressure at steam point(Unit Pascal)
//calculation
ptr=(273.16*press)/temp;//Calculation of pressure at triple point of water (Unit : pascal)
disp(ptr,"Pressure of water at triple is (unit: Pascal)");
|
96a2ddca0e777cc294ae2bbc35e6c9f85e4f39c8 | 244971ae8af51184d278cdc2be1c80775413adae | /Source.sci | 80855f2c7a0c5d7c7232a818ee0b6e59afdc0dc3 | [] | no_license | MSCA-SIMFREE/748767 | 5879f1f139b608c7cd2f1bd62325b281c9c1e7d1 | 4726206e514f1e47e939e73b9339c056057866db | refs/heads/master | 2020-12-27T15:21:13.646362 | 2020-02-03T11:40:00 | 2020-02-03T11:40:00 | 237,951,088 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sci | Source.sci | // The code was developed under Horizon2020 Framework Programme
// Project: 748767 — SIMFREE
function s = Source(M)
x1 = ones(M,1);
y = 0:M-1;
s = zeros(2*M,M)
for i = 1:M
x = (i-1)*x1;
for m = 1:M
s(2*m-1,i) = x(m);
s(2*m,i) = y(m);
end
end
s = matrix(s,2*M*M,1)
endfunction
|
8eaf96de0795e570d888733626c1b8aaf894043f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH6/EX6.15/Ex6_15.sce | cfbab548a14a6e6ba7313590e6cbe6220a882974 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | Ex6_15.sce | clear
//Given
//From example 5.8
W = 4.0 //N/m - The force distribution
L = 3 // m - The length of the force applied
M = W*L/8.0 // KN.m The moment due to force distribution
o = 30 // the angle of force applied to horizontal
l = 150.0 //mm length of the crossection
b = 100.0 //mm - width of the crossection
//
M_z = M*(cos(3.14/6))
M_y = M*(sin(%pi/6))
I_z = b*(l**3)/12.0
I_y = l*(b**3)/12.0
//tanb = I_z /I_y *tan30
b = atand((I_z*tan(3.14/6.0)/I_y))
printf("\n The angle at which neutral axis located by is %0.3f degrees",b)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.