Trace number 4263097

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 NameAnswerobjective functionCPU timeWall clock time
sat4j-CSP 2017-07-05? 1640.84 443.367

General information on the benchmark

NameScheduling/Scheduling-fs-taillard/
Taillard-fs-020-05-8.xml
MD5SUM0e54ac42af650b711b86c7f2d29cb640
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark1239
Best CPU time to get the best result obtained on this benchmark2400.12
Satisfiable
(Un)Satisfiability was proved
Number of variables120
Number of constraints125
Number of domains1
Minimum domain size1330
Maximum domain size1330
Distribution of domain sizes[{"size":1330,"count":120}]
Minimum variable degree2
Maximum variable degree3
Distribution of variable degrees[{"degree":2,"count":20},{"degree":3,"count":100}]
Minimum constraint arity1
Maximum constraint arity20
Distribution of constraint arities[{"arity":1,"count":20},{"arity":2,"count":100},{"arity":20,"count":5}]
Number of extensional constraints0
Number of intensional constraints120
Distribution of constraint types[{"type":"intension","count":120},{"type":"noOverlap","count":5}]
Optimization problemYES
Type of objectivemin MAXIMUM

Solver Data

1528.83/413.32	Exception in thread "main" java.lang.OutOfMemoryError: GC overhead limit exceeded
1528.83/413.32		at java.util.Arrays.copyOfRange(Arrays.java:3664)
1528.83/413.32		at java.lang.String.<init>(String.java:207)
1528.83/413.32		at java.io.DataInputStream.readUTF(DataInputStream.java:661)
1528.83/413.32		at java.io.DataInputStream.readUTF(DataInputStream.java:564)
1528.83/413.32		at sun.util.calendar.ZoneInfoFile.load(ZoneInfoFile.java:312)
1528.83/413.32		at sun.util.calendar.ZoneInfoFile.access$000(ZoneInfoFile.java:61)
1528.83/413.32		at sun.util.calendar.ZoneInfoFile$1.run(ZoneInfoFile.java:258)
1528.83/413.32		at java.security.AccessController.doPrivileged(Native Method)
1528.83/413.32		at sun.util.calendar.ZoneInfoFile.<clinit>(ZoneInfoFile.java:251)
1528.83/413.32		at sun.util.calendar.ZoneInfo.getTimeZone(ZoneInfo.java:589)
1528.83/413.32		at java.util.TimeZone.getTimeZone(TimeZone.java:560)
1528.83/413.32		at java.util.TimeZone.setDefaultZone(TimeZone.java:666)
1528.83/413.32		at java.util.TimeZone.getDefaultRef(TimeZone.java:636)
1528.83/413.32		at java.util.TimeZone.getDefault(TimeZone.java:625)
1528.83/413.32		at java.util.Calendar.getInstance(Calendar.java:1640)
1528.83/413.32		at java.util.Formatter$FormatSpecifier.printDateTime(Formatter.java:2826)
1528.83/413.32		at java.util.Formatter$FormatSpecifier.print(Formatter.java:2740)
1528.83/413.32		at java.util.Formatter.format(Formatter.java:2526)
1528.83/413.32		at java.util.Formatter.format(Formatter.java:2455)
1528.83/413.32		at java.lang.String.format(String.java:2940)
1528.83/413.32		at java.util.logging.SimpleFormatter.format(SimpleFormatter.java:161)
1528.83/413.32		at java.util.logging.StreamHandler.publish(StreamHandler.java:211)
1528.83/413.32		at java.util.logging.ConsoleHandler.publish(ConsoleHandler.java:116)
1528.83/413.32		at java.util.logging.Logger.log(Logger.java:738)
1528.83/413.32		at java.util.logging.Logger.doLog(Logger.java:765)
1528.83/413.32		at java.util.logging.Logger.log(Logger.java:876)
1528.83/413.32		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:301)
1528.83/413.32		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
1528.83/413.32		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
1528.83/413.32		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
1528.83/413.32		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
1528.83/413.32		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
1603.16/433.25	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
1603.16/433.25	c This is free software under the dual EPL/GNU LGPL licenses.
1603.16/433.25	c See www.sat4j.org for details.
1603.16/433.25	c That software uses the Rhino library from the Mozilla project.
1603.16/433.25	c version CUSTOM.v20170705
1603.16/433.25	c java.runtime.name	Java(TM) SE Runtime Environment
1603.16/433.25	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
1603.16/433.25	c java.vm.version	25.131-b11
1603.16/433.25	c java.vm.vendor	Oracle Corporation
1603.16/433.25	c sun.arch.data.model	64
1603.16/433.25	c java.version		1.8.0_131
1603.16/433.25	c os.name		Linux
1603.16/433.25	c os.version		3.10.0-514.16.1.el7.x86_64
1603.16/433.25	c os.arch		amd64
1603.16/433.25	c Free memory 		499604488
1603.16/433.25	c Max memory 		7247757312
1603.16/433.25	c Total memory 		504889344
1603.16/433.25	c Number of processors 	4
1603.16/433.25	c c --- Begin Solver configuration ---
1603.16/433.25	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
1603.16/433.25	c Learn all clauses as in MiniSAT
1603.16/433.25	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
1603.16/433.25	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
1603.16/433.25	c No reason simplification
1603.16/433.25	c Glucose 2.1 dynamic restart strategy
1603.16/433.25	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
1603.16/433.25	c timeout=2147483s
1603.16/433.25	c DB Simplification allowed=false
1603.16/433.25	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
1603.16/433.25	c --- End Solver configuration ---
1640.77/443.32	c starts		: 0
1640.77/443.32	c conflicts		: 0
1640.77/443.32	c decisions		: 0
1640.77/443.32	c propagations		: 0
1640.77/443.32	c inspects		: 0
1640.77/443.32	c shortcuts		: 0
1640.77/443.32	c learnt literals	: 0
1640.77/443.32	c learnt binary clauses	: 0
1640.77/443.32	c learnt ternary clauses	: 0
1640.77/443.32	c learnt constraints	: 0
1640.77/443.32	c ignored constraints	: 0
1640.77/443.32	c root simplifications	: 0
1640.77/443.32	c removed literals (reason simplification)	: 0
1640.77/443.32	c reason swapping (by a shorter reason)	: 0
1640.77/443.32	c Calls to reduceDB	: 0
1640.77/443.32	c Number of update (reduction) of LBD	: 0
1640.77/443.32	c Imported unit clauses	: 0
1640.77/443.32	c number of reductions to clauses (during analyze)	: 0
1640.77/443.32	c number of learned constraints concerned by reduction	: 0
1640.77/443.32	c number of learning phase by resolution	: 0
1640.77/443.32	c number of learning phase by cutting planes	: 0
1640.77/443.32	c number of rounding to 1 operations	: 0
1640.77/443.32	c number of easy rounding to 1 operations (no literal elimination needed)	: 0
1640.77/443.32	c number of reductions of the coefficients by power 2 	: 0
1640.77/443.32	c number of right shift for reduction by power 2 	: 0
1640.77/443.32	c number of reductions of the coefficients by GCD over coefficients 	: 0
1640.77/443.32	c speed (assignments/second)	: 0.0
1640.77/443.32	c non guided choices	0
1640.77/443.32	c learnt constraints type 
1640.77/443.32	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 (15365 MiB free)
  memory of node 1: 16384 MiB (7300 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4263097-1502586278/watcher-4263097-1502586278 -o /tmp/evaluation-result-4263097-1502586278/solver-4263097-1502586278 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node128-1502582933-8032 --watchdog 2580 java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4263097-1502586278.xml 

running on 4 cores: 0,2,4,6

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
solver pid=9548, runsolver pid=9545
Current StackSize limit: 8192 KiB


[startup+0.1002 s]*
/proc/loadavg: 7.54 7.26 6.71 6/206 9554
/proc/meminfo: memFree=23201824/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10151672 memory=18484 CPUtime=0.01 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 3981 0 0 0 1 0 0 0 20 0 9 0 12510516 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16784584 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2537918 4621 2082 1 0 2527415 0
[pid=9548/tid=9550] ppid=9545 vsize=10151672 memory=7078076838863583850 CPUtime=0.01 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) R 9545 9548 7968 0 -1 4202560 2624 0 0 0 1 0 0 0 20 0 9 0 12510524 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234705077392 140234684917086 0 4 1 16784584 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10151672 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 9 0 12510525 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16784584 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10151672 memory=140616895264384 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 9 0 12510525 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16784584 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10151672 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 9 0 12510525 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10151672 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 9 0 12510525 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16784584 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10151672 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 9 0 12510526 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234196937584 140234700847746 0 0 1 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10151672 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 9 0 12510527 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234195883552 140234700846805 0 4 1 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10151672 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 9 0 12510527 10395312128 4621 18446744073709551615 4194304 4196468 140723088094896 140234194830768 140234700846805 0 4 1 16784584 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 0.01 s
Current children cumulated vsize: 10151672 KiB
Current children cumulated memory: 18484 KiB

