Trace number 4290167

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 2018-07-11? 331.349 128.099

General information on the benchmark

NameSubisomorphism/
Subisomorphism-g29-g50_c18.xml
MD5SUM6b43bee46cd3f7faf4796c0903a8d917
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 variables100
Number of constraints996
Number of domains1
Minimum domain size128
Maximum domain size128
Distribution of domain sizes[{"size":128,"count":100}]
Minimum variable degree11
Maximum variable degree33
Distribution of variable degrees[{"degree":11,"count":1},{"degree":12,"count":2},{"degree":13,"count":4},{"degree":14,"count":4},{"degree":16,"count":2},{"degree":17,"count":7},{"degree":18,"count":10},{"degree":19,"count":11},{"degree":20,"count":17},{"degree":21,"count":14},{"degree":22,"count":6},{"degree":23,"count":4},{"degree":24,"count":7},{"degree":25,"count":3},{"degree":26,"count":5},{"degree":27,"count":2},{"degree":33,"count":1}]
Minimum constraint arity1
Maximum constraint arity100
Distribution of constraint arities[{"arity":1,"count":89},{"arity":2,"count":906},{"arity":100,"count":1}]
Number of extensional constraints995
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":995},{"type":"allDifferent","count":1}]
Optimization problemNO
Type of objective

Solver Data

