Trace number 4263664

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
sat4j-CSP 2017-07-05? 1422.41 389.91

General information on the benchmark

NameStripPacking/StripPacking-m1-seriesN/
StripPacking-N7e.xml
MD5SUMa2078c203ecd0c92972679cdeaf30c01
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables985
Number of constraints592
Number of domains147
Minimum domain size1
Maximum domain size200
Distribution of domain sizes[{"size":1,"count":22},{"size":2,"count":569},{"size":200,"count":394}]
Minimum variable degree1
Maximum variable degree3
Distribution of variable degrees[{"degree":1,"count":197},{"degree":2,"count":394},{"degree":3,"count":394}]
Minimum constraint arity2
Maximum constraint arity788
Distribution of constraint arities[{"arity":2,"count":394},{"arity":3,"count":197},{"arity":788,"count":1}]
Number of extensional constraints197
Number of intensional constraints394
Distribution of constraint types[{"type":"extension","count":197},{"type":"intension","count":394},{"type":"noOverlap","count":1}]
Optimization problemNO
Type of objective

Solver Data

1352.75/370.89	Aug 13, 2017 9:53:44 AM org.sat4j.reader.XMLCSP3Reader parseInstance
1352.75/370.89	INFO: Runtime exception
1352.75/370.89	java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:77)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:58)
1352.75/370.89		at org.sat4j.csp.constraints3.SchedulingCtrBuilder.buildCtrNoOverlap(SchedulingCtrBuilder.java:472)
1352.75/370.89		at org.sat4j.reader.XMLCSP3Reader.buildCtrNoOverlap(XMLCSP3Reader.java:556)
1352.75/370.89		at org.xcsp.parser.loaders.CtrLoaderInteger.noOverlap(CtrLoaderInteger.java:660)
1352.75/370.89		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:178)
1352.75/370.89		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
1352.75/370.89		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:373)
1352.75/370.89		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
1352.75/370.89		at org.sat4j.reader.XMLCSP3Reader.loadInstance(XMLCSP3Reader.java:328)
1352.75/370.89		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:293)
1352.75/370.89		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
1352.75/370.89		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
1352.75/370.89		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
1352.75/370.89		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
1352.75/370.89		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
1352.75/370.89	Caused by: java.lang.reflect.InvocationTargetException
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		... 16 more
1352.75/370.89	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
1352.75/370.89		... 20 more
1352.75/370.89	Caused by: java.lang.reflect.InvocationTargetException
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		... 21 more
1352.75/370.89	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
1352.75/370.89		... 25 more
1352.75/370.89	Caused by: java.lang.reflect.InvocationTargetException
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		... 26 more
1352.75/370.89	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
1352.75/370.89		... 30 more
1352.75/370.89	Caused by: java.lang.reflect.InvocationTargetException
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		... 31 more
1352.75/370.89	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:127)
1352.75/370.89		... 35 more
1352.75/370.89	Caused by: java.lang.reflect.InvocationTargetException
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
1352.75/370.89		... 35 more
1352.75/370.89	Caused by: java.lang.OutOfMemoryError: GC overhead limit exceeded
1352.75/370.89		at org.sat4j.csp.intension.CspToPBSolverDecorator.addClause(CspToPBSolverDecorator.java:85)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.buildImplVar(TseitinBasedIntensionCtrEncoder.java:528)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorLe(TseitinBasedIntensionCtrEncoder.java:326)
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
1352.75/370.89		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1352.75/370.89		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1352.75/370.89		at java.lang.reflect.Method.invoke(Method.java:498)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:77)
1352.75/370.89		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:58)
1352.75/370.89		at org.sat4j.csp.constraints3.SchedulingCtrBuilder.buildCtrNoOverlap(SchedulingCtrBuilder.java:472)
1352.75/370.89		at org.sat4j.reader.XMLCSP3Reader.buildCtrNoOverlap(XMLCSP3Reader.java:556)
1352.75/370.89		at org.xcsp.parser.loaders.CtrLoaderInteger.noOverlap(CtrLoaderInteger.java:660)
1352.75/370.89		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:178)
1352.75/370.89	
1422.31/389.85	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
1422.31/389.85	c This is free software under the dual EPL/GNU LGPL licenses.
1422.31/389.85	c See www.sat4j.org for details.
1422.31/389.85	c That software uses the Rhino library from the Mozilla project.
1422.31/389.85	c version CUSTOM.v20170705
1422.31/389.85	c java.runtime.name	Java(TM) SE Runtime Environment
1422.31/389.85	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
1422.31/389.85	c java.vm.version	25.131-b11
1422.31/389.85	c java.vm.vendor	Oracle Corporation
1422.31/389.85	c sun.arch.data.model	64
1422.31/389.85	c java.version		1.8.0_131
1422.31/389.85	c os.name		Linux
1422.31/389.85	c os.version		3.10.0-514.16.1.el7.x86_64
1422.31/389.85	c os.arch		amd64
1422.31/389.85	c Free memory 		499604488
1422.31/389.85	c Max memory 		7247757312
1422.31/389.85	c Total memory 		504889344
1422.31/389.85	c Number of processors 	4
1422.31/389.85	c c --- Begin Solver configuration ---
1422.31/389.85	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
1422.31/389.85	c Learn all clauses as in MiniSAT
1422.31/389.85	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
1422.31/389.85	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
1422.31/389.85	c No reason simplification
1422.31/389.85	c Glucose 2.1 dynamic restart strategy
1422.31/389.85	c Glucose 2 learned constraints deletion strategy (LBD updated on propagation) with timer check every 1000 if the learned constraints reach increasing bounds: 5000 step 1000
1422.31/389.85	c timeout=2147483s
1422.31/389.85	c DB Simplification allowed=false
1422.31/389.85	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
1422.31/389.85	c --- End Solver configuration ---
1422.31/389.85	c starts		: 0
1422.31/389.85	c conflicts		: 0
1422.31/389.85	c decisions		: 0
1422.31/389.85	c propagations		: 0
1422.31/389.85	c inspects		: 0
1422.31/389.85	c shortcuts		: 0
1422.31/389.85	c learnt literals	: 0
1422.31/389.85	c learnt binary clauses	: 0
1422.31/389.85	c learnt ternary clauses	: 0
1422.31/389.85	c learnt constraints	: 0
1422.31/389.85	c ignored constraints	: 0
1422.31/389.85	c root simplifications	: 0
1422.31/389.85	c removed literals (reason simplification)	: 0
1422.31/389.85	c reason swapping (by a shorter reason)	: 0
1422.31/389.85	c Calls to reduceDB	: 0
1422.31/389.85	c Number of update (reduction) of LBD	: 0
1422.31/389.85	c Imported unit clauses	: 0
1422.31/389.85	c number of reductions to clauses (during analyze)	: 0
1422.31/389.85	c number of learned constraints concerned by reduction	: 0
1422.31/389.85	c number of learning phase by resolution	: 0
1422.31/389.85	c number of learning phase by cutting planes	: 0
1422.31/389.85	c number of rounding to 1 operations	: 0
1422.31/389.85	c number of easy rounding to 1 operations (no literal elimination needed)	: 0
1422.31/389.85	c number of reductions of the coefficients by power 2 	: 0
1422.31/389.85	c number of right shift for reduction by power 2 	: 0
1422.31/389.85	c number of reductions of the coefficients by GCD over coefficients 	: 0
1422.31/389.85	c speed (assignments/second)	: 0.0
1422.31/389.85	c non guided choices	0
1422.31/389.85	c learnt constraints type 
1422.31/389.85	s UNKNOWN

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (15085 MiB free)
  memory of node 1: 16384 MiB (15583 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4263664-1502611307/watcher-4263664-1502611307 -o /tmp/evaluation-result-4263664-1502611307/solver-4263664-1502611307 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node126-1502596857-19457 --watchdog 2580 java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4263664-1502611307.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=22982, runsolver pid=22979

[startup+0.100111 s]*
/proc/loadavg: 1.94 2.98 3.66 3/197 22984
/proc/meminfo: memFree=31404720/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=9936560 memory=16312 CPUtime=0 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 3424 0 0 0 0 0 0 0 20 0 6 0 63326114 10175037440 4078 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16784584 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2484140 4078 1910 1 0 2473637 0
[pid=22982/tid=22984] ppid=22979 vsize=9936560 memory=-6439968830534014599 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) R 22979 22982 12560 0 -1 4202560 2134 0 0 0 0 0 0 0 20 0 6 0 63326124 10175037440 4144 18446744073709551615 4194304 4196468 140728189967536 140319509979728 140319489824094 0 4 1 16784584 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=9936560 memory=-5738297875903123798 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 6 0 63326124 10175037440 4144 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319505753813 0 4 1 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=9936560 memory=140607408637568 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 6 0 63326124 10175037440 4144 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319505753813 0 4 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=9936560 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 6 0 63326124 10175037440 4144 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319505753813 0 4 1 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=9936560 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 6 0 63326124 10175037440 4144 18446744073709551615 4194304 4196468 140728189967536 140319113677328 140319505753813 0 4 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9936560 KiB
Current children cumulated memory: 16312 KiB