[startup+0.210317 s]*
/proc/loadavg: 7.54 7.26 6.71 5/214 9562
/proc/meminfo: memFree=23198000/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10484492 memory=23540 CPUtime=0.06 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 4844 0 0 0 5 1 0 0 20 0 14 0 12510516 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2621123 5885 2578 1 0 2610620 0
[pid=9548/tid=9550] ppid=9545 vsize=10484492 memory=8316850467074736180 CPUtime=0.04 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) D 9545 9548 7968 0 -1 4202560 2953 0 0 0 4 0 0 0 20 0 14 0 12510524 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234705074080 140234700858621 0 4 1 16800974 18446744071580418449 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10484492 memory=11909 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 14 0 12510525 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10484492 memory=140616895272155 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 14 0 12510525 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10484492 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 14 0 12510525 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10484492 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 14 0 12510525 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10484492 memory=140616895264384 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 14 0 12510526 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234196937584 140234700847746 0 0 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10484492 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 14 0 12510527 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234195883552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10484492 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 14 0 12510527 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10484492 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 14 0 12510529 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10484492 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 306 0 0 0 0 0 0 0 20 0 14 0 12510529 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234192726384 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10484492 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 14 0 12510529 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234191673584 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10484492 memory=140616895264384 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 214 0 0 0 0 0 0 0 20 0 14 0 12510529 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234190620784 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10484492 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 14 0 12510530 10736119808 5885 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 0.06 s
Current children cumulated vsize: 10484492 KiB
Current children cumulated memory: 23540 KiB