331.23/127.85	Jul 22, 2018 2:53:55 AM org.sat4j.reader.XMLCSP3Reader parseInstance
331.23/127.85	INFO: Runtime exception
331.23/127.85	java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:78)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:59)
331.23/127.85		at org.sat4j.csp.constraints3.GenericCtrBuilder.buildCtrSupports(GenericCtrBuilder.java:215)
331.23/127.85		at org.sat4j.csp.constraints3.GenericCtrBuilder.buildCtrExtension(GenericCtrBuilder.java:94)
331.23/127.85		at org.sat4j.reader.XMLCSP3Reader.buildCtrExtension(XMLCSP3Reader.java:419)
331.23/127.85		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
331.23/127.85		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
331.23/127.85		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:538)
331.23/127.85		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:521)
331.23/127.85		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
331.23/127.85		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
331.23/127.85		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:518)
331.23/127.85		at org.xcsp.parser.XCallbacks.loadGroup(XCallbacks.java:473)
331.23/127.85		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:433)
331.23/127.85		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:418)
331.23/127.85		at org.sat4j.reader.XMLCSP3Reader.loadInstance(XMLCSP3Reader.java:343)
331.23/127.85		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:308)
331.23/127.85		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
331.23/127.85		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
331.23/127.85		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
331.23/127.85		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
331.23/127.85		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
331.23/127.85	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.85		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.85		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.85		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.85		... 22 more
331.23/127.85	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.85		... 26 more
331.23/127.85	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.85		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.85		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.85		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.85		... 27 more
331.23/127.85	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.85		... 31 more
331.23/127.85	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.85		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.85		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.85		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.85		... 32 more
331.23/127.85	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.85		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 36 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 37 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 41 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 42 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 46 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 47 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 51 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 52 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 56 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 57 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 61 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 62 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 66 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 67 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 71 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 72 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 76 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 77 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 81 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 82 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		... 86 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		... 87 more
331.23/127.86	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:128)
331.23/127.86		... 91 more
331.23/127.86	Caused by: java.lang.reflect.InvocationTargetException
331.23/127.86		at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:126)
331.23/127.86		... 91 more
331.23/127.86	Caused by: java.lang.OutOfMemoryError: Java heap space
331.23/127.86		at org.sat4j.core.Vec.ensure(Vec.java:176)
331.23/127.86		at org.sat4j.core.Vec.push(Vec.java:183)
331.23/127.86		at org.sat4j.minisat.core.Solver.addConstr(Solver.java:1971)
331.23/127.86		at org.sat4j.minisat.core.Solver.addClause(Solver.java:426)
331.23/127.86		at org.sat4j.csp.CspSatSolverDecorator.addClause(CspSatSolverDecorator.java:147)
331.23/127.86		at org.sat4j.tools.SolverDecorator.addClause(SolverDecorator.java:236)
331.23/127.86		at org.sat4j.csp.intension.CspToPBSolverDecorator.addClause(CspToPBSolverDecorator.java:85)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.buildImplVar(TseitinBasedIntensionCtrEncoder.java:538)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorEq(TseitinBasedIntensionCtrEncoder.java:391)
331.23/127.86		at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:126)
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
331.23/127.86		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
331.23/127.86		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
331.23/127.86		at java.lang.reflect.Method.invoke(Method.java:498)
331.23/127.86		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
331.23/127.86	
331.30/128.06	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
331.30/128.06	c This is free software under the dual EPL/GNU LGPL licenses.
331.30/128.06	c See www.sat4j.org for details.
331.30/128.06	c That software uses the Rhino library from the Mozilla project.
331.30/128.06	c version 2.3.6-SNAPSHOT
331.30/128.06	c java.runtime.name	Java(TM) SE Runtime Environment
331.30/128.06	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
331.30/128.06	c java.vm.version	25.131-b11
331.30/128.06	c java.vm.vendor	Oracle Corporation
331.30/128.06	c sun.arch.data.model	64
331.30/128.06	c java.version		1.8.0_131
331.30/128.06	c os.name		Linux
331.30/128.06	c os.version		3.10.0-514.16.1.el7.x86_64
331.30/128.06	c os.arch		amd64
331.30/128.06	c Free memory 		499604488
331.30/128.06	c Max memory 		7247757312
331.30/128.06	c Total memory 		504889344
331.30/128.06	c Number of processors 	4
331.30/128.06	c c --- Begin Solver configuration ---
331.30/128.06	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
331.30/128.06	c Learn all clauses as in MiniSAT
331.30/128.06	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
331.30/128.06	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
331.30/128.06	c No reason simplification
331.30/128.06	c Glucose 2.1 dynamic restart strategy
331.30/128.06	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
331.30/128.06	c timeout=2147483s
331.30/128.06	c DB Simplification allowed=false
331.30/128.06	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
331.30/128.06	c --- End Solver configuration ---
331.30/128.06	c starts		: 0
331.30/128.06	c conflicts		: 0
331.30/128.06	c decisions		: 0
331.30/128.06	c propagations		: 0
331.30/128.06	c inspects		: 0
331.30/128.06	c shortcuts		: 0
331.30/128.06	c learnt literals	: 0
331.30/128.06	c learnt binary clauses	: 0
331.30/128.06	c learnt ternary clauses	: 0
331.30/128.06	c learnt constraints	: 0
331.30/128.06	c ignored constraints	: 0
331.30/128.06	c root simplifications	: 0
331.30/128.06	c removed literals (reason simplification)	: 0
331.30/128.06	c reason swapping (by a shorter reason)	: 0
331.30/128.06	c Calls to reduceDB	: 0
331.30/128.06	c Number of update (reduction) of LBD	: 0
331.30/128.06	c Imported unit clauses	: 0
331.30/128.06	c number of reductions to clauses (during analyze)	: 0
331.30/128.06	c number of learned constraints concerned by reduction	: 0
331.30/128.06	c number of learning phase by resolution	: 0
331.30/128.06	c number of learning phase by cutting planes	: 0
331.30/128.06	c number of rounding to 1 operations	: 0
331.30/128.06	c number of easy rounding to 1 operations (no literal elimination needed)	: 0
331.30/128.06	c number of reductions of the coefficients by power 2 	: 0
331.30/128.06	c number of right shift for reduction by power 2 	: 0
331.30/128.06	c number of reductions of the coefficients by GCD over coefficients 	: 0
331.30/128.06	c number of ending skipping 	: 0
331.30/128.06	c number of internal skipping 	: 0
331.30/128.06	c number of derivation steps 	: 0
331.30/128.06	c number of skipped derivation steps 	: 0
331.30/128.06	c number of remaining unassigned 	: 0
331.30/128.06	c number of remaining assigned 	: 0
331.30/128.06	c speed (assignments/second)	: 0.0
331.30/128.06	c non guided choices	: 0
331.30/128.06	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 (10197 MiB free)
  memory of node 1: 16384 MiB (9914 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4290167-1532220707/watcher-4290167-1532220707 -o /tmp/evaluation-result-4290167-1532220707/solver-4290167-1532220707 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node138-1532209093-27993 --watchdog 2560 java -DCompetitionOutput -jar HOME/sat4j-csp-final.jar HOME/instance-4290167-1532220707.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 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=29460, runsolver pid=29457

[startup+0.101094 s]*
/proc/loadavg: 2.00 2.01 2.21 2/215 29475
/proc/meminfo: memFree=20576012/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659012 memory=30100 CPUtime=0.12 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 6598 0 0 0 11 1 0 0 20 0 15 0 39633851 10914828288 7525 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664753 7525 2822 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659012 memory=-8773748148830377346 CPUtime=0.09 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) R 29457 29460 25432 0 -1 4202560 4430 0 0 0 8 1 0 0 20 0 15 0 39633851 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392947206000 140392927081822 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39633853 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392502578032 140392943012482 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39633854 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392501524000 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39633854 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392500471152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 438 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392498366832 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392497314032 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0.02 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) R 29457 29460 25432 0 -1 4202560 364 0 0 0 2 0 0 0 20 0 15 0 39633856 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392496261232 140392921804640 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 7525 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 10659012 KiB
Current children cumulated memory: 30100 KiB