[startup+0.209711 s]*
/proc/loadavg: 1.94 2.98 3.66 3/210 22997
/proc/meminfo: memFree=31392080/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10551156 memory=26216 CPUtime=0.08 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 5067 0 0 0 7 1 0 0 20 0 15 0 63326114 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2637789 6554 2610 1 0 2627261 0
[pid=22982/tid=22984] ppid=22979 vsize=10551156 memory=8318255677412212789 CPUtime=0.06 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) R 22979 22982 12560 0 -1 4202560 3164 0 0 0 6 0 0 0 20 0 15 0 63326124 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319509975168 140319505765533 0 4 1 16800974 0 0 0 -1 1 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10551156 memory=328 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10551156 memory=288370983560349312 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319113677328 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10551156 memory=140607408637568 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 63326126 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319069776496 140319505754754 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 63326126 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319068722464 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 63326126 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319067670128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 296 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140318997473392 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140318996420592 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10551156 memory=140607408637568 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 234 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140318995368304 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10551156 memory=140607408637568 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 63326134 10804383744 6554 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 0.08 s
Current children cumulated vsize: 10551156 KiB
Current children cumulated memory: 26216 KiB

[startup+0.309856 s]*
/proc/loadavg: 1.94 2.98 3.66 3/210 22997
/proc/meminfo: memFree=31379896/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10551156 memory=36244 CPUtime=0.23 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 8327 0 0 0 21 2 0 0 20 0 15 0 63326114 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2637789 9061 2875 1 0 2627261 0
[pid=22982/tid=22984] ppid=22979 vsize=10551156 memory=-8774313645642428999 CPUtime=0.15 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) R 22979 22982 12560 0 -1 4202560 5982 0 0 0 14 1 0 0 20 0 15 0 63326124 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319509980480 140319505765533 0 4 1 16800974 0 0 0 -1 3 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10551156 memory=4126316290023845779 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326124 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319113677328 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) S 22979 22982 12560 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 63326126 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319069776496 140319505754754 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 63326126 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319068722464 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 63326126 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319067670128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10551156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10551156 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 494 0 0 0 1 0 0 0 20 0 15 0 63326129 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140318997473392 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10551156 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 74 0 0 0 1 0 0 0 20 0 15 0 63326129 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140318996420592 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10551156 memory=-1 CPUtime=0.04 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 407 0 0 0 4 0 0 0 20 0 15 0 63326129 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140318995368304 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10551156 memory=140607408637568 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10551156 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 63326134 10804383744 9061 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 0.23 s
Current children cumulated vsize: 10551156 KiB
Current children cumulated memory: 36244 KiB