[startup+0.310245 s]*
/proc/loadavg: 7.54 7.26 6.71 7/215 9563
/proc/meminfo: memFree=23195952/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10551156 memory=27196 CPUtime=0.1 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 5252 0 0 0 9 1 0 0 20 0 15 0 12510516 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2637789 6799 2788 1 0 2627261 0
[pid=9548/tid=9550] ppid=9545 vsize=10551156 memory=8316850467074736180 CPUtime=0.07 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) R 9545 9548 7968 0 -1 4202560 3168 0 0 0 7 0 0 0 20 0 15 0 12510524 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234705075536 140234684917086 0 4 1 16800974 0 0 0 -1 4 0 0 14 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10551156 memory=11909 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12510525 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10551156 memory=140616895272155 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12510525 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10551156 memory=6944656592455359580 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12510525 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10551156 memory=3472323898181169199 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12510525 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10551156 memory=3471343013216102064 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) S 9545 9548 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12510526 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234196937584 140234700847746 0 0 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10551156 memory=8029366422208721160 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 12510527 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234195883552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10551156 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 12510527 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10551156 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510529 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10551156 memory=0 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 428 0 0 0 0 0 0 0 20 0 15 0 12510529 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234192726384 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10551156 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510529 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234191673584 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10551156 memory=140616895264384 CPUtime=0.01 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 285 0 0 0 1 0 0 0 20 0 15 0 12510529 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234190620784 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10551156 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510530 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9563] ppid=9545 vsize=10551156 memory=140616895264384 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9563/stat : 9563 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12510545 10804383744 6799 18446744073709551615 4194304 4196468 140723088094896 140234188516528 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 0.1 s
Current children cumulated vsize: 10551156 KiB
Current children cumulated memory: 27196 KiB