[startup+0.210395 s]*
/proc/loadavg: 2.00 2.01 2.21 3/215 29475
/proc/meminfo: memFree=20568076/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659012 memory=41820 CPUtime=0.33 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 8069 0 0 0 31 2 0 0 20 0 15 0 39633851 10914828288 10455 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664753 10455 3006 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659012 memory=7022364594140610616 CPUtime=0.19 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) R 29457 29460 25432 0 -1 4202560 5010 0 0 0 18 1 0 0 20 0 15 0 39633851 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392947230688 140392927044965 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659012 memory=339 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659012 memory=139740586697620 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39633852 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39633853 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392502578032 140392943012482 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39633854 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392501524000 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39633854 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392500471152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659012 memory=0 CPUtime=0.02 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 619 0 0 0 2 0 0 0 20 0 15 0 39633856 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392498366832 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659012 memory=-1 CPUtime=0.02 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) S 29457 29460 25432 0 -1 1077944384 351 0 0 0 2 0 0 0 20 0 15 0 39633856 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392497314032 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0.07 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) R 29457 29460 25432 0 -1 4202560 722 0 0 0 7 0 0 0 20 0 15 0 39633856 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392496261232 140392926750665 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659012 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633856 10914828288 10455 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 10659012 KiB
Current children cumulated memory: 41820 KiB

[startup+0.310596 s]*
/proc/loadavg: 2.00 2.01 2.21 5/215 29475
/proc/meminfo: memFree=20561996/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659088 memory=47000 CPUtime=0.53 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 8854 0 0 0 50 3 0 0 20 0 15 0 39633851 10914906112 11750 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664772 11750 3042 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659088 memory=8390339637985935414 CPUtime=0.29 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) R 29457 29460 25432 0 -1 4202560 5580 0 0 0 28 1 0 0 20 0 15 0 39633851 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392947237968 140392943023261 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659088 memory=288230591823085591 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659088 memory=139740586696663 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659088 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659088 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 39633853 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392502578032 140392943012482 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659088 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392501524000 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392500471152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659088 memory=0 CPUtime=0.03 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 644 0 0 0 3 0 0 0 20 0 15 0 39633856 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392498366832 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659088 memory=-1 CPUtime=0.05 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) R 29457 29460 25432 0 -1 4202560 439 0 0 0 5 0 0 0 20 0 15 0 39633856 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392497304416 140392924522520 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659088 memory=139740586669696 CPUtime=0.13 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) S 29457 29460 25432 0 -1 1077944384 825 0 0 0 13 0 0 0 20 0 15 0 39633856 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392496261232 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659088 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659088 memory=139740586669696 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 11750 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 47000 KiB