[startup+0.700752 s]
/proc/loadavg: 2.03 2.98 3.66 6/210 22997
/proc/meminfo: memFree=31368896/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10551232 memory=187500 CPUtime=1.23 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 11516 0 0 0 116 7 0 0 20 0 15 0 63326114 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2637808 46875 3071 1 0 2627261 0
[pid=22982/tid=22984] ppid=22979 vsize=10551232 memory=0 CPUtime=0.53 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) R 22979 22982 12560 0 -1 4202560 6932 0 0 0 49 4 0 0 20 0 15 0 63326124 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319509980000 140319491811732 0 4 1 16800974 0 0 0 -1 5 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) S 22979 22982 12560 0 -1 1077944384 14 0 0 0 0 0 0 0 20 0 15 0 63326124 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10551232 memory=0 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) S 22979 22982 12560 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 63326124 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10551232 memory=933 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) S 22979 22982 12560 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 15 0 63326124 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10551232 memory=4529 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) S 22979 22982 12560 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 15 0 63326124 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319113677328 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10551232 memory=140607297444672 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) S 22979 22982 12560 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 63326126 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319069776496 140319505754754 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10551232 memory=140607297291024 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 63326126 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319068722464 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10551232 memory=53 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 63326126 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319067670128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10551232 memory=215 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10551232 memory=413 CPUtime=0.18 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) R 22979 22982 12560 0 -1 4202560 1125 0 0 0 18 0 0 0 20 0 15 0 63326129 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140318997473392 140319483491144 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10551232 memory=290 CPUtime=0.16 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 761 0 0 0 16 0 0 0 20 0 15 0 63326129 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140318996420592 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10551232 memory=101 CPUtime=0.28 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 1186 0 0 0 28 0 0 0 20 0 15 0 63326129 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140318995368304 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10551232 memory=2130 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10551232 memory=237 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 63326134 10804461568 46875 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 1.23 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 187500 KiB