[startup+0.710532 s]
/proc/loadavg: 7.54 7.26 6.71 8/215 9563
/proc/meminfo: memFree=23180336/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10551232 memory=194636 CPUtime=0.94 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 10207 0 0 0 84 10 0 0 20 0 15 0 12510516 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2637808 48659 3052 1 0 2627261 0
[pid=9548/tid=9550] ppid=9545 vsize=10551232 memory=0 CPUtime=0.43 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) R 9545 9548 7968 0 -1 4202560 6807 0 0 0 39 4 0 0 20 0 15 0 12510524 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234705073280 140234686904724 0 4 1 16800974 0 0 0 -1 4 0 0 14 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10551232 memory=3880 CPUtime=0.01 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 28 0 0 0 1 0 0 0 20 0 15 0 12510525 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10551232 memory=3868 CPUtime=0.02 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 28 0 0 0 1 1 0 0 20 0 15 0 12510525 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10551232 memory=3904 CPUtime=0.01 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 20 0 0 0 1 0 0 0 20 0 15 0 12510525 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10551232 memory=2760 CPUtime=0.01 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 26 0 0 0 1 0 0 0 20 0 15 0 12510525 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10551232 memory=2760 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) S 9545 9548 7968 0 -1 1077944384 82 0 0 0 0 0 0 0 20 0 15 0 12510526 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234196937584 140234700847746 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10551232 memory=4060 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 12510527 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234195883616 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10551232 memory=1152 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 12510527 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10551232 memory=3056 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510529 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10551232 memory=8310172 CPUtime=0.1 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) R 9545 9548 7968 0 -1 4202560 610 0 0 0 10 0 0 0 20 0 15 0 12510529 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234192711376 140234684049106 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10551232 memory=4120 CPUtime=0.11 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) R 9545 9548 7968 0 -1 4202560 304 0 0 0 11 0 0 0 20 0 15 0 12510529 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234191659648 140234684322558 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10551232 memory=4084 CPUtime=0.16 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 941 0 0 0 16 0 0 0 20 0 15 0 12510529 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234190620784 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10551232 memory=4580 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510530 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9563] ppid=9545 vsize=10551232 memory=1156 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9563/stat : 9563 (java) S 9545 9548 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12510545 10804461568 48659 18446744073709551615 4194304 4196468 140723088094896 140234188516528 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 0.94 s
Current children cumulated vsize: 10551232 KiB
Current children cumulated memory: 194636 KiB