[startup+0.700768 s]
/proc/loadavg: 2.00 2.01 2.21 5/215 29475
/proc/meminfo: memFree=20536124/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659088 memory=99480 CPUtime=1.64 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 11190 0 0 0 160 4 0 0 20 0 15 0 39633851 10914906112 24870 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664772 24870 3107 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659088 memory=1724 CPUtime=0.67 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) R 29457 29460 25432 0 -1 4202560 5827 0 0 0 65 2 0 0 20 0 15 0 39633851 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392947239584 140392569194929 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659088 memory=10928 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659088 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659088 memory=796 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659088 memory=1008 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39633852 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659088 memory=1712 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 39633853 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392502578032 140392943012482 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659088 memory=5404 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392501524000 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659088 memory=7236533984234661184 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392500471152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659088 memory=7597685182856913236 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659088 memory=7007716818149199952 CPUtime=0.31 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 1338 0 0 0 31 0 0 0 20 0 15 0 39633856 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392498366832 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659088 memory=-5874771483550381248 CPUtime=0.34 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) R 29457 29460 25432 0 -1 4202560 1438 0 0 0 34 0 0 0 20 0 15 0 39633856 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392497314160 140392924545872 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659088 memory=0 CPUtime=0.28 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) S 29457 29460 25432 0 -1 1077944384 1217 0 0 0 28 0 0 0 20 0 15 0 39633856 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392496261232 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659088 memory=31524 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 24870 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 1.64 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 99480 KiB

[startup+1.50073 s]
/proc/loadavg: 2.00 2.01 2.21 3/215 29475
/proc/meminfo: memFree=20470472/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659088 memory=242996 CPUtime=3.32 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 23725 0 0 0 320 12 0 0 20 0 15 0 39633851 10914906112 60749 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664772 60749 3139 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659088 memory=6791534058613427641 CPUtime=1.42 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) R 29457 29460 25432 0 -1 4202560 7628 0 0 0 139 3 0 0 20 0 15 0 39633851 10914906112 60749 33554432000 4194304 4196468 140734875082336 140392947206320 140392565604595 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659088 memory=-7737605734073681312 CPUtime=0.04 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 160 0 0 0 3 1 0 0 20 0 15 0 39633852 10914906112 60749 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659088 memory=7234844125055443030 CPUtime=0.04 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 72 0 0 0 3 1 0 0 20 0 15 0 39633852 10914906112 60749 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659088 memory=7661578791439722604 CPUtime=0.03 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 25 0 0 0 2 1 0 0 20 0 15 0 39633852 10914906112 60749 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659088 memory=7956003919062133094 CPUtime=0.04 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 140 0 0 0 3 1 0 0 20 0 15 0 39633852 10914906112 60749 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659088 memory=4638778402844725328 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 204 0 0 0 0 0 0 0 20 0 15 0 39633853 10914906112 60749 33554432000 4194304 4196468 140734875082336 140392502578032 140392943012482 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0

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

[pid=29460/tid=29475] ppid=29457 vsize=10659088 memory=1712 CPUtime=0.08 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 204 0 0 0 3 5 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 322.83 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 8295092 KiB

[startup+126.401 s]
/proc/loadavg: 3.13 2.39 2.32 6/216 29478
/proc/meminfo: memFree=12296280/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659088 memory=8295092 CPUtime=329.02 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 163977 0 0 0 32403 499 0 0 20 0 15 0 39633851 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664772 2073773 3172 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659088 memory=2428 CPUtime=33.79 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) S 29457 29460 25432 0 -1 1077944384 18759 0 0 0 3363 16 0 0 20 0 15 0 39633851 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392947234640 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659088 memory=1296 CPUtime=66.24 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) R 29457 29460 25432 0 -1 4202560 22693 0 0 0 6500 124 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392549636560 140392935629543 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659088 memory=6791534058613427641 CPUtime=66.93 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) R 29457 29460 25432 0 -1 4202560 17327 0 0 0 6577 116 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392548583840 140392927997739 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659088 memory=1800 CPUtime=66.22 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) R 29457 29460 25432 0 -1 4202560 31645 0 0 0 6507 115 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392547530960 140392935629543 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659088 memory=920 CPUtime=66.56 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) R 29457 29460 25432 0 -1 4202560 16926 0 0 0 6539 117 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392546478472 140392935629543 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659088 memory=3856 CPUtime=25.17 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 31576 0 0 0 2515 2 0 0 20 0 15 0 39633853 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392502576592 140392943011541 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659088 memory=2612 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392501524064 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659088 memory=2832 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392500471168 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659088 memory=1724 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659088 memory=10928 CPUtime=1.74 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 8137 0 0 0 173 1 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392498366880 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659088 memory=1228 CPUtime=1.8 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) S 29457 29460 25432 0 -1 1077944384 10949 0 0 0 178 2 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392497314080 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659088 memory=796 CPUtime=0.41 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) S 29457 29460 25432 0 -1 1077944384 4358 0 0 0 40 1 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392496260992 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659088 memory=1008 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659088 memory=1712 CPUtime=0.08 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 204 0 0 0 3 5 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 329.02 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 8295092 KiB