[startup+1.50074 s]
/proc/loadavg: 2.03 2.98 3.66 6/210 22997
/proc/meminfo: memFree=31051748/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10553280 memory=676580 CPUtime=3.32 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 14393 0 0 0 303 29 0 0 20 0 15 0 63326114 10806558720 168633 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2638320 169145 3105 1 0 2627773 0
[pid=22982/tid=22984] ppid=22979 vsize=10553280 memory=106 CPUtime=1.17 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) S 22979 22982 12560 0 -1 1077944384 7812 0 0 0 108 9 0 0 20 0 15 0 63326124 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319509978528 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10553280 memory=6 CPUtime=0.15 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) R 22979 22982 12560 0 -1 4202560 163 0 0 0 11 4 0 0 20 0 15 0 63326124 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319490771481 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10553280 memory=5 CPUtime=0.14 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) R 22979 22982 12560 0 -1 4202560 146 0 0 0 10 4 0 0 20 0 15 0 63326124 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319490771481 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10553280 memory=53 CPUtime=0.15 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) R 22979 22982 12560 0 -1 4202560 160 0 0 0 11 4 0 0 20 0 15 0 63326124 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319490771481 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10553280 memory=215 CPUtime=0.13 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) R 22979 22982 12560 0 -1 4202560 152 0 0 0 9 4 0 0 20 0 15 0 63326124 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319113677528 140319490771481 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10553280 memory=413 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) S 22979 22982 12560 0 -1 1077944384 210 0 0 0 0 0 0 0 20 0 15 0 63326126 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319069775008 140319505753813 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10553280 memory=290 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 63326126 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319068722528 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10553280 memory=101 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 63326126 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319067670144 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10553280 memory=2130 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10553280 memory=237 CPUtime=0.53 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 1603 0 0 0 53 0 0 0 20 0 15 0 63326129 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140318997473392 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10553280 memory=96416001 CPUtime=0.54 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 1129 0 0 0 54 0 0 0 20 0 15 0 63326129 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140318996420592 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10553280 memory=2372 CPUtime=0.42 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 1658 0 0 0 42 0 0 0 20 0 15 0 63326129 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140318995368304 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10553280 memory=180 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 63326129 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10553280 memory=288230621803979440 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 63326134 10806558720 169145 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 3.32 s
Current children cumulated vsize: 10553280 KiB