[startup+1.50654 s]
/proc/loadavg: 7.54 7.26 6.71 8/215 9563
/proc/meminfo: memFree=22958456/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10551232 memory=531304 CPUtime=3.25 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 15683 0 0 0 287 38 0 0 20 0 15 0 12510516 10804461568 132826 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2637808 132826 3081 1 0 2627261 0
[pid=9548/tid=9550] ppid=9545 vsize=10551232 memory=3880 CPUtime=0.96 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) S 9545 9548 7968 0 -1 1077944384 7897 0 0 0 90 6 0 0 20 0 15 0 12510524 10804461568 132826 18446744073709551615 4194304 4196468 140723088094896 140234705070304 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 14 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10551232 memory=3868 CPUtime=0.28 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) R 9545 9548 7968 0 -1 4202560 222 0 0 0 21 7 0 0 20 0 15 0 12510525 10804461568 132826 18446744073709551615 4194304 4196468 140723088094896 140234312247840 140234685858596 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10551232 memory=3904 CPUtime=0.27 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) R 9545 9548 7968 0 -1 4202560 214 0 0 0 20 7 0 0 20 0 15 0 12510525 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234693933300 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10551232 memory=2760 CPUtime=0.28 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) R 9545 9548 7968 0 -1 4202560 171 0 0 0 21 7 0 0 20 0 15 0 12510525 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234693936299 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10551232 memory=2760 CPUtime=0.27 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) R 9545 9548 7968 0 -1 4202560 219 0 0 0 20 7 0 0 20 0 15 0 12510525 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234693933316 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10551232 memory=4060 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) S 9545 9548 7968 0 -1 1077944384 82 0 0 0 0 0 0 0 20 0 15 0 12510526 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234196936096 140234700846805 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10551232 memory=1152 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 12510527 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234195883616 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10551232 memory=3056 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 12510527 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10551232 memory=8310172 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510529 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10551232 memory=4120 CPUtime=0.42 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 2023 0 0 0 42 0 0 0 20 0 15 0 12510529 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234192726384 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10551232 memory=4084 CPUtime=0.48 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 2429 0 0 0 48 0 0 0 20 0 15 0 12510529 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234191673584 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10551232 memory=4580 CPUtime=0.2 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 1067 0 0 0 20 0 0 0 20 0 15 0 12510529 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234190620784 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10551232 memory=1156 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12510530 10804461568 133338 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0

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

[pid=9548/tid=9551] ppid=9545 vsize=10684512 memory=7680170660397595203 CPUtime=401 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) R 9545 9548 7968 0 -1 4202560 25167 0 0 0 39909 191 0 0 20 0 17 0 12510525 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234312247840 140234685826103 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10684512 memory=640 CPUtime=399.77 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) R 9545 9548 7968 0 -1 4202560 17820 0 0 0 39783 194 0 0 20 0 17 0 12510525 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234311194960 140234693464807 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10684512 memory=1792 CPUtime=400.55 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) R 9545 9548 7968 0 -1 4202560 27961 0 0 0 39853 202 0 0 20 0 17 0 12510525 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234310142160 140234693464807 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10684512 memory=960 CPUtime=401.11 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) R 9545 9548 7968 0 -1 4202560 30705 0 0 0 39904 207 0 0 20 0 17 0 12510525 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234309089672 140234693464807 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10684512 memory=2948 CPUtime=20.13 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) S 9545 9548 7968 0 -1 1077944384 81413 0 0 0 2008 5 0 0 20 0 17 0 12510526 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234196936128 140234700846805 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10684512 memory=8309484 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234195883616 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10684512 memory=16444 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10684512 memory=7544 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510529 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10684512 memory=8297948 CPUtime=0.52 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 4188 0 0 0 52 0 0 0 20 0 17 0 12510529 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234192726432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10684512 memory=3880 CPUtime=0.56 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 4067 0 0 0 56 0 0 0 20 0 17 0 12510529 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234191673344 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10684512 memory=3868 CPUtime=0.26 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 3101 0 0 0 26 0 0 0 20 0 17 0 12510529 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234190618432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10684512 memory=3904 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510530 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9563] ppid=9545 vsize=10684512 memory=2760 CPUtime=0.15 cores=0,2,4,6
/proc/9548/task/9563/stat : 9563 (java) S 9545 9548 7968 0 -1 1077944384 726 0 0 0 10 5 0 0 20 0 17 0 12510545 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234188516528 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9668] ppid=9545 vsize=10684512 memory=2760 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9668/stat : 9668 (java) S 9545 9548 7968 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234187460720 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9669] ppid=9545 vsize=10684512 memory=4060 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9669/stat : 9669 (java) S 9545 9548 7968 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074498 18446744073709551615 4194304 4196468 140723088094896 140234186408368 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 1638.96 s
Current children cumulated vsize: 10684512 KiB
Current children cumulated memory: 8297992 KiB