[startup+127.201 s]
/proc/loadavg: 3.13 2.39 2.32 3/216 29478
/proc/meminfo: memFree=12296280/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659088 memory=8295092 CPUtime=330.63 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 163977 0 0 0 32563 500 0 0 20 0 15 0 39633851 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664772 2073773 3172 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659088 memory=4040 CPUtime=33.79 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) S 29457 29460 25432 0 -1 1077944384 18759 0 0 0 3363 16 0 0 20 0 15 0 39633851 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392947234640 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659088 memory=644 CPUtime=66.5 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 22693 0 0 0 6526 124 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659088 memory=1792 CPUtime=67.21 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 17327 0 0 0 6605 116 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659088 memory=960 CPUtime=66.48 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 31645 0 0 0 6533 115 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659088 memory=1236 CPUtime=66.83 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 16926 0 0 0 6566 117 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659088 memory=6791534058613427641 CPUtime=25.69 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) R 29457 29460 25432 0 -1 4202560 31576 0 0 0 2567 2 0 0 20 0 15 0 39633853 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392502576480 140392927997739 0 0 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659088 memory=4612 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392501524064 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659088 memory=1432 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392500471168 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659088 memory=1200 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659088 memory=1952 CPUtime=1.74 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 8137 0 0 0 173 1 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392498366880 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659088 memory=8368 CPUtime=1.8 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) S 29457 29460 25432 0 -1 1077944384 10949 0 0 0 178 2 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392497314080 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659088 memory=15868 CPUtime=0.41 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) S 29457 29460 25432 0 -1 1077944384 4358 0 0 0 40 1 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392496260992 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659088 memory=13980 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659088 memory=2428 CPUtime=0.08 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 204 0 0 0 3 5 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 330.63 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 8295092 KiB

[startup+127.601 s]
/proc/loadavg: 3.13 2.39 2.32 3/216 29478
/proc/meminfo: memFree=12296280/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10659088 memory=8295092 CPUtime=331.03 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 164209 0 0 0 32603 500 0 0 20 0 15 0 39633851 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2664772 2073773 3172 1 0 2627263 0
[pid=29460/tid=29462] ppid=29457 vsize=10659088 memory=4040 CPUtime=33.79 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) S 29457 29460 25432 0 -1 1077944384 18759 0 0 0 3363 16 0 0 20 0 15 0 39633851 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392947234640 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10659088 memory=644 CPUtime=66.5 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 22693 0 0 0 6526 124 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10659088 memory=6791534058613427641 CPUtime=67.21 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 17327 0 0 0 6605 116 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10659088 memory=960 CPUtime=66.48 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 31645 0 0 0 6533 115 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10659088 memory=1236 CPUtime=66.83 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 16926 0 0 0 6566 117 0 0 20 0 15 0 39633852 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10659088 memory=4388 CPUtime=26.09 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) R 29457 29460 25432 0 -1 4202560 31808 0 0 0 2607 2 0 0 20 0 15 0 39633853 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392502576480 140392927997759 0 0 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10659088 memory=2244 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392501524064 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10659088 memory=4124 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 39633854 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392500471168 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10659088 memory=928 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10659088 memory=1576 CPUtime=1.74 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 8137 0 0 0 173 1 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392498366880 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10659088 memory=2204 CPUtime=1.8 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) S 29457 29460 25432 0 -1 1077944384 10949 0 0 0 178 2 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392497314080 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10659088 memory=7524 CPUtime=0.41 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) S 29457 29460 25432 0 -1 1077944384 4358 0 0 0 40 1 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392496260992 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10659088 memory=4140 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10659088 memory=13980 CPUtime=0.08 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 204 0 0 0 3 5 0 0 20 0 15 0 39633856 10914906112 2073773 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 331.03 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 8295092 KiB