################
# More data... #
################

[startup+387.201 s]
/proc/loadavg: 4.73 4.35 4.05 6/211 23026
/proc/meminfo: memFree=22957304/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10686560 memory=8289308 CPUtime=1413.99 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 567717 0 0 0 140701 698 0 0 20 0 16 0 63326114 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2671640 2072327 3180 1 0 2661055 0
[pid=22982/tid=22984] ppid=22979 vsize=10686560 memory=1196 CPUtime=13.19 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) S 22979 22982 12560 0 -1 1077944384 20552 0 0 0 1304 15 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319509984288 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10686560 memory=1148 CPUtime=343.79 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) R 22979 22982 12560 0 -1 4202560 128039 0 0 0 34213 166 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319468849360 140319498371815 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10686560 memory=3072 CPUtime=341.92 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) R 22979 22982 12560 0 -1 4202560 79507 0 0 0 34025 167 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319115782224 140319498371815 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10686560 memory=8289308 CPUtime=342.93 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) R 22979 22982 12560 0 -1 4202560 63894 0 0 0 34130 163 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319114730328 140319498840068 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10686560 memory=36108 CPUtime=343.86 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) R 22979 22982 12560 0 -1 4202560 178586 0 0 0 34212 174 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319113677448 140319498371815 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10686560 memory=1292 CPUtime=25.57 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) S 22979 22982 12560 0 -1 1077944384 78245 0 0 0 2552 5 0 0 20 0 16 0 63326126 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319069775040 140319505753813 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10686560 memory=8289308 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319068722528 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10686560 memory=8833 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319067670144 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10686560 memory=4420 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10686560 memory=-8774313645642428999 CPUtime=0.6 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 2337 0 0 0 59 1 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318997473152 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10686560 memory=4144 CPUtime=1.28 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 10425 0 0 0 127 1 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318996420640 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10686560 memory=36108 CPUtime=0.46 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 3363 0 0 0 45 1 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318995368352 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10686560 memory=1292 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10686560 memory=8289308 CPUtime=0.31 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1282 0 0 0 17 14 0 0 20 0 16 0 63326134 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=23024] ppid=22979 vsize=10686560 memory=1716 CPUtime=0 cores=1,3,5,7
/proc/22982/task/23024/stat : 23024 (java) S 22979 22982 12560 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 16 0 63363204 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318990110256 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 1413.99 s
Current children cumulated vsize: 10686560 KiB
Current children cumulated memory: 8289308 KiB

