summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-02 10:46:47 +0300
committerPaul Buetow <paul@buetow.org>2021-10-02 12:26:36 +0300
commit764ef99a3d779a0db1fb60679292af52425ba2f6 (patch)
tree2547b3bd4472a4178173dfe1d8f4178af591c37e
parent609921f9c783941eaa9019a92b78ec45b49d681c (diff)
add more default fields to MAPREDUCE
-rw-r--r--docker/Makefile4
-rw-r--r--internal/config/args.go2
-rw-r--r--internal/config/config.go1
-rw-r--r--internal/io/dlog/dlog.go38
-rw-r--r--internal/io/dlog/loggers/file.go1
-rw-r--r--internal/mapr/logformat/default.go23
-rw-r--r--internal/mapr/logformat/default_test.go62
-rw-r--r--internal/server/stats.go4
-rw-r--r--testdata/mapr_testdata.log1037
9 files changed, 707 insertions, 465 deletions
diff --git a/docker/Makefile b/docker/Makefile
index 68e7ad8..3b98e74 100644
--- a/docker/Makefile
+++ b/docker/Makefile
@@ -13,7 +13,7 @@ spindown:
dtail:
../dtail --servers serverlist.txt --files '/var/log/dserver/*' --trustAllHosts --logLevel DEBUG
dtail2:
- ../dtail --servers serverlist.txt --files '/var/log/dserver/*' --trustAllHosts --logLevel DEBUG --query 'from stats select max(goroutines),count($$hostname),$$hostname,last($$time) group by $$hostname order by max(goroutines)'
+ ../dtail --servers serverlist.txt --files '/var/log/dserver/*' --trustAllHosts --logLevel DEBUG --query 'from stats select max($$goroutines),count($$hostname),$$hostname,last($$time) group by $$hostname order by max($$goroutines)'
dgrep:
../dgrep --servers serverlist.txt --files '/var/log/dserver/*' --regex MAPREDUCE --trustAllHosts
dcat:
@@ -24,7 +24,7 @@ dcat2:
# TODO: All serverless tests in this Makefile have to move to actual unit tests
../dcat /etc/passwd
dmap:
- ../dmap --servers serverlist.txt --files '/var/log/dserver/*' --trustAllHosts --query 'from stats select avg(goroutines),max(goroutines),min(goroutines),last(goroutines),count($$hostname),$$hostname group by $$hostname order by avg(goroutines)'
+ ../dmap --servers serverlist.txt --files '/var/log/dserver/*' --trustAllHosts --query 'from stats select avg($$goroutines),max($$goroutines),min($$goroutines),last($$goroutines),count($$hostname),$$hostname group by $$hostname order by avg($$goroutines)'
dmap2:
../dmap --servers serverlist.txt --files '/var/log/mapr_testdata.log' --trustAllHosts --query 'from stats select count($$time),last($$time) group by $$time order by count($$time) outfile dmap2-A.csv'
../dmap --servers serverlist.txt --files '/var/log/mapr_testdata.log' --trustAllHosts --query 'from stats select count($$time),last($$time) group by $$time order by count($$time) outfile dmap2-B.csv'
diff --git a/internal/config/args.go b/internal/config/args.go
index 7f24348..484aa8b 100644
--- a/internal/config/args.go
+++ b/internal/config/args.go
@@ -39,7 +39,7 @@ func (a *Args) String() string {
var sb strings.Builder
sb.WriteString("Args(")
- // TODO: All commands should make use of this
+
sb.WriteString(fmt.Sprintf("%s:%s,", "LogDir", a.LogDir))
sb.WriteString(fmt.Sprintf("%s:%s,", "LogLevel", a.LogLevel))
sb.WriteString(fmt.Sprintf("%s:%v,", "Arguments", a.Arguments))
diff --git a/internal/config/config.go b/internal/config/config.go
index 76dcc65..3d05a11 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -85,7 +85,6 @@ func (c *configInitializer) transformConfig(args *Args, additionalArgs []string,
if args.LogDir != "" {
common.LogDir = args.LogDir
if common.LogStrategy == "" {
- // TODO: Implement the other (not-daily) log strategy for the server.
common.LogStrategy = "daily"
}
}
diff --git a/internal/io/dlog/dlog.go b/internal/io/dlog/dlog.go
index 49533a5..bc9b2f8 100644
--- a/internal/io/dlog/dlog.go
+++ b/internal/io/dlog/dlog.go
@@ -3,7 +3,11 @@ package dlog
import (
"context"
"fmt"
+ "io/ioutil"
"os"
+ "path/filepath"
+ "runtime"
+ "strconv"
"strings"
"sync"
"time"
@@ -211,8 +215,38 @@ func (d *DLog) Raw(message string) string {
func (d *DLog) Mapreduce(table string, data map[string]interface{}) string {
args := make([]interface{}, len(data)+1)
- // TODO: mC compatible SERVER mapreduce fields, no MAPREDUCE keyword in CLIENT mode
- args[0] = fmt.Sprintf("%s:%s", "MAPREDUCE", strings.ToUpper(table))
+ if d.sourceProcess == SERVER {
+ // level|date-time|process|caller|cpus|goroutines|cgocalls|loadavg|uptime|MAPREDUCE:TABLE|key=value|...
+
+ var loadAvg string
+ if loadAvgBytes, err := ioutil.ReadFile("/proc/loadavg"); err == nil {
+ tmp := string(loadAvgBytes)
+ s := strings.SplitN(tmp, " ", 2)
+ loadAvg = s[0]
+ }
+
+ var uptime string
+ if uptimeBytes, err := ioutil.ReadFile("/proc/uptime"); err == nil {
+ tmp := string(uptimeBytes)
+ s := strings.SplitN(tmp, ".", 2)
+ i, _ := strconv.ParseInt(s[0], 10, 64)
+ t := time.Duration(i) * time.Second
+ uptime = fmt.Sprintf("%v", t)
+ }
+
+ _, file, line, _ := runtime.Caller(1)
+ args[0] = fmt.Sprintf("%d|%s:%d|%d|%d|%d|%s|%s|MAPREDUCE:%s",
+ os.Getpid(),
+ filepath.Base(file), line,
+ runtime.NumCPU(),
+ runtime.NumGoroutine(),
+ runtime.NumCgoCall(),
+ loadAvg,
+ uptime,
+ strings.ToUpper(table))
+ } else {
+ args[0] = fmt.Sprintf("STATS:%s", strings.ToUpper(table))
+ }
i := 1
for k, v := range data {
diff --git a/internal/io/dlog/loggers/file.go b/internal/io/dlog/loggers/file.go
index dcdd7d0..6e692a3 100644
--- a/internal/io/dlog/loggers/file.go
+++ b/internal/io/dlog/loggers/file.go
@@ -100,7 +100,6 @@ func (f *file) Pause() { f.pauseCh <- struct{}{} }
func (f *file) Resume() { f.resumeCh <- struct{}{} }
func (f *file) Flush() { f.flushCh <- struct{}{} }
-// TODO: Test that Rotate() actually works.
func (f *file) Rotate() { f.rotateCh <- struct{}{} }
func (*file) SupportsColors() bool { return false }
diff --git a/internal/mapr/logformat/default.go b/internal/mapr/logformat/default.go
index 7fb1700..8016667 100644
--- a/internal/mapr/logformat/default.go
+++ b/internal/mapr/logformat/default.go
@@ -11,7 +11,7 @@ import (
func (p *Parser) MakeFieldsDEFAULT(maprLine string) (map[string]string, error) {
splitted := strings.Split(maprLine, protocol.FieldDelimiter)
- if len(splitted) < 3 || !strings.HasPrefix(splitted[3], "MAPREDUCE:") || !strings.HasPrefix(splitted[0], "INFO") {
+ if len(splitted) < 11 || !strings.HasPrefix(splitted[9], "MAPREDUCE:") || !strings.HasPrefix(splitted[0], "INFO") {
// Not a DTail mapreduce log line.
return nil, IgnoreFieldsErr
}
@@ -27,10 +27,25 @@ func (p *Parser) MakeFieldsDEFAULT(maprLine string) (map[string]string, error) {
fields["$severity"] = splitted[0]
fields["$loglevel"] = splitted[0]
- // NEXT: Parse time like we do at Mimecast
- fields["$time"] = splitted[1]
- for _, kv := range splitted[4:] {
+ time := splitted[1]
+ fields["$time"] = time
+ if len(time) == 15 {
+ // Example: 20211002-071209
+ fields["$date"] = time[0:8]
+ fields["$hour"] = time[9:11]
+ fields["$minute"] = time[11:13]
+ fields["$second"] = time[13:]
+ }
+ fields["$pid"] = splitted[2]
+ fields["$caller"] = splitted[3]
+ fields["$cpus"] = splitted[4]
+ fields["$goroutines"] = splitted[5]
+ fields["$cgocalls"] = splitted[6]
+ fields["$loadavg"] = splitted[7]
+ fields["$uptime"] = splitted[8]
+
+ for _, kv := range splitted[10:] {
keyAndValue := strings.SplitN(kv, "=", 2)
if len(keyAndValue) != 2 {
return fields, fmt.Errorf("Unable to parse key-value token '%s'", kv)
diff --git a/internal/mapr/logformat/default_test.go b/internal/mapr/logformat/default_test.go
index 79911d1..02c03a3 100644
--- a/internal/mapr/logformat/default_test.go
+++ b/internal/mapr/logformat/default_test.go
@@ -1,6 +1,7 @@
package logformat
import (
+ "fmt"
"testing"
)
@@ -10,9 +11,15 @@ func TestDefaultLogFormat(t *testing.T) {
t.Errorf("Unable to create parser: %s", err.Error())
}
+ date := "20211002"
+ hour := "07"
+ minute := "23"
+ second := "42"
+ time := fmt.Sprintf("%s-%s%s%s", date, hour, minute, second)
+
inputs := []string{
- "INFO|20210907-065632|SERVER|MAPREDUCE:TEST|foo=bar|baz=bay",
- "INFO|20210907-065732|CLIENT|MAPREDUCE:YOMAN|baz=bay|foo=bar",
+ fmt.Sprintf("INFO|%s|1|default_test.go:0|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|foo=bar|bar=foo", time),
+ fmt.Sprintf("INFO|%s|1|default_test.go:0|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|bar=foo|foo=bar", time),
}
for _, input := range inputs {
@@ -22,18 +29,53 @@ func TestDefaultLogFormat(t *testing.T) {
t.Errorf("Parser unable to make fields: %s", err.Error())
}
- if bar, ok := fields["foo"]; !ok {
- t.Errorf("Expected field 'foo', but no such field there in '%s'\n", input)
- } else if bar != "bar" {
- t.Errorf("Expected 'bar' stored in field 'foo', but got '%s' in '%s'\n", bar, input)
+ if val, ok := fields["$severity"]; !ok {
+ t.Errorf("Expected field '$severity', but no such field there in '%s'\n", input)
+ } else if val != "INFO" {
+ t.Errorf("Expected 'INFO' stored in field '$severity', but got '%s' in '%s'\n", val, input)
+ }
+
+ if val, ok := fields["$time"]; !ok {
+ t.Errorf("Expected field '$time', but no such field there in '%s'\n", input)
+ } else if val != time {
+ t.Errorf("Expected '%s' stored in field '$time', but got '%s' in '%s'\n", time, val, input)
+ }
+
+ if val, ok := fields["$date"]; !ok {
+ t.Errorf("Expected field '$date', but no such field there in '%s'\n", input)
+ } else if val != date {
+ t.Errorf("Expected '%s' stored in field '$date', but got '%s' in '%s'\n", date, val, input)
+ }
+
+ if val, ok := fields["$hour"]; !ok {
+ t.Errorf("Expected field '$hour', but no such field there in '%s'\n", input)
+ } else if val != hour {
+ t.Errorf("Expected '%s' stored in field '$hour', but got '%s' in '%s'\n", hour, val, input)
+ }
+
+ if val, ok := fields["$minute"]; !ok {
+ t.Errorf("Expected field '$minute', but no such field there in '%s'\n", input)
+ } else if val != minute {
+ t.Errorf("Expected '%s' stored in field '$minute', but got '%s' in '%s'\n", minute, val, input)
}
- if bay, ok := fields["baz"]; !ok {
- t.Errorf("Expected field 'baz', but no such field there in '%s'\n", input)
- } else if bay != "bay" {
- t.Errorf("Expected 'bay' stored in field 'baz', but got '%s' in '%s'\n", bay, input)
+ if val, ok := fields["$second"]; !ok {
+ t.Errorf("Expected field '$second', but no such field there in '%s'\n", input)
+ } else if val != second {
+ t.Errorf("Expected '%s' stored in field '$second', but got '%s' in '%s'\n", second, val, input)
}
+ if val, ok := fields["foo"]; !ok {
+ t.Errorf("Expected field 'foo', but no such field there in '%s'\n", input)
+ } else if val != "bar" {
+ t.Errorf("Expected 'bar' stored in field 'foo', but got '%s' in '%s'\n", val, input)
+ }
+
+ if val, ok := fields["bar"]; !ok {
+ t.Errorf("Expected field 'bar', but no such field there in '%s'\n", input)
+ } else if val != "foo" {
+ t.Errorf("Expected 'foo' stored in field 'bar', but got '%s' in '%s'\n", val, input)
+ }
}
fields, err := parser.MakeFields("foozoo=bar|bazbay")
diff --git a/internal/server/stats.go b/internal/server/stats.go
index 8583318..c07634d 100644
--- a/internal/server/stats.go
+++ b/internal/server/stats.go
@@ -3,7 +3,6 @@ package server
import (
"context"
"fmt"
- "runtime"
"sync"
"time"
@@ -53,9 +52,6 @@ func (s *stats) logServerStats() {
data := make(map[string]interface{})
data["currentConnections"] = s.currentConnections
data["lifetimeConnections"] = s.lifetimeConnections
- data["goroutines"] = runtime.NumGoroutine()
- data["cgocalls"] = runtime.NumCgoCall()
- data["cpu"] = runtime.NumCPU()
dlog.Server.Mapreduce("STATS", data)
}
diff --git a/testdata/mapr_testdata.log b/testdata/mapr_testdata.log
index 4435a3b..7447ba7 100644
--- a/testdata/mapr_testdata.log
+++ b/testdata/mapr_testdata.log
@@ -1,440 +1,597 @@
-INFO|20210916-062359|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062359|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062400|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062400|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062400|SERVER|MAPREDUCE:STATS|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062400|SERVER|MAPREDUCE:STATS|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062400|SERVER|MAPREDUCE:STATS|lifetimeConnections=0|goroutines=9|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062400|SERVER|MAPREDUCE:STATS|lifetimeConnections=0|goroutines=9|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062401|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062401|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062401|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062401|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062402|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062402|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062402|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062402|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062402|SERVER|MAPREDUCE:STATS|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062402|SERVER|MAPREDUCE:STATS|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062403|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062403|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=12
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=12
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062406|SERVER|MAPREDUCE:STATS|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062407|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062407|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062407|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062407|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062407|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062407|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062409|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062409|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062409|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062410|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062411|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062411|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062411|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062411|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062411|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062411|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062412|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062413|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062413|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062413|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062419|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062419|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062420|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062420|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062420|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062420|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062420|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062420|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062421|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062421|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7
-INFO|20210916-062421|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062421|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=1|goroutines=20
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=1|goroutines=20
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=1|goroutines=23
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=1|goroutines=22|cgocalls=7
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=1|goroutines=22|cgocalls=7
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=21|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=21|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1|goroutines=23|cgocalls=7|cpu=8
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|goroutines=20|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=1
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|goroutines=20|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=1
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062422|SERVER|MAPREDUCE:STATS|lifetimeConnections=1|goroutines=20|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062423|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=1
-INFO|20210916-062423|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=1
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=2|goroutines=12
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=2|goroutines=12
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=2
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=2
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062425|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=10
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=10
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=14|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=14|cgocalls=7|cpu=8
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|goroutines=9|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|goroutines=9|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062426|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=10|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062429|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062429|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062430|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062430|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062430|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062430|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062430|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062430|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062431|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062431|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062431|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062431|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062432|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062432|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062432|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062432|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062432|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062432|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062433|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062433|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062439|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062439|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062440|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062440|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062440|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062440|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062440|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062440|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062441|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062441|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062441|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062441|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062442|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062442|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062442|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062442|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062442|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062442|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062443|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062443|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062449|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062449|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062450|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062450|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062450|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062450|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062450|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062450|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062451|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062451|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062451|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062451|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062452|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062452|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062452|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062452|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062452|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062452|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062453|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062453|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062459|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062459|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062500|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062500|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062500|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062500|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062500|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062500|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062501|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062501|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062501|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062501|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062502|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062502|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062502|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062502|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062502|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062502|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062503|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062503|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062509|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062509|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062510|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062510|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062510|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062510|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062510|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062510|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062511|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062511|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062511|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062511|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062512|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062512|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062512|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062512|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062512|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062512|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062513|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062513|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062519|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062519|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062520|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062520|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062520|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062520|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062520|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062520|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062521|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062521|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062521|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062521|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062522|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062522|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062522|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062522|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062522|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062522|SERVER|MAPREDUCE:STATS|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062523|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062523|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062529|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062529|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7
-INFO|20210916-062530|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062530|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062530|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062530|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062530|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062530|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062531|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062531|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062531|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062531|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062532|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062532|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2|goroutines=8
-INFO|20210916-062532|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062532|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062532|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062532|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062533|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062533|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=2
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=3|goroutines=12
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=3|goroutines=12
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=3|goroutines=12
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=3|goroutines=12
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062537|SERVER|MAPREDUCE:STATS|lifetimeConnections=3|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=10
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=10|cgocalls=7
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=10|cgocalls=7
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062538|SERVER|MAPREDUCE:STATS|goroutines=10|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062539|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062540|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8
-INFO|20210916-062540|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062540|SERVER|MAPREDUCE:STATS|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062541|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062541|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062542|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062542|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062542|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062543|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062549|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062550|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8
-INFO|20210916-062550|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062550|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062551|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062551|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062552|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062552|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062552|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062553|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062559|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062600|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8
-INFO|20210916-062600|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062600|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062601|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062601|SERVER|MAPREDUCE:STATS|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062602|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062602|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062602|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062603|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062609|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062610|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062610|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3
-INFO|20210916-062610|SERVER|MAPREDUCE:STATS|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062611|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062611|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062612|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8
-INFO|20210916-062612|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7
-INFO|20210916-062612|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062613|SERVER|MAPREDUCE:STATS|lifetimeConnections=3|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=4|goroutines=10|cgocalls=7
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=4|goroutines=14|cgocalls=7
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=9|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=4
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=4
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|lifetimeConnections=4|goroutines=10|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|lifetimeConnections=4|goroutines=10|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062617|SERVER|MAPREDUCE:STATS|lifetimeConnections=4|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062619|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062620|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062620|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062620|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062621|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7
-INFO|20210916-062621|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062622|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062622|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=4
-INFO|20210916-062622|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=4
-INFO|20210916-062623|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=10
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=5|goroutines=12
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=5|goroutines=12
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=5|goroutines=12
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=10|cgocalls=7
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=10|cgocalls=7
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=13|cgocalls=7
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=5|goroutines=12|cgocalls=7
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=5|goroutines=12|cgocalls=7
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=10|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|goroutines=10|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|lifetimeConnections=5|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|lifetimeConnections=5|goroutines=12|cgocalls=7|cpu=8|currentConnections=1
-INFO|20210916-062629|SERVER|MAPREDUCE:STATS|lifetimeConnections=5|goroutines=14|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062630|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062630|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5
-INFO|20210916-062630|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5
-INFO|20210916-062631|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062631|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062632|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=8
-INFO|20210916-062632|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062632|SERVER|MAPREDUCE:STATS|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8|currentConnections=0
-INFO|20210916-062633|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062639|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062640|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=8
-INFO|20210916-062640|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7
-INFO|20210916-062640|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7
-INFO|20210916-062641|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7
-INFO|20210916-062641|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062642|SERVER|MAPREDUCE:STATS|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5|goroutines=8
-INFO|20210916-062642|SERVER|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5|goroutines=8|cgocalls=7|cpu=8
-INFO|20210916-062642|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5
-INFO|20210916-062643|SERVER|MAPREDUCE:STATS|goroutines=8|cgocalls=7|cpu=8|currentConnections=0|lifetimeConnections=5
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=6|goroutines=12|cgocalls=7
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|cpu=8|currentConnections=1|lifetimeConnections=6|goroutines=12|cgocalls=7
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6|goroutines=12|cgocalls=7|cpu=8
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=6
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=6
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=6
-INFO|20210916-062647|SERVER|MAPREDUCE:STATS|goroutines=12|cgocalls=7|cpu=8|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071149|1|stats.go:56|8|11|7|0.19|471h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071159|1|stats.go:56|8|11|7|0.24|471h0m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071209|1|stats.go:56|8|11|7|0.20|471h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071219|1|stats.go:56|8|11|7|0.24|471h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071239|1|stats.go:56|8|11|7|0.32|471h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071249|1|stats.go:56|8|11|7|0.27|471h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071259|1|stats.go:56|8|11|7|0.23|471h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071309|1|stats.go:56|8|11|7|0.35|471h1m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071319|1|stats.go:56|8|11|7|0.38|471h1m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071329|1|stats.go:56|8|11|7|0.32|471h2m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071339|1|stats.go:56|8|11|7|0.35|471h2m17s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071349|1|stats.go:56|8|11|7|0.30|471h2m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071359|1|stats.go:56|8|11|7|0.57|471h2m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071409|1|stats.go:56|8|11|7|0.48|471h2m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071419|1|stats.go:56|8|11|7|0.49|471h2m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071429|1|stats.go:56|8|11|7|0.41|471h3m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071439|1|stats.go:56|8|11|7|0.35|471h3m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071449|1|stats.go:56|8|11|7|0.29|471h3m27s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071459|1|stats.go:56|8|11|7|0.25|471h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071509|1|stats.go:56|8|11|7|0.28|471h3m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071519|1|stats.go:56|8|11|7|0.24|471h3m57s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071529|1|stats.go:56|8|11|7|0.20|471h4m7s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071539|1|stats.go:56|8|11|7|0.17|471h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071549|1|stats.go:56|8|11|7|0.14|471h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071559|1|stats.go:56|8|11|7|0.12|471h4m37s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071609|1|stats.go:56|8|11|7|0.18|471h4m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071619|1|stats.go:56|8|11|7|0.22|471h4m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071629|1|stats.go:56|8|11|7|0.27|471h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071639|1|stats.go:56|8|11|7|0.46|471h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071649|1|stats.go:56|8|11|7|0.39|471h5m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071659|1|stats.go:56|8|11|7|0.33|471h5m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071709|1|stats.go:56|8|11|7|0.28|471h5m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071719|1|stats.go:56|8|11|7|0.32|471h5m57s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071729|1|stats.go:56|8|11|7|0.27|471h6m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071739|1|stats.go:56|8|11|7|0.23|471h6m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071749|1|stats.go:56|8|11|7|0.27|471h6m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071759|1|stats.go:56|8|11|7|0.23|471h6m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071809|1|stats.go:56|8|11|7|0.51|471h6m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071819|1|stats.go:56|8|11|7|0.51|471h6m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071829|1|stats.go:56|8|11|7|0.58|471h7m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071839|1|stats.go:56|8|11|7|0.56|471h7m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071849|1|stats.go:56|8|11|7|0.48|471h7m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071859|1|stats.go:56|8|11|7|0.70|471h7m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071229|1|stats.go:56|8|11|7|0.28|471h1m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071919|1|stats.go:56|8|11|7|0.50|471h7m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=1
+INFO|20211002-071921|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071929|1|stats.go:56|8|11|7|0.94|471h8m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071939|1|stats.go:56|8|11|7|0.80|471h8m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071909|1|stats.go:56|8|11|7|0.60|471h7m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=1
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
+INFO|20211002-071157|1|stats.go:56|8|11|7|0.24|471h0m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071208|1|stats.go:56|8|11|7|0.20|471h0m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|13|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071218|1|stats.go:56|8|11|7|0.24|471h0m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071147|1|stats.go:56|8|12|7|0.19|471h0m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071238|1|stats.go:56|8|11|7|0.32|471h1m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071248|1|stats.go:56|8|11|7|0.27|471h1m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071258|1|stats.go:56|8|11|7|0.23|471h1m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071308|1|stats.go:56|8|11|7|0.35|471h1m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071318|1|stats.go:56|8|11|7|0.38|471h1m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071328|1|stats.go:56|8|11|7|0.32|471h2m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071338|1|stats.go:56|8|11|7|0.35|471h2m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071228|1|stats.go:56|8|11|7|0.28|471h1m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071358|1|stats.go:56|8|11|7|0.57|471h2m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071408|1|stats.go:56|8|11|7|0.48|471h2m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071418|1|stats.go:56|8|11|7|0.49|471h2m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071428|1|stats.go:56|8|11|7|0.41|471h3m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071438|1|stats.go:56|8|11|7|0.35|471h3m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071448|1|stats.go:56|8|11|7|0.29|471h3m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071458|1|stats.go:56|8|11|7|0.25|471h3m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071508|1|stats.go:56|8|11|7|0.28|471h3m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071348|1|stats.go:56|8|11|7|0.30|471h2m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071518|1|stats.go:56|8|11|7|0.24|471h3m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071538|1|stats.go:56|8|11|7|0.17|471h4m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071548|1|stats.go:56|8|11|7|0.14|471h4m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071558|1|stats.go:56|8|11|7|0.12|471h4m35s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071608|1|stats.go:56|8|11|7|0.18|471h4m45s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071528|1|stats.go:56|8|11|7|0.20|471h4m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071628|1|stats.go:56|8|11|7|0.27|471h5m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071638|1|stats.go:56|8|11|7|0.46|471h5m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071648|1|stats.go:56|8|11|7|0.39|471h5m25s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071658|1|stats.go:56|8|11|7|0.33|471h5m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071708|1|stats.go:56|8|11|7|0.28|471h5m45s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071718|1|stats.go:56|8|11|7|0.32|471h5m55s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071728|1|stats.go:56|8|11|7|0.27|471h6m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071738|1|stats.go:56|8|11|7|0.23|471h6m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071748|1|stats.go:56|8|11|7|0.27|471h6m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071758|1|stats.go:56|8|11|7|0.23|471h6m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071808|1|stats.go:56|8|11|7|0.51|471h6m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071818|1|stats.go:56|8|11|7|0.51|471h6m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071828|1|stats.go:56|8|11|7|0.58|471h7m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071838|1|stats.go:56|8|11|7|0.56|471h7m15s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071848|1|stats.go:56|8|11|7|0.48|471h7m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071858|1|stats.go:56|8|11|7|0.70|471h7m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071908|1|stats.go:56|8|11|7|0.60|471h7m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071618|1|stats.go:56|8|11|7|0.22|471h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071921|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071928|1|stats.go:56|8|11|7|0.94|471h8m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071938|1|stats.go:56|8|11|7|0.80|471h8m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071918|1|stats.go:56|8|11|7|0.50|471h7m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071948|1|stats.go:56|8|11|7|0.67|471h8m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071148|1|stats.go:56|8|11|7|0.19|471h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071158|1|stats.go:56|8|11|7|0.24|471h0m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071208|1|stats.go:56|8|11|7|0.20|471h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071218|1|stats.go:56|8|11|7|0.24|471h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071228|1|stats.go:56|8|11|7|0.28|471h1m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071238|1|stats.go:56|8|11|7|0.32|471h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071248|1|stats.go:56|8|11|7|0.27|471h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071258|1|stats.go:56|8|11|7|0.23|471h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071318|1|stats.go:56|8|11|7|0.38|471h1m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071328|1|stats.go:56|8|11|7|0.32|471h2m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071338|1|stats.go:56|8|11|7|0.35|471h2m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071348|1|stats.go:56|8|11|7|0.30|471h2m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071308|1|stats.go:56|8|11|7|0.35|471h1m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071408|1|stats.go:56|8|11|7|0.48|471h2m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071358|1|stats.go:56|8|11|7|0.57|471h2m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071428|1|stats.go:56|8|11|7|0.41|471h3m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071418|1|stats.go:56|8|11|7|0.49|471h2m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071448|1|stats.go:56|8|11|7|0.29|471h3m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071458|1|stats.go:56|8|11|7|0.25|471h3m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071508|1|stats.go:56|8|11|7|0.28|471h3m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071519|1|stats.go:56|8|11|7|0.24|471h3m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071438|1|stats.go:56|8|11|7|0.35|471h3m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071539|1|stats.go:56|8|11|7|0.17|471h4m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071529|1|stats.go:56|8|11|7|0.20|471h4m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071559|1|stats.go:56|8|11|7|0.12|471h4m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071609|1|stats.go:56|8|11|7|0.18|471h4m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071619|1|stats.go:56|8|11|7|0.22|471h4m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071629|1|stats.go:56|8|11|7|0.27|471h5m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071549|1|stats.go:56|8|11|7|0.14|471h4m26s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071649|1|stats.go:56|8|11|7|0.39|471h5m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071639|1|stats.go:56|8|11|7|0.46|471h5m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071709|1|stats.go:56|8|11|7|0.28|471h5m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071719|1|stats.go:56|8|11|7|0.32|471h5m56s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071729|1|stats.go:56|8|11|7|0.27|471h6m6s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071739|1|stats.go:56|8|11|7|0.23|471h6m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071659|1|stats.go:56|8|11|7|0.33|471h5m36s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071759|1|stats.go:56|8|11|7|0.23|471h6m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071809|1|stats.go:56|8|11|7|0.51|471h6m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071819|1|stats.go:56|8|11|7|0.51|471h6m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071829|1|stats.go:56|8|11|7|0.58|471h7m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071749|1|stats.go:56|8|11|7|0.27|471h6m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071849|1|stats.go:56|8|11|7|0.48|471h7m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071859|1|stats.go:56|8|11|7|0.70|471h7m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071909|1|stats.go:56|8|11|7|0.60|471h7m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071839|1|stats.go:56|8|11|7|0.56|471h7m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
+INFO|20211002-071921|1|stats.go:56|8|15|7|1.02|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071919|1|stats.go:56|8|11|7|0.50|471h7m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071922|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071939|1|stats.go:56|8|11|7|0.80|471h8m16s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071929|1|stats.go:56|8|11|7|0.94|471h8m6s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071148|1|stats.go:56|8|11|7|0.19|471h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071158|1|stats.go:56|8|11|7|0.24|471h0m36s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
+INFO|20211002-071208|1|stats.go:56|8|11|7|0.20|471h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|13|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071218|1|stats.go:56|8|11|7|0.24|471h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071228|1|stats.go:56|8|11|7|0.28|471h1m6s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071238|1|stats.go:56|8|11|7|0.32|471h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071248|1|stats.go:56|8|11|7|0.27|471h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071258|1|stats.go:56|8|11|7|0.23|471h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071308|1|stats.go:56|8|11|7|0.35|471h1m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071318|1|stats.go:56|8|11|7|0.38|471h1m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071328|1|stats.go:56|8|11|7|0.32|471h2m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071348|1|stats.go:56|8|11|7|0.30|471h2m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071358|1|stats.go:56|8|11|7|0.57|471h2m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071408|1|stats.go:56|8|11|7|0.48|471h2m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071418|1|stats.go:56|8|11|7|0.49|471h2m56s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071428|1|stats.go:56|8|11|7|0.41|471h3m6s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071438|1|stats.go:56|8|11|7|0.35|471h3m16s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071448|1|stats.go:56|8|11|7|0.29|471h3m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071458|1|stats.go:56|8|11|7|0.25|471h3m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071508|1|stats.go:56|8|11|7|0.28|471h3m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071518|1|stats.go:56|8|11|7|0.24|471h3m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071528|1|stats.go:56|8|11|7|0.20|471h4m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071538|1|stats.go:56|8|11|7|0.17|471h4m16s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071548|1|stats.go:56|8|11|7|0.14|471h4m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071558|1|stats.go:56|8|11|7|0.12|471h4m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071608|1|stats.go:56|8|11|7|0.18|471h4m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071618|1|stats.go:56|8|11|7|0.22|471h4m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071628|1|stats.go:56|8|11|7|0.27|471h5m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071638|1|stats.go:56|8|11|7|0.46|471h5m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071648|1|stats.go:56|8|11|7|0.39|471h5m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071658|1|stats.go:56|8|11|7|0.33|471h5m36s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071708|1|stats.go:56|8|11|7|0.28|471h5m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071718|1|stats.go:56|8|11|7|0.32|471h5m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071728|1|stats.go:56|8|11|7|0.27|471h6m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071738|1|stats.go:56|8|11|7|0.23|471h6m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071748|1|stats.go:56|8|11|7|0.27|471h6m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071338|1|stats.go:56|8|11|7|0.35|471h2m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071758|1|stats.go:56|8|11|7|0.23|471h6m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071818|1|stats.go:56|8|11|7|0.51|471h6m56s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071828|1|stats.go:56|8|11|7|0.58|471h7m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071838|1|stats.go:56|8|11|7|0.56|471h7m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071848|1|stats.go:56|8|11|7|0.48|471h7m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071858|1|stats.go:56|8|11|7|0.70|471h7m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071908|1|stats.go:56|8|11|7|0.60|471h7m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071808|1|stats.go:56|8|11|7|0.51|471h6m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071921|1|stats.go:56|8|15|7|1.02|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071918|1|stats.go:56|8|11|7|0.50|471h7m56s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
+INFO|20211002-071922|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071928|1|stats.go:56|8|11|7|0.94|471h8m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071938|1|stats.go:56|8|11|7|0.80|471h8m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|11|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071159|1|stats.go:56|8|11|7|0.24|471h0m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071209|1|stats.go:56|8|11|7|0.20|471h0m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071219|1|stats.go:56|8|11|7|0.24|471h0m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071149|1|stats.go:56|8|11|7|0.19|471h0m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071239|1|stats.go:56|8|11|7|0.32|471h1m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071249|1|stats.go:56|8|11|7|0.27|471h1m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071259|1|stats.go:56|8|11|7|0.23|471h1m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071229|1|stats.go:56|8|11|7|0.28|471h1m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071319|1|stats.go:56|8|11|7|0.38|471h1m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071329|1|stats.go:56|8|11|7|0.32|471h2m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071309|1|stats.go:56|8|11|7|0.35|471h1m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071349|1|stats.go:56|8|11|7|0.30|471h2m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071359|1|stats.go:56|8|11|7|0.57|471h2m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071409|1|stats.go:56|8|11|7|0.48|471h2m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071419|1|stats.go:56|8|11|7|0.49|471h2m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071429|1|stats.go:56|8|11|7|0.41|471h3m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071439|1|stats.go:56|8|11|7|0.35|471h3m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071449|1|stats.go:56|8|11|7|0.29|471h3m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071459|1|stats.go:56|8|11|7|0.25|471h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071509|1|stats.go:56|8|11|7|0.28|471h3m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071519|1|stats.go:56|8|11|7|0.24|471h3m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071339|1|stats.go:56|8|11|7|0.35|471h2m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071529|1|stats.go:56|8|11|7|0.20|471h4m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071539|1|stats.go:56|8|11|7|0.17|471h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071559|1|stats.go:56|8|11|7|0.12|471h4m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071609|1|stats.go:56|8|11|7|0.18|471h4m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071619|1|stats.go:56|8|11|7|0.22|471h4m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071629|1|stats.go:56|8|11|7|0.27|471h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071639|1|stats.go:56|8|11|7|0.46|471h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071649|1|stats.go:56|8|11|7|0.39|471h5m27s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071659|1|stats.go:56|8|11|7|0.33|471h5m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071709|1|stats.go:56|8|11|7|0.28|471h5m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071719|1|stats.go:56|8|11|7|0.32|471h5m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071729|1|stats.go:56|8|11|7|0.27|471h6m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071739|1|stats.go:56|8|11|7|0.23|471h6m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071749|1|stats.go:56|8|11|7|0.27|471h6m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071759|1|stats.go:56|8|11|7|0.23|471h6m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071809|1|stats.go:56|8|11|7|0.51|471h6m47s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071549|1|stats.go:56|8|11|7|0.14|471h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071819|1|stats.go:56|8|11|7|0.51|471h6m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071829|1|stats.go:56|8|11|7|0.58|471h7m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071849|1|stats.go:56|8|11|7|0.48|471h7m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071859|1|stats.go:56|8|11|7|0.70|471h7m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071909|1|stats.go:56|8|11|7|0.60|471h7m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071839|1|stats.go:56|8|11|7|0.56|471h7m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071922|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071929|1|stats.go:56|8|11|7|0.94|471h8m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071939|1|stats.go:56|8|11|7|0.80|471h8m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071919|1|stats.go:56|8|11|7|0.50|471h7m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071146|1|stats.go:56|8|11|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|15|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|13|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071156|1|stats.go:56|8|11|7|0.24|471h0m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071206|1|stats.go:56|8|11|7|0.20|471h0m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|17|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071226|1|stats.go:56|8|11|7|0.28|471h1m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071236|1|stats.go:56|8|11|7|0.32|471h1m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071246|1|stats.go:56|8|11|7|0.27|471h1m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071256|1|stats.go:56|8|11|7|0.23|471h1m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071306|1|stats.go:56|8|11|7|0.35|471h1m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071316|1|stats.go:56|8|11|7|0.38|471h1m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071326|1|stats.go:56|8|11|7|0.32|471h2m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071336|1|stats.go:56|8|11|7|0.35|471h2m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071346|1|stats.go:56|8|11|7|0.30|471h2m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071356|1|stats.go:56|8|11|7|0.57|471h2m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071406|1|stats.go:56|8|11|7|0.48|471h2m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071416|1|stats.go:56|8|11|7|0.49|471h2m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071426|1|stats.go:56|8|11|7|0.41|471h3m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071216|1|stats.go:56|8|11|7|0.24|471h0m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071446|1|stats.go:56|8|11|7|0.29|471h3m24s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071456|1|stats.go:56|8|11|7|0.25|471h3m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071506|1|stats.go:56|8|11|7|0.28|471h3m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071516|1|stats.go:56|8|11|7|0.24|471h3m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071526|1|stats.go:56|8|11|7|0.20|471h4m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071536|1|stats.go:56|8|11|7|0.17|471h4m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071546|1|stats.go:56|8|11|7|0.14|471h4m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071556|1|stats.go:56|8|11|7|0.12|471h4m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071606|1|stats.go:56|8|11|7|0.18|471h4m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071617|1|stats.go:56|8|11|7|0.22|471h4m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071627|1|stats.go:56|8|11|7|0.27|471h5m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071637|1|stats.go:56|8|11|7|0.46|471h5m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071647|1|stats.go:56|8|11|7|0.39|471h5m24s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071657|1|stats.go:56|8|11|7|0.33|471h5m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071707|1|stats.go:56|8|11|7|0.28|471h5m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071717|1|stats.go:56|8|11|7|0.32|471h5m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071727|1|stats.go:56|8|11|7|0.27|471h6m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071737|1|stats.go:56|8|11|7|0.23|471h6m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071747|1|stats.go:56|8|11|7|0.27|471h6m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071757|1|stats.go:56|8|11|7|0.23|471h6m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071807|1|stats.go:56|8|11|7|0.51|471h6m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071817|1|stats.go:56|8|11|7|0.51|471h6m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071827|1|stats.go:56|8|11|7|0.58|471h7m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071837|1|stats.go:56|8|11|7|0.56|471h7m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071847|1|stats.go:56|8|11|7|0.48|471h7m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071857|1|stats.go:56|8|11|7|0.70|471h7m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071907|1|stats.go:56|8|11|7|0.60|471h7m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071917|1|stats.go:56|8|11|7|0.50|471h7m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071921|1|stats.go:56|8|15|7|1.02|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071922|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071927|1|stats.go:56|8|11|7|0.94|471h8m4s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
+INFO|20211002-071937|1|stats.go:56|8|11|7|0.80|471h8m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071947|1|stats.go:56|8|11|7|0.67|471h8m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071436|1|stats.go:56|8|11|7|0.35|471h3m14s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071146|1|stats.go:56|8|11|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|15|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|13|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
+INFO|20211002-071206|1|stats.go:56|8|11|7|0.20|471h0m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071156|1|stats.go:56|8|11|7|0.24|471h0m34s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
+INFO|20211002-071216|1|stats.go:56|8|11|7|0.24|471h0m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071226|1|stats.go:56|8|11|7|0.28|471h1m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071236|1|stats.go:56|8|11|7|0.32|471h1m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071246|1|stats.go:56|8|11|7|0.27|471h1m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071256|1|stats.go:56|8|11|7|0.23|471h1m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071306|1|stats.go:56|8|11|7|0.35|471h1m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071316|1|stats.go:56|8|11|7|0.38|471h1m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071326|1|stats.go:56|8|11|7|0.32|471h2m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071336|1|stats.go:56|8|11|7|0.35|471h2m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071346|1|stats.go:56|8|11|7|0.30|471h2m24s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071356|1|stats.go:56|8|11|7|0.57|471h2m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071406|1|stats.go:56|8|11|7|0.48|471h2m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071416|1|stats.go:56|8|11|7|0.49|471h2m54s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071426|1|stats.go:56|8|11|7|0.41|471h3m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071436|1|stats.go:56|8|11|7|0.35|471h3m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071446|1|stats.go:56|8|11|7|0.29|471h3m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071456|1|stats.go:56|8|11|7|0.25|471h3m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071506|1|stats.go:56|8|11|7|0.28|471h3m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|13|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071526|1|stats.go:56|8|11|7|0.20|471h4m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071536|1|stats.go:56|8|11|7|0.17|471h4m14s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071546|1|stats.go:56|8|11|7|0.14|471h4m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071556|1|stats.go:56|8|11|7|0.12|471h4m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071606|1|stats.go:56|8|11|7|0.18|471h4m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071616|1|stats.go:56|8|11|7|0.22|471h4m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071626|1|stats.go:56|8|11|7|0.27|471h5m4s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071636|1|stats.go:56|8|11|7|0.46|471h5m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071646|1|stats.go:56|8|11|7|0.39|471h5m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071656|1|stats.go:56|8|11|7|0.33|471h5m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071706|1|stats.go:56|8|11|7|0.28|471h5m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071716|1|stats.go:56|8|11|7|0.32|471h5m54s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071726|1|stats.go:56|8|11|7|0.27|471h6m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071736|1|stats.go:56|8|11|7|0.23|471h6m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071746|1|stats.go:56|8|11|7|0.27|471h6m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071756|1|stats.go:56|8|11|7|0.23|471h6m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071806|1|stats.go:56|8|11|7|0.51|471h6m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071816|1|stats.go:56|8|11|7|0.51|471h6m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071826|1|stats.go:56|8|11|7|0.58|471h7m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071836|1|stats.go:56|8|11|7|0.56|471h7m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071846|1|stats.go:56|8|11|7|0.48|471h7m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071856|1|stats.go:56|8|11|7|0.70|471h7m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071906|1|stats.go:56|8|11|7|0.60|471h7m44s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071916|1|stats.go:56|8|11|7|0.50|471h7m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=1
+INFO|20211002-071921|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071926|1|stats.go:56|8|11|7|0.94|471h8m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071936|1|stats.go:56|8|11|7|0.80|471h8m14s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
+INFO|20211002-071946|1|stats.go:56|8|11|7|0.67|471h8m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071516|1|stats.go:56|8|11|7|0.24|471h3m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|12|7|0.19|471h0m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071157|1|stats.go:56|8|11|7|0.24|471h0m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071207|1|stats.go:56|8|11|7|0.20|471h0m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|16|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071217|1|stats.go:56|8|11|7|0.24|471h0m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071227|1|stats.go:56|8|11|7|0.28|471h1m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071237|1|stats.go:56|8|11|7|0.32|471h1m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071247|1|stats.go:56|8|11|7|0.27|471h1m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071257|1|stats.go:56|8|11|7|0.23|471h1m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071307|1|stats.go:56|8|11|7|0.35|471h1m45s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071317|1|stats.go:56|8|11|7|0.38|471h1m55s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071327|1|stats.go:56|8|11|7|0.32|471h2m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071337|1|stats.go:56|8|11|7|0.35|471h2m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071347|1|stats.go:56|8|11|7|0.30|471h2m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071357|1|stats.go:56|8|11|7|0.57|471h2m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071407|1|stats.go:56|8|11|7|0.48|471h2m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071417|1|stats.go:56|8|11|7|0.49|471h2m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071427|1|stats.go:56|8|11|7|0.41|471h3m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071437|1|stats.go:56|8|11|7|0.35|471h3m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071447|1|stats.go:56|8|11|7|0.29|471h3m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071457|1|stats.go:56|8|11|7|0.25|471h3m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071507|1|stats.go:56|8|11|7|0.28|471h3m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071517|1|stats.go:56|8|11|7|0.24|471h3m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071527|1|stats.go:56|8|11|7|0.20|471h4m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071537|1|stats.go:56|8|11|7|0.17|471h4m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071547|1|stats.go:56|8|11|7|0.14|471h4m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071557|1|stats.go:56|8|11|7|0.12|471h4m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071607|1|stats.go:56|8|11|7|0.18|471h4m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071617|1|stats.go:56|8|11|7|0.22|471h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071627|1|stats.go:56|8|11|7|0.27|471h5m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071637|1|stats.go:56|8|11|7|0.46|471h5m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071647|1|stats.go:56|8|11|7|0.39|471h5m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071657|1|stats.go:56|8|11|7|0.33|471h5m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071717|1|stats.go:56|8|11|7|0.32|471h5m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071727|1|stats.go:56|8|11|7|0.27|471h6m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071737|1|stats.go:56|8|11|7|0.23|471h6m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071747|1|stats.go:56|8|11|7|0.27|471h6m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071757|1|stats.go:56|8|11|7|0.23|471h6m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071807|1|stats.go:56|8|11|7|0.51|471h6m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071817|1|stats.go:56|8|11|7|0.51|471h6m55s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071827|1|stats.go:56|8|11|7|0.58|471h7m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071837|1|stats.go:56|8|11|7|0.56|471h7m15s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071847|1|stats.go:56|8|11|7|0.48|471h7m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071857|1|stats.go:56|8|11|7|0.70|471h7m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071907|1|stats.go:56|8|11|7|0.60|471h7m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071917|1|stats.go:56|8|11|7|0.50|471h7m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071707|1|stats.go:56|8|11|7|0.28|471h5m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071921|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071927|1|stats.go:56|8|11|7|0.94|471h8m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071937|1|stats.go:56|8|11|7|0.80|471h8m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071947|1|stats.go:56|8|11|7|0.67|471h8m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071146|1|stats.go:56|8|11|7|0.19|471h0m23s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
+INFO|20211002-071147|1|stats.go:56|8|15|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071156|1|stats.go:56|8|11|7|0.24|471h0m33s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
+INFO|20211002-071206|1|stats.go:56|8|11|7|0.20|471h0m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071216|1|stats.go:56|8|11|7|0.24|471h0m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071226|1|stats.go:56|8|11|7|0.28|471h1m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071236|1|stats.go:56|8|11|7|0.32|471h1m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071246|1|stats.go:56|8|11|7|0.27|471h1m23s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071256|1|stats.go:56|8|11|7|0.23|471h1m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071316|1|stats.go:56|8|11|7|0.38|471h1m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071326|1|stats.go:56|8|11|7|0.32|471h2m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071336|1|stats.go:56|8|11|7|0.35|471h2m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071346|1|stats.go:56|8|11|7|0.30|471h2m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071356|1|stats.go:56|8|11|7|0.57|471h2m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071406|1|stats.go:56|8|11|7|0.48|471h2m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071416|1|stats.go:56|8|11|7|0.49|471h2m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071426|1|stats.go:56|8|11|7|0.41|471h3m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071436|1|stats.go:56|8|11|7|0.35|471h3m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071446|1|stats.go:56|8|11|7|0.29|471h3m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071456|1|stats.go:56|8|11|7|0.25|471h3m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071506|1|stats.go:56|8|11|7|0.28|471h3m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071516|1|stats.go:56|8|11|7|0.24|471h3m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071526|1|stats.go:56|8|11|7|0.20|471h4m3s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071536|1|stats.go:56|8|11|7|0.17|471h4m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071546|1|stats.go:56|8|11|7|0.14|471h4m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071556|1|stats.go:56|8|11|7|0.12|471h4m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071606|1|stats.go:56|8|11|7|0.18|471h4m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071616|1|stats.go:56|8|11|7|0.22|471h4m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071626|1|stats.go:56|8|11|7|0.27|471h5m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071636|1|stats.go:56|8|11|7|0.46|471h5m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071646|1|stats.go:56|8|11|7|0.39|471h5m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071306|1|stats.go:56|8|11|7|0.35|471h1m43s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071706|1|stats.go:56|8|11|7|0.28|471h5m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071716|1|stats.go:56|8|11|7|0.32|471h5m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071726|1|stats.go:56|8|11|7|0.27|471h6m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071736|1|stats.go:56|8|11|7|0.23|471h6m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071746|1|stats.go:56|8|11|7|0.27|471h6m23s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071656|1|stats.go:56|8|11|7|0.33|471h5m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071806|1|stats.go:56|8|11|7|0.51|471h6m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071816|1|stats.go:56|8|11|7|0.51|471h6m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071826|1|stats.go:56|8|11|7|0.58|471h7m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071836|1|stats.go:56|8|11|7|0.56|471h7m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071846|1|stats.go:56|8|11|7|0.48|471h7m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071856|1|stats.go:56|8|11|7|0.70|471h7m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071906|1|stats.go:56|8|11|7|0.60|471h7m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
+INFO|20211002-071916|1|stats.go:56|8|11|7|0.50|471h7m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071921|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071926|1|stats.go:56|8|11|7|0.94|471h8m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071936|1|stats.go:56|8|11|7|0.80|471h8m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071946|1|stats.go:56|8|11|7|0.67|471h8m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
+INFO|20211002-071756|1|stats.go:56|8|11|7|0.23|471h6m34s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
+INFO|20211002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
+INFO|20211002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071147|1|stats.go:56|8|12|7|0.19|471h0m25s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
+INFO|20211002-071157|1|stats.go:56|8|11|7|0.24|471h0m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071207|1|stats.go:56|8|11|7|0.20|471h0m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
+INFO|20211002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
+INFO|20211002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071217|1|stats.go:56|8|11|7|0.24|471h0m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071227|1|stats.go:56|8|11|7|0.28|471h1m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071237|1|stats.go:56|8|11|7|0.32|471h1m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071247|1|stats.go:56|8|11|7|0.27|471h1m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071257|1|stats.go:56|8|11|7|0.23|471h1m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071307|1|stats.go:56|8|11|7|0.35|471h1m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071317|1|stats.go:56|8|11|7|0.38|471h1m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071327|1|stats.go:56|8|11|7|0.32|471h2m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071337|1|stats.go:56|8|11|7|0.35|471h2m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071347|1|stats.go:56|8|11|7|0.30|471h2m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071357|1|stats.go:56|8|11|7|0.57|471h2m35s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071407|1|stats.go:56|8|11|7|0.48|471h2m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071417|1|stats.go:56|8|11|7|0.49|471h2m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071427|1|stats.go:56|8|11|7|0.41|471h3m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071437|1|stats.go:56|8|11|7|0.35|471h3m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071447|1|stats.go:56|8|11|7|0.29|471h3m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071457|1|stats.go:56|8|11|7|0.25|471h3m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071507|1|stats.go:56|8|11|7|0.28|471h3m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071517|1|stats.go:56|8|11|7|0.24|471h3m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071527|1|stats.go:56|8|11|7|0.20|471h4m5s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
+INFO|20211002-071537|1|stats.go:56|8|11|7|0.17|471h4m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071547|1|stats.go:56|8|11|7|0.14|471h4m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071557|1|stats.go:56|8|11|7|0.12|471h4m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071607|1|stats.go:56|8|11|7|0.18|471h4m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071617|1|stats.go:56|8|11|7|0.22|471h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071627|1|stats.go:56|8|11|7|0.27|471h5m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071637|1|stats.go:56|8|11|7|0.46|471h5m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071647|1|stats.go:56|8|11|7|0.39|471h5m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071657|1|stats.go:56|8|11|7|0.33|471h5m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071707|1|stats.go:56|8|11|7|0.28|471h5m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071717|1|stats.go:56|8|11|7|0.32|471h5m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071727|1|stats.go:56|8|11|7|0.27|471h6m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071737|1|stats.go:56|8|11|7|0.23|471h6m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071747|1|stats.go:56|8|11|7|0.27|471h6m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071757|1|stats.go:56|8|11|7|0.23|471h6m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071807|1|stats.go:56|8|11|7|0.51|471h6m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071817|1|stats.go:56|8|11|7|0.51|471h6m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071827|1|stats.go:56|8|11|7|0.58|471h7m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071837|1|stats.go:56|8|11|7|0.56|471h7m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071847|1|stats.go:56|8|11|7|0.48|471h7m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071857|1|stats.go:56|8|11|7|0.70|471h7m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071907|1|stats.go:56|8|11|7|0.60|471h7m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
+INFO|20211002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
+INFO|20211002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
+INFO|20211002-071917|1|stats.go:56|8|11|7|0.50|471h7m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
+INFO|20211002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
+INFO|20211002-071921|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
+INFO|20211002-071927|1|stats.go:56|8|11|7|0.94|471h8m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071937|1|stats.go:56|8|11|7|0.80|471h8m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071947|1|stats.go:56|8|11|7|0.67|471h8m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
+INFO|20211002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6