[startup+128.001 s]*
/proc/loadavg: 3.13 2.39 2.32 2/217 29480
/proc/meminfo: memFree=12295644/32770624 swapFree=67108860/67108860
[pid=29460] ppid=29457 vsize=10794416 memory=8295956 CPUtime=331.3 cores=0,2,4,6
/proc/29460/stat : 29460 (java) S 29457 29460 25432 0 -1 1077944320 164948 0 0 0 32630 500 0 0 20 0 16 0 39633851 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140734875064880 140392943001335 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
/proc/29460/statm: 2698604 2073989 3218 1 0 2661057 0
[pid=29460/tid=29462] ppid=29457 vsize=10794416 memory=1398720917958146503 CPUtime=33.82 cores=0,2,4,6
/proc/29460/task/29462/stat : 29462 (java) S 29457 29460 25432 0 -1 1077944384 19164 0 0 0 3366 16 0 0 20 0 16 0 39633851 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392947242016 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29463] ppid=29457 vsize=10794416 memory=1952 CPUtime=66.5 cores=0,2,4,6
/proc/29460/task/29463/stat : 29463 (java) S 29457 29460 25432 0 -1 1077944384 22693 0 0 0 6526 124 0 0 20 0 16 0 39633852 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392549636752 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29464] ppid=29457 vsize=10794416 memory=8368 CPUtime=67.21 cores=0,2,4,6
/proc/29460/task/29464/stat : 29464 (java) S 29457 29460 25432 0 -1 1077944384 17327 0 0 0 6605 116 0 0 20 0 16 0 39633852 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392548583952 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29465] ppid=29457 vsize=10794416 memory=15868 CPUtime=66.48 cores=0,2,4,6
/proc/29460/task/29465/stat : 29465 (java) S 29457 29460 25432 0 -1 1077944384 31645 0 0 0 6533 115 0 0 20 0 16 0 39633852 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392547531152 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29466] ppid=29457 vsize=10794416 memory=8256160 CPUtime=66.83 cores=0,2,4,6
/proc/29460/task/29466/stat : 29466 (java) S 29457 29460 25432 0 -1 1077944384 16926 0 0 0 6566 117 0 0 20 0 16 0 39633852 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392546478352 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29467] ppid=29457 vsize=10794416 memory=4124 CPUtime=26.32 cores=0,2,4,6
/proc/29460/task/29467/stat : 29467 (java) S 29457 29460 25432 0 -1 1077944384 31820 0 0 0 2630 2 0 0 20 0 16 0 39633853 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392502578032 140392943012482 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29468] ppid=29457 vsize=10794416 memory=279480904384048 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29468/stat : 29468 (java) S 29457 29460 25432 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 16 0 39633854 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392501524064 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29469] ppid=29457 vsize=10794416 memory=128706680981994 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29469/stat : 29469 (java) S 29457 29460 25432 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 16 0 39633854 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392500471168 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29470] ppid=29457 vsize=10794416 memory=128706680981738 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29470/stat : 29470 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 39633856 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392499419472 140392943019931 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29471] ppid=29457 vsize=10794416 memory=279480904120592 CPUtime=1.75 cores=0,2,4,6
/proc/29460/task/29471/stat : 29471 (java) S 29457 29460 25432 0 -1 1077944384 8195 0 0 0 174 1 0 0 20 0 16 0 39633856 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392498366832 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29472] ppid=29457 vsize=10794416 memory=-7022074515825631275 CPUtime=1.8 cores=0,2,4,6
/proc/29460/task/29472/stat : 29472 (java) S 29457 29460 25432 0 -1 1077944384 10993 0 0 0 178 2 0 0 20 0 16 0 39633856 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392497314032 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29473] ppid=29457 vsize=10794416 memory=-4695043397844020537 CPUtime=0.42 cores=0,2,4,6
/proc/29460/task/29473/stat : 29473 (java) S 29457 29460 25432 0 -1 1077944384 4529 0 0 0 41 1 0 0 20 0 16 0 39633856 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392496261232 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29474] ppid=29457 vsize=10794416 memory=4612 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29474/stat : 29474 (java) S 29457 29460 25432 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 39633856 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392495208672 140392943011541 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29475] ppid=29457 vsize=10794416 memory=1432 CPUtime=0.08 cores=0,2,4,6
/proc/29460/task/29475/stat : 29475 (java) S 29457 29460 25432 0 -1 1077944384 204 0 0 0 3 5 0 0 20 0 16 0 39633856 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392494156976 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
[pid=29460/tid=29479] ppid=29457 vsize=10794416 memory=1200 CPUtime=0 cores=0,2,4,6
/proc/29460/task/29479/stat : 29479 (java) S 29457 29460 25432 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 16 0 39646637 11053481984 2073989 33554432000 4194304 4196468 140734875082336 140392491005584 140392943012482 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31727616 140734875087985 140734875088137 140734875088137 140734875090895 0
Current children cumulated CPU time: 331.3 s
Current children cumulated vsize: 10794416 KiB
Current children cumulated memory: 8295956 KiB