[startup+388.801 s]
/proc/loadavg: 4.73 4.35 4.05 6/211 23026
/proc/meminfo: memFree=22957304/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10686560 memory=8289308 CPUtime=1420.19 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 567717 0 0 0 141320 699 0 0 20 0 16 0 63326114 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2671640 2072327 3180 1 0 2661055 0
[pid=22982/tid=22984] ppid=22979 vsize=10686560 memory=4612 CPUtime=13.19 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) S 22979 22982 12560 0 -1 1077944384 20552 0 0 0 1304 15 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319509984288 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10686560 memory=1004 CPUtime=345.33 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) R 22979 22982 12560 0 -1 4202560 128039 0 0 0 34367 166 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319468849360 140319498371815 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10686560 memory=-8774313645642428999 CPUtime=343.47 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) R 22979 22982 12560 0 -1 4202560 79507 0 0 0 34179 168 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319115782224 140319498371815 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10686560 memory=1004 CPUtime=344.53 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) R 22979 22982 12560 0 -1 4202560 63894 0 0 0 34290 163 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319114730328 140319490733221 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10686560 memory=2016 CPUtime=345.38 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) R 22979 22982 12560 0 -1 4202560 178586 0 0 0 34364 174 0 0 20 0 16 0 63326124 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319113677448 140319498371815 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10686560 memory=1196 CPUtime=25.57 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) S 22979 22982 12560 0 -1 1077944384 78245 0 0 0 2552 5 0 0 20 0 16 0 63326126 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319069775040 140319505753813 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10686560 memory=288230574492221466 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319068722528 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10686560 memory=288230617509003574 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319067670144 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10686560 memory=15254835616287083 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10686560 memory=3068 CPUtime=0.6 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 2337 0 0 0 59 1 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318997473152 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10686560 memory=4144 CPUtime=1.28 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 10425 0 0 0 127 1 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318996420640 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10686560 memory=36108 CPUtime=0.46 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 3363 0 0 0 45 1 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318995368352 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10686560 memory=1292 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10686560 memory=2384 CPUtime=0.31 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1282 0 0 0 17 14 0 0 20 0 16 0 63326134 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=23024] ppid=22979 vsize=10686560 memory=8289308 CPUtime=0 cores=1,3,5,7
/proc/22982/task/23024/stat : 23024 (java) S 22979 22982 12560 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 16 0 63363204 10943037440 2072327 18446744073709551615 4194304 4196468 140728189967536 140318990110256 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 1420.19 s
Current children cumulated vsize: 10686560 KiB
Current children cumulated memory: 8289308 KiB

[startup+389.601 s]
/proc/loadavg: 4.73 4.35 4.05 6/211 23026
/proc/meminfo: memFree=22957304/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10686560 memory=8289312 CPUtime=1422.11 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 568263 0 0 0 141511 700 0 0 20 0 16 0 63326114 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2671640 2072328 3180 1 0 2661055 0
[pid=22982/tid=22984] ppid=22979 vsize=10686560 memory=8289308 CPUtime=13.19 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) S 22979 22982 12560 0 -1 1077944384 20552 0 0 0 1304 15 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319509984288 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10686560 memory=1004 CPUtime=345.7 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) S 22979 22982 12560 0 -1 1077944384 128039 0 0 0 34404 166 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10686560 memory=2016 CPUtime=343.84 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) S 22979 22982 12560 0 -1 1077944384 79507 0 0 0 34216 168 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10686560 memory=1196 CPUtime=344.92 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) S 22979 22982 12560 0 -1 1077944384 63894 0 0 0 34329 163 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10686560 memory=1004 CPUtime=345.74 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) S 22979 22982 12560 0 -1 1077944384 178586 0 0 0 34400 174 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319113677328 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10686560 memory=2016 CPUtime=25.98 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) R 22979 22982 12560 0 -1 4202560 78791 0 0 0 2593 5 0 0 20 0 16 0 63326126 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319069775040 140319490740116 0 0 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10686560 memory=1196 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319068722528 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10686560 memory=8600 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319067670144 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10686560 memory=1716 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10686560 memory=14260 CPUtime=0.6 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 2337 0 0 0 59 1 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318997473152 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10686560 memory=796 CPUtime=1.28 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 10425 0 0 0 127 1 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318996420640 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10686560 memory=1228 CPUtime=0.46 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 3363 0 0 0 45 1 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318995368352 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10686560 memory=1412 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10686560 memory=15584 CPUtime=0.31 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1282 0 0 0 17 14 0 0 20 0 16 0 63326134 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=23024] ppid=22979 vsize=10686560 memory=22284 CPUtime=0 cores=1,3,5,7
/proc/22982/task/23024/stat : 23024 (java) S 22979 22982 12560 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 16 0 63363204 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318990110256 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 1422.11 s
Current children cumulated vsize: 10686560 KiB
Current children cumulated memory: 8289312 KiB