[startup+442.802 s]
/proc/loadavg: 6.85 7.08 6.85 9/213 9672
/proc/meminfo: memFree=14913212/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10684512 memory=8297996 CPUtime=1640.27 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 214225 0 0 0 163209 818 0 0 20 0 17 0 12510516 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2671128 2074499 3148 1 0 2660543 0
[pid=9548/tid=9550] ppid=9545 vsize=10684512 memory=1700 CPUtime=14.81 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) S 9545 9548 7968 0 -1 1077944384 17482 0 0 0 1470 11 0 0 20 0 17 0 12510524 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234705077280 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 14 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10684512 memory=8297992 CPUtime=401.31 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 25167 0 0 0 39940 191 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10684512 memory=7680170660397595203 CPUtime=400.06 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 17820 0 0 0 39812 194 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10684512 memory=288230613214036277 CPUtime=400.85 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 27961 0 0 0 39883 202 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10684512 memory=15540730097567645 CPUtime=401.41 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 30705 0 0 0 39934 207 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10684512 memory=1228 CPUtime=20.22 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) R 9545 9548 7968 0 -1 4202560 81507 0 0 0 2017 5 0 0 20 0 17 0 12510526 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234196936016 140234685832996 0 0 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10684512 memory=1000 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234195883616 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10684512 memory=2012 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10684512 memory=5520 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10684512 memory=4612 CPUtime=0.52 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 4188 0 0 0 52 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234192726432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10684512 memory=792 CPUtime=0.56 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 4067 0 0 0 56 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234191673344 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10684512 memory=8676 CPUtime=0.26 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 3101 0 0 0 26 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234190618432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10684512 memory=1440 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510530 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9563] ppid=9545 vsize=10684512 memory=9916 CPUtime=0.15 cores=0,2,4,6
/proc/9548/task/9563/stat : 9563 (java) S 9545 9548 7968 0 -1 1077944384 726 0 0 0 10 5 0 0 20 0 17 0 12510545 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234188516528 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9668] ppid=9545 vsize=10684512 memory=1200 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9668/stat : 9668 (java) S 9545 9548 7968 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234187460720 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9669] ppid=9545 vsize=10684512 memory=15872 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9669/stat : 9669 (java) S 9545 9548 7968 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234186408368 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 1640.27 s
Current children cumulated vsize: 10684512 KiB
Current children cumulated memory: 8297996 KiB

[startup+443.201 s]
/proc/loadavg: 6.85 7.08 6.85 6/213 9672
/proc/meminfo: memFree=14913204/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10684512 memory=8297996 CPUtime=1640.67 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 214259 0 0 0 163249 818 0 0 20 0 17 0 12510516 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2671128 2074499 3148 1 0 2660543 0
[pid=9548/tid=9550] ppid=9545 vsize=10684512 memory=1236 CPUtime=14.81 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) S 9545 9548 7968 0 -1 1077944384 17482 0 0 0 1470 11 0 0 20 0 17 0 12510524 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234705077280 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 14 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10684512 memory=7680170660397595203 CPUtime=401.31 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 25167 0 0 0 39940 191 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10684512 memory=8676 CPUtime=400.06 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 17820 0 0 0 39812 194 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10684512 memory=4124 CPUtime=400.85 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 27961 0 0 0 39883 202 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10684512 memory=11096 CPUtime=401.41 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 30705 0 0 0 39934 207 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10684512 memory=2424 CPUtime=20.61 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) R 9545 9548 7968 0 -1 4202560 81541 0 0 0 2056 5 0 0 20 0 17 0 12510526 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234196936016 140234685833000 0 0 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10684512 memory=1296 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234195883616 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10684512 memory=7680170660397595203 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10684512 memory=2424 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10684512 memory=1296 CPUtime=0.52 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 4188 0 0 0 52 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234192726432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10684512 memory=1732 CPUtime=0.56 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 4067 0 0 0 56 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234191673344 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10684512 memory=1700 CPUtime=0.26 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 3101 0 0 0 26 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234190618432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10684512 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510530 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9563] ppid=9545 vsize=10684512 memory=1000 CPUtime=0.15 cores=0,2,4,6
/proc/9548/task/9563/stat : 9563 (java) S 9545 9548 7968 0 -1 1077944384 726 0 0 0 10 5 0 0 20 0 17 0 12510545 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234188516528 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9668] ppid=9545 vsize=10684512 memory=1732 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9668/stat : 9668 (java) S 9545 9548 7968 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234187460720 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9669] ppid=9545 vsize=10684512 memory=1700 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9669/stat : 9669 (java) S 9545 9548 7968 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234186408368 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 1640.67 s
Current children cumulated vsize: 10684512 KiB
Current children cumulated memory: 8297996 KiB