Child status: 0
Real time (s): 128.099
CPU time (s): 331.349
CPU user time (s): 326.303
CPU system time (s): 5.04637
CPU usage (%): 258.666
Max. virtual memory (cumulated for all children) (KiB): 10794416
Max. memory (cumulated for all children) (KiB): 8295956

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 326.303
system time used= 5.04637
maximum resident set size= 8296268
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 164996
page faults= 0
swaps= 0
block input operations= 0
block output operations= 272
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 7531
involuntary context switches= 2726


# summary of solver processes directly reported to runsolver:
#   pid: 29460
#   total CPU time (s): 331.349
#   total CPU user time (s): 326.303
#   total CPU system time (s): 5.04637

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.752164 second user time and 1.30065 second system time

The end

Launcher Data

Begin job on node138 at 2018-07-22 02:51:47
IDJOB=4290167
IDBENCH=141503
IDSOLVER=2742
FILE ID=node138/4290167-1532220707
RUNJOBID= node138-1532209093-27993
PBS_JOBID= 21018929
Free space on /tmp= 59108 MiB

SOLVER NAME= Sat4j-CSP 2018-07-11
BENCH NAME= XCSP18/Subisomorphism/Subisomorphism-g29-g50_c18.xml
COMMAND LINE= java -DCompetitionOutput -jar DIR/sat4j-csp-final.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4290167-1532220707/watcher-4290167-1532220707 -o /tmp/evaluation-result-4290167-1532220707/solver-4290167-1532220707 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node138-1532209093-27993 --watchdog 2560  java -DCompetitionOutput -jar HOME/sat4j-csp-final.jar HOME/instance-4290167-1532220707.xml

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

MD5SUM BENCH= 6b43bee46cd3f7faf4796c0903a8d917
RANDOM SEED=69620122

node138.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.71
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.71
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.71
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.71
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:        20595104 kB
MemAvailable:   29557820 kB
Buffers:          227344 kB
Cached:          8977796 kB
SwapCached:            0 kB
Active:          4606856 kB
Inactive:        7051048 kB
Active(anon):    2454948 kB
Inactive(anon):    17052 kB
Active(file):    2151908 kB
Inactive(file):  7033996 kB
Unevictable:        7200 kB
Mlocked:            7200 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              2376 kB
Writeback:             0 kB
AnonPages:       2469124 kB
Mapped:            46856 kB
Shmem:             17036 kB
Slab:             212668 kB
SReclaimable:     185296 kB
SUnreclaim:        27372 kB
KernelStack:        3792 kB
PageTables:         9764 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    4322120 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2293760 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      112000 kB
DirectMap2M:    33433600 kB

Free space on /tmp at the end= 59108 MiB
End job on node138 at 2018-07-22 02:53:55