[startup+389.801 s]
/proc/loadavg: 4.73 4.35 4.05 6/211 23026
/proc/meminfo: memFree=22957304/32770624 swapFree=67105588/67108860
[pid=22982] ppid=22979 vsize=10686560 memory=8289312 CPUtime=1422.31 cores=1,3,5,7
/proc/22982/stat : 22982 (java) S 22979 22982 12560 0 -1 1077944320 568263 0 0 0 141531 700 0 0 20 0 16 0 63326114 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140728189950080 140319505743607 0 0 1 16800974 18446744073709551615 0 0 17 1 0 0 9 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
/proc/22982/statm: 2671640 2072328 3180 1 0 2661055 0
[pid=22982/tid=22984] ppid=22979 vsize=10686560 memory=4144 CPUtime=13.19 cores=1,3,5,7
/proc/22982/task/22984/stat : 22984 (java) S 22979 22982 12560 0 -1 1077944384 20552 0 0 0 1304 15 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319509984288 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22985] ppid=22979 vsize=10686560 memory=-8774313645642428999 CPUtime=345.7 cores=1,3,5,7
/proc/22982/task/22985/stat : 22985 (java) S 22979 22982 12560 0 -1 1077944384 128039 0 0 0 34404 166 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319468849552 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22986] ppid=22979 vsize=10686560 memory=1292 CPUtime=343.84 cores=1,3,5,7
/proc/22982/task/22986/stat : 22986 (java) S 22979 22982 12560 0 -1 1077944384 79507 0 0 0 34216 168 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319115782416 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22987] ppid=22979 vsize=10686560 memory=2384 CPUtime=344.92 cores=1,3,5,7
/proc/22982/task/22987/stat : 22987 (java) S 22979 22982 12560 0 -1 1077944384 63894 0 0 0 34329 163 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319114730128 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22988] ppid=22979 vsize=10686560 memory=1688 CPUtime=345.74 cores=1,3,5,7
/proc/22982/task/22988/stat : 22988 (java) S 22979 22982 12560 0 -1 1077944384 178586 0 0 0 34400 174 0 0 20 0 16 0 63326124 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319113677328 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22989] ppid=22979 vsize=10686560 memory=5808 CPUtime=26.18 cores=1,3,5,7
/proc/22982/task/22989/stat : 22989 (java) R 22979 22982 12560 0 -1 4202560 78791 0 0 0 2613 5 0 0 20 0 16 0 63326126 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319069775040 140319490740031 0 0 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22990] ppid=22979 vsize=10686560 memory=4612 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22990/stat : 22990 (java) S 22979 22982 12560 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319068722528 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22991] ppid=22979 vsize=10686560 memory=8289308 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22991/stat : 22991 (java) S 22979 22982 12560 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 16 0 63326126 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319067670144 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22992] ppid=22979 vsize=10686560 memory=6935650355288821840 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22992/stat : 22992 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140319066618448 140319505762203 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22993] ppid=22979 vsize=10686560 memory=-8774313645642428999 CPUtime=0.6 cores=1,3,5,7
/proc/22982/task/22993/stat : 22993 (java) S 22979 22982 12560 0 -1 1077944384 2337 0 0 0 59 1 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318997473152 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22994] ppid=22979 vsize=10686560 memory=-8774313645642428999 CPUtime=1.28 cores=1,3,5,7
/proc/22982/task/22994/stat : 22994 (java) S 22979 22982 12560 0 -1 1077944384 10425 0 0 0 127 1 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318996420640 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22995] ppid=22979 vsize=10686560 memory=4126316290023845779 CPUtime=0.46 cores=1,3,5,7
/proc/22982/task/22995/stat : 22995 (java) S 22979 22982 12560 0 -1 1077944384 3363 0 0 0 45 1 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318995368352 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22996] ppid=22979 vsize=10686560 memory=3208 CPUtime=0 cores=1,3,5,7
/proc/22982/task/22996/stat : 22996 (java) S 22979 22982 12560 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 63326129 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318994315744 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=22997] ppid=22979 vsize=10686560 memory=4072 CPUtime=0.31 cores=1,3,5,7
/proc/22982/task/22997/stat : 22997 (java) S 22979 22982 12560 0 -1 1077944384 1282 0 0 0 17 14 0 0 20 0 16 0 63326134 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318993263536 140319505754754 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
[pid=22982/tid=23024] ppid=22979 vsize=10686560 memory=1152 CPUtime=0 cores=1,3,5,7
/proc/22982/task/23024/stat : 23024 (java) S 22979 22982 12560 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 16 0 63363204 10943037440 2072328 18446744073709551615 4194304 4196468 140728189967536 140318990110256 140319505753813 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11620352 140728189968784 140728189968937 140728189968937 140728189972431 0
Current children cumulated CPU time: 1422.31 s
Current children cumulated vsize: 10686560 KiB
Current children cumulated memory: 8289312 KiB