[startup+443.301 s]
/proc/loadavg: 6.85 7.08 6.85 6/213 9672
/proc/meminfo: memFree=14913204/32770624 swapFree=67108860/67108860
[pid=9548] ppid=9545 vsize=10684512 memory=8297996 CPUtime=1640.77 cores=0,2,4,6
/proc/9548/stat : 9548 (java) S 9545 9548 7968 0 -1 1077944320 214259 0 0 0 163259 818 0 0 20 0 17 0 12510516 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140723088077440 140234700836599 0 0 1 16800974 18446744073709551615 0 0 17 2 0 0 7 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
/proc/9548/statm: 2671128 2074499 3148 1 0 2660543 0
[pid=9548/tid=9550] ppid=9545 vsize=10684512 memory=3904 CPUtime=14.81 cores=0,2,4,6
/proc/9548/task/9550/stat : 9550 (java) S 9545 9548 7968 0 -1 1077944384 17482 0 0 0 1470 11 0 0 20 0 17 0 12510524 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234705077280 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 14 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9551] ppid=9545 vsize=10684512 memory=2760 CPUtime=401.31 cores=0,2,4,6
/proc/9548/task/9551/stat : 9551 (java) S 9545 9548 7968 0 -1 1077944384 25167 0 0 0 39940 191 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234312247952 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9552] ppid=9545 vsize=10684512 memory=8297980 CPUtime=400.06 cores=0,2,4,6
/proc/9548/task/9552/stat : 9552 (java) S 9545 9548 7968 0 -1 1077944384 17820 0 0 0 39812 194 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234311195152 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9553] ppid=9545 vsize=10684512 memory=8297960 CPUtime=400.85 cores=0,2,4,6
/proc/9548/task/9553/stat : 9553 (java) S 9545 9548 7968 0 -1 1077944384 27961 0 0 0 39883 202 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234310142352 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9554] ppid=9545 vsize=10684512 memory=8297980 CPUtime=401.41 cores=0,2,4,6
/proc/9548/task/9554/stat : 9554 (java) S 9545 9548 7968 0 -1 1077944384 30705 0 0 0 39934 207 0 0 20 0 17 0 12510525 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234309089552 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9555] ppid=9545 vsize=10684512 memory=8297980 CPUtime=20.71 cores=0,2,4,6
/proc/9548/task/9555/stat : 9555 (java) R 9545 9548 7968 0 -1 4202560 81541 0 0 0 2066 5 0 0 20 0 17 0 12510526 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234196936016 140234679206779 0 0 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9556] ppid=9545 vsize=10684512 memory=8297992 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9556/stat : 9556 (java) S 9545 9548 7968 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234195883616 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9557] ppid=9545 vsize=10684512 memory=8297980 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9557/stat : 9557 (java) S 9545 9548 7968 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 17 0 12510527 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234194830704 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9558] ppid=9545 vsize=10684512 memory=8297956 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9558/stat : 9558 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234193779024 140234700855195 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9559] ppid=9545 vsize=10684512 memory=4124 CPUtime=0.52 cores=0,2,4,6
/proc/9548/task/9559/stat : 9559 (java) S 9545 9548 7968 0 -1 1077944384 4188 0 0 0 52 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234192726432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9560] ppid=9545 vsize=10684512 memory=15872 CPUtime=0.56 cores=0,2,4,6
/proc/9548/task/9560/stat : 9560 (java) S 9545 9548 7968 0 -1 1077944384 4067 0 0 0 56 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234191673344 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9561] ppid=9545 vsize=10684512 memory=4040 CPUtime=0.26 cores=0,2,4,6
/proc/9548/task/9561/stat : 9561 (java) S 9545 9548 7968 0 -1 1077944384 3101 0 0 0 26 0 0 0 20 0 17 0 12510529 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234190618432 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9562] ppid=9545 vsize=10684512 memory=16444 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9562/stat : 9562 (java) S 9545 9548 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 12510530 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234189568224 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9563] ppid=9545 vsize=10684512 memory=288230574492221466 CPUtime=0.15 cores=0,2,4,6
/proc/9548/task/9563/stat : 9563 (java) S 9545 9548 7968 0 -1 1077944384 726 0 0 0 10 5 0 0 20 0 17 0 12510545 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234188516528 140234700847746 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9668] ppid=9545 vsize=10684512 memory=302022887072858421 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9668/stat : 9668 (java) S 9545 9548 7968 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234187460720 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
[pid=9548/tid=9669] ppid=9545 vsize=10684512 memory=15540730097567645 CPUtime=0 cores=0,2,4,6
/proc/9548/task/9669/stat : 9669 (java) S 9545 9548 7968 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 17 0 12551849 10940940288 2074499 18446744073709551615 4194304 4196468 140723088094896 140234186408368 140234700846805 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 29843456 140723088097681 140723088097834 140723088097834 140723088101327 0
Current children cumulated CPU time: 1640.77 s
Current children cumulated vsize: 10684512 KiB
Current children cumulated memory: 8297996 KiB

Child status: 1
Real time (s): 443.367
CPU time (s): 1640.84
CPU user time (s): 1632.62
CPU system time (s): 8.21988
CPU usage (%): 370.086
Max. virtual memory (cumulated for all children) (KiB): 10684512
Max. memory (cumulated for all children) (KiB): 8297996

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1632.62
system time used= 8.21988
maximum resident set size= 8298340
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 214410
page faults= 0
swaps= 0
block input operations= 0
block output operations= 600
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 29799
involuntary context switches= 42140


# summary of solver processes directly reported to runsolver:
#   pid: 9548
#   total CPU time (s): 1640.84
#   total CPU user time (s): 1632.62
#   total CPU system time (s): 8.21988

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.49816 second user time and 4.44068 second system time

The end

Launcher Data

Begin job on node128 at 2017-08-13 02:50:41
IDJOB=4263097
IDBENCH=115627
IDSOLVER=2651
FILE ID=node128/4263097-1502586278
RUNJOBID= node128-1502582933-8032
PBS_JOBID= 
Free space on /tmp= 62028 MiB

SOLVER NAME= sat4j-CSP 2017-07-05
BENCH NAME= XCSP17/Scheduling/Scheduling-fs-taillard/Taillard-fs-020-05-8.xml
COMMAND LINE= java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4263097-1502586278/watcher-4263097-1502586278 -o /tmp/evaluation-result-4263097-1502586278/solver-4263097-1502586278 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node128-1502582933-8032 --watchdog 2580  java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4263097-1502586278.xml

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

MD5SUM BENCH= 0e54ac42af650b711b86c7f2d29cb640
RANDOM SEED=447379380

node128.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.94
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.94
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.94
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.94
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:        23210516 kB
MemAvailable:   23701772 kB
Buffers:          101320 kB
Cached:           678840 kB
SwapCached:            0 kB
Active:          8532692 kB
Inactive:         602996 kB
Active(anon):    8355488 kB
Inactive(anon):    16764 kB
Active(file):     177204 kB
Inactive(file):   586232 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              1672 kB
Writeback:             0 kB
AnonPages:       8355060 kB
Mapped:            44440 kB
Shmem:             17116 kB
Slab:             111896 kB
SReclaimable:      87312 kB
SUnreclaim:        24584 kB
KernelStack:        3520 kB
PageTables:        21856 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    8623132 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   8034304 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      132480 kB
DirectMap2M:    33413120 kB

Free space on /tmp at the end= 62028 MiB
End job on node128 at 2017-08-13 02:58:05