Child status: 0
Real time (s): 389.91
CPU time (s): 1422.41
CPU user time (s): 1415.37
CPU system time (s): 7.04945
CPU usage (%): 364.806
Max. virtual memory (cumulated for all children) (KiB): 10686560
Max. memory (cumulated for all children) (KiB): 8289312

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1415.37
system time used= 7.04945
maximum resident set size= 8289572
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 568303
page faults= 0
swaps= 0
block input operations= 0
block output operations= 520
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 24543
involuntary context switches= 15956


# summary of solver processes directly reported to runsolver:
#   pid: 22982
#   total CPU time (s): 1422.41
#   total CPU user time (s): 1415.37
#   total CPU system time (s): 7.04945

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.5056 second user time and 3.68111 second system time

The end

Launcher Data

Begin job on node126 at 2017-08-13 09:47:45
IDJOB=4263664
IDBENCH=120438
IDSOLVER=2651
FILE ID=node126/4263664-1502611307
RUNJOBID= node126-1502596857-19457
PBS_JOBID= 
Free space on /tmp= 62028 MiB

SOLVER NAME= sat4j-CSP 2017-07-05
BENCH NAME= XCSP17/StripPacking/StripPacking-m1-seriesN/StripPacking-N7e.xml
COMMAND LINE= java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4263664-1502611307/watcher-4263664-1502611307 -o /tmp/evaluation-result-4263664-1502611307/solver-4263664-1502611307 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node126-1502596857-19457 --watchdog 2580  java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4263664-1502611307.xml

TIME LIMIT= 2520 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 4

MD5SUM BENCH= a2078c203ecd0c92972679cdeaf30c01
RANDOM SEED=781941605

node126.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.81
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.81
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.81
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.81
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        31406136 kB
MemAvailable:   31627940 kB
Buffers:          255784 kB
Cached:           236304 kB
SwapCached:          524 kB
Active:           756684 kB
Inactive:         131112 kB
Active(anon):     343644 kB
Inactive(anon):    85632 kB
Active(file):     413040 kB
Inactive(file):    45480 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67105588 kB
Dirty:              1632 kB
Writeback:             0 kB
AnonPages:        392856 kB
Mapped:            57408 kB
Shmem:             33440 kB
Slab:             184288 kB
SReclaimable:     158236 kB
SUnreclaim:        26052 kB
KernelStack:        3456 kB
PageTables:         5528 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1160696 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    307200 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      101760 kB
DirectMap2M:    33443840 kB

Free space on /tmp at the end= 62028 MiB
End job on node126 at 2017-08-13 09:54:15