It's 10pm: Do You Know Where Your Writes Are?
It's 10pm: Do You Know Where Your Writes Are?
It's 10pm: Do You Know Where Your Writes Are?
> db.coll.updateOne(
{'_id ' : 12 },
{'$inc' : {'counter': 1 }}
);
> RUNNING OP...
> Oh No!
> Network Error.
> Retry op?
> Type yes/no:
No way to retrieve op state
lack of system-wide resilience
1. RetrYable writes
2. zombie cursor cleanup
3. cluster-wide kilLop
SAMANTHA RITTER
MONGODB ENGINEER
> Retry op?
> Type yes/no:
NO WAY TO RETRIEVE OP STATE.
WHY?
mongoD
client
state tied to
this connection
object
state is gone.
o
INTRODUCING:
LOGICAL
SESSIONS!
mongoD
client
14
14
o
state tied to
this session
object
state is still there!
> var session = startSession(
{ retry_writes : True }
);
> session.db.coll.updateOne(
{'_id ‘: 12 },
{'$inc': {'counter': 1 }}
);
> RUNNING OP...
> Oh No!
> Network Error.
> Reconnected!
> donT WORRY
> IVE GOT THIS
> ItS 10PM
> go watch tv or
something
Logical sessions:
retrYable
Writes!
client
sessions work
across failover
mongoD
mongoD
mongoD
14
14
client
mongoS
shard
mongoS
sessions work
across mongos
14
14
Logical sessions:
retrYable
Writes!
1UP
It's 10pm: Do You Know Where Your Writes Are?
WANT TO FIND LOTS OF DOCUMENTS
...AND DO LENGTHY PROCESSING ON
THEM
// turn off cursor timeout
> var cursor = coll.find(
no_cursor_timeout = True
);
> GOT RESULTS!
> LENGTHY PROCESSING...
> Oh No!
> Network Error
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR> TERMINATING.
> db.serverStatus();
> {"cursors" :
{“open" :
{"noTimeout" : 1 }
}
}
NO WAY TO KILL ABANDONED
CURSORS.
WHY?
client mongoD1212 1212
ok, see you
later then
please keep my
cursor alive forever
...WE DON’T KNOW IT’S ABANDONED
Logical sessions:
zombie cursor
clean up!
client mongoD1212
cursors run inside
of sessions
14
14
HOW IS THIS DIFFERENT?
client mongoD
14
14
please keep my
session alive forever
...no.
IDLE SESSIONS
EXPIRE
client mongoD1212
cursors run inside
of sessions
14
14
70
45
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR
> NETWORK ERROR> TERMINATING.
Logical sessions:
zombie cursor
clean up!
1UP
It's 10pm: Do You Know Where Your Writes Are?
// Run an op that takes FOREVER
> var cursor = coll.find(
someQueryThatRunsTableScansOnAllShards
);
I ReGRET
EVERYTHING
DANGER
// Find our operation's id
> db.currentOp();
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
// Kill it!!!!
> db.killOp( 123456 );
On a sharded cluster,
Queries Fan out
shard
client
o shard
shard
shard
mongoS
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$logicalTime" : {
"clusterTime" : Timestamp(1496862091, 101),
"signature" : {
"hash" : BinData(0,"znBnOQbapwrefOTE+9345875="),
"keyId" : NumberLong("00001232239834388037")
}
},
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
},
"active" : true,
"opid" : "c1a:596600",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
{
"desc" : "conn",
"threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "c1a:596612",
"secs_running" : 0,
"microsecs_running" : NumberLong(25),
"op" : "command",
"ns" : "admin.$cmd",
"command" : {
"currentOp" : 1,
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
},
"$configServerState" : {
"opTime" : {
"ts" : Timestamp(1496862002, 1041),
"t" : NumberLong(1)
}
}, "threadId" : "139722470946560",
"connectionId" : 41,
"client_s" : “127.0.0.1:49704",
"$db" : "admin"
},
"numYields" : 0,
"locks" : {
}
},
{
"desc" : "conn",
"threadId" : "398934083",
"connectionId" : 40,
"client_s" : "127.0.0.1:49704",
"appName" : "MongoDB Shell",
"clientMetadata" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.5.5-518-gb5147cd"
},
"os" : {
"type" : "Linux",
"name" : "Ubuntu",
"architecture" : "x86_64",
"version" : "16.04"
}
},
"active" : true,
"opid" : "12345",
"secs_running" : 0,
"microsecs_running" : NumberLong(5),
"$client" : {
"application" : {
"name" : "MongoDB Shell"
},
"driver" : {
"name" : "MongoDB Internal Client",
"version" : "3.
m U
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
S S
T m
T m m
N m
m
mY
N m M DB S
M
m M DB S
m M DB C
m U
m N m
m M DB S
m M DB C
m U
N m M DB S
M
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
T m m
N m
m
mY
N m M DB S
M
m M DB S
m M DB C
m U
m N m
m M DB S
m M DB C
m U
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
mY
N m M DB S
M
m M DB S
m M DB C
m U
m N m
m M DB S
m M DB C
m U
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
M DB S
M DB S
DB C
N m
m
M DB S
M DB C
U
S
m m
m
M DB S
M DB S
M DB C
U
N m
mm
m m
O
m M DB S
M DB C
U
S
m
T m m
N m
M DB S
M DB S
M DB C
S S
T m
T m m
N m
m
mY
N m M DB S
M
m M DB S
m M DB C
m U
m N m
m M DB S
m M DB C
m U
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB
m U
m N m
mm
m m
mm
O
m M DB S
m M DB
m U
S S
T m
T m m
N m
N m M DB S
M
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
m U
m N m
mm
m m
mm
O
m M DB S
m M DB C
m U
S S
T m
T m m
N m
N m M DB S
M
m M DB S
m M DB C
LOLWUT
NO WAY TO KILL DISTRIBUTED OPS.
Logical sessions:
cluster-wide
killoP!
// Kill it!!!!
> db.killSession( 14 );
shard
client
o shard
shard
shard
mongoS
14
14
KILL IT!!!
Logical sessions:
cluster-wide
killoP!
1UP
lack of system-wide resilience
WHY?
Resilience is the drivers’ domain
SMALLER SCALE
SHARDING is complex
1. RetrYable writes
2. zombie cursor cleanup
3. cluster-wide kilLop
DO I NEED TO REWRITE MY
APPLICATION?
NO!
It's 10pm: Do You Know Where Your Writes Are?
YES.
bit.ly/resilient-applications
@ SAMWHOCODES
THE END

More Related Content

PPTX
Building Your First Data Science Applicatino in MongoDB
PDF
Mongodb debugging-performance-problems
PDF
Diagnostics & Debugging webinar
PPTX
Diagnostics and Debugging
PDF
MySQL under the siege
PDF
Neo4j after 1 year in production
PDF
Hatohol technical-brief-20130830-hbstudy
PDF
Top Node.js Metrics to Watch
Building Your First Data Science Applicatino in MongoDB
Mongodb debugging-performance-problems
Diagnostics & Debugging webinar
Diagnostics and Debugging
MySQL under the siege
Neo4j after 1 year in production
Hatohol technical-brief-20130830-hbstudy
Top Node.js Metrics to Watch

What's hot (20)

PDF
MongoDB Performance Tuning
PDF
BlockChain implementation by python
PDF
Webinar slides: How to Secure MongoDB with ClusterControl
ODP
Intravert Server side processing for Cassandra
PDF
Philipp Krenn "Make Your Data FABulous"
PDF
Deep dive into PostgreSQL statistics.
PDF
[263] s2graph large-scale-graph-database-with-hbase-2
PDF
MongoDB World 2016: Deciphering .explain() Output
PPTX
Best Practices in Handling Performance Issues
PDF
Service discovery and configuration provisioning
ODP
Beyond php it's not (just) about the code
PDF
Roll Your Own API Management Platform with nginx and Lua
PDF
Concept of BlockChain & Decentralized Application
PDF
Understanding Autovacuum
PDF
Lua tech talk
PDF
Learning Dtrace
ODP
Beyond PHP - It's not (just) about the code
PDF
Philipp Krenn | Make Your Data FABulous | Codemotion Madrid 2018
PPTX
Hack ASP.NET website
PPTX
Jsr107 come, code, cache, compute!
MongoDB Performance Tuning
BlockChain implementation by python
Webinar slides: How to Secure MongoDB with ClusterControl
Intravert Server side processing for Cassandra
Philipp Krenn "Make Your Data FABulous"
Deep dive into PostgreSQL statistics.
[263] s2graph large-scale-graph-database-with-hbase-2
MongoDB World 2016: Deciphering .explain() Output
Best Practices in Handling Performance Issues
Service discovery and configuration provisioning
Beyond php it's not (just) about the code
Roll Your Own API Management Platform with nginx and Lua
Concept of BlockChain & Decentralized Application
Understanding Autovacuum
Lua tech talk
Learning Dtrace
Beyond PHP - It's not (just) about the code
Philipp Krenn | Make Your Data FABulous | Codemotion Madrid 2018
Hack ASP.NET website
Jsr107 come, code, cache, compute!
Ad

Similar to It's 10pm: Do You Know Where Your Writes Are? (20)

PPTX
Architecting Secure and Compliant Applications with MongoDB
PPTX
Webinar: Architecting Secure and Compliant Applications with MongoDB
PDF
Node.js - async for the rest of us.
PDF
FwDays 2021: Metarhia Technology Stack for Node.js
PDF
MongoDB Europe 2016 - Debugging MongoDB Performance
ODP
NYC* 2013 - "Advanced Data Processing: Beyond Queries and Slices"
PDF
10 Key MongoDB Performance Indicators
PDF
Original slides from Ryan Dahl's NodeJs intro talk
PDF
RabbitMQ + CouchDB = Awesome
PDF
Maintenance for MongoDB Replica Sets
PPTX
MongoDB Live Hacking
PDF
Node js introduction
PDF
Mastering Spring Boot's Actuator with Madhura Bhave
PPTX
NodeJS
PDF
The powerful toolset of the go-mysql library
PPTX
Dynamic virtual evironments
PDF
Introduction to Node.js
PPTX
Building and Deploying Application to Apache Mesos
PDF
NoSQL meets Microservices
PDF
Michael Hackstein - NoSQL meets Microservices - NoSQL matters Dublin 2015
Architecting Secure and Compliant Applications with MongoDB
Webinar: Architecting Secure and Compliant Applications with MongoDB
Node.js - async for the rest of us.
FwDays 2021: Metarhia Technology Stack for Node.js
MongoDB Europe 2016 - Debugging MongoDB Performance
NYC* 2013 - "Advanced Data Processing: Beyond Queries and Slices"
10 Key MongoDB Performance Indicators
Original slides from Ryan Dahl's NodeJs intro talk
RabbitMQ + CouchDB = Awesome
Maintenance for MongoDB Replica Sets
MongoDB Live Hacking
Node js introduction
Mastering Spring Boot's Actuator with Madhura Bhave
NodeJS
The powerful toolset of the go-mysql library
Dynamic virtual evironments
Introduction to Node.js
Building and Deploying Application to Apache Mesos
NoSQL meets Microservices
Michael Hackstein - NoSQL meets Microservices - NoSQL matters Dublin 2015
Ad

More from MongoDB (20)

PDF
MongoDB SoCal 2020: Migrate Anything* to MongoDB Atlas
PDF
MongoDB SoCal 2020: Go on a Data Safari with MongoDB Charts!
PDF
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
PDF
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
PDF
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
PDF
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
PDF
MongoDB SoCal 2020: MongoDB Atlas Jump Start
PDF
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
PDF
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
PDF
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
PDF
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
PDF
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
PDF
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
PDF
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
PDF
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
PDF
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
PDF
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
PDF
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
PDF
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
PDF
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
MongoDB SoCal 2020: Migrate Anything* to MongoDB Atlas
MongoDB SoCal 2020: Go on a Data Safari with MongoDB Charts!
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...

Recently uploaded (20)

PDF
August Patch Tuesday
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PPTX
Chapter 5: Probability Theory and Statistics
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
DOCX
search engine optimization ppt fir known well about this
PDF
Enhancing emotion recognition model for a student engagement use case through...
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PPTX
Web Crawler for Trend Tracking Gen Z Insights.pptx
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Architecture types and enterprise applications.pdf
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PPTX
observCloud-Native Containerability and monitoring.pptx
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
August Patch Tuesday
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
Chapter 5: Probability Theory and Statistics
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
search engine optimization ppt fir known well about this
Enhancing emotion recognition model for a student engagement use case through...
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Web Crawler for Trend Tracking Gen Z Insights.pptx
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
Taming the Chaos: How to Turn Unstructured Data into Decisions
NewMind AI Weekly Chronicles – August ’25 Week III
Architecture types and enterprise applications.pdf
1 - Historical Antecedents, Social Consideration.pdf
WOOl fibre morphology and structure.pdf for textiles
A novel scalable deep ensemble learning framework for big data classification...
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
O2C Customer Invoices to Receipt V15A.pptx
observCloud-Native Containerability and monitoring.pptx
Univ-Connecticut-ChatGPT-Presentaion.pdf

It's 10pm: Do You Know Where Your Writes Are?

  • 4. > db.coll.updateOne( {'_id ' : 12 }, {'$inc' : {'counter': 1 }} );
  • 5. > RUNNING OP... > Oh No! > Network Error.
  • 6. > Retry op? > Type yes/no:
  • 7. No way to retrieve op state
  • 8. lack of system-wide resilience
  • 9. 1. RetrYable writes 2. zombie cursor cleanup 3. cluster-wide kilLop
  • 11. > Retry op? > Type yes/no:
  • 12. NO WAY TO RETRIEVE OP STATE. WHY?
  • 13. mongoD client state tied to this connection object state is gone. o
  • 15. mongoD client 14 14 o state tied to this session object state is still there!
  • 16. > var session = startSession( { retry_writes : True } ); > session.db.coll.updateOne( {'_id ‘: 12 }, {'$inc': {'counter': 1 }} );
  • 17. > RUNNING OP... > Oh No! > Network Error.
  • 18. > Reconnected! > donT WORRY > IVE GOT THIS > ItS 10PM > go watch tv or something
  • 23. 1UP
  • 25. WANT TO FIND LOTS OF DOCUMENTS ...AND DO LENGTHY PROCESSING ON THEM
  • 26. // turn off cursor timeout > var cursor = coll.find( no_cursor_timeout = True );
  • 27. > GOT RESULTS! > LENGTHY PROCESSING... > Oh No! > Network Error
  • 28. > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR> TERMINATING.
  • 29. > db.serverStatus(); > {"cursors" : {“open" : {"noTimeout" : 1 } } }
  • 30. NO WAY TO KILL ABANDONED CURSORS. WHY?
  • 31. client mongoD1212 1212 ok, see you later then please keep my cursor alive forever
  • 32. ...WE DON’T KNOW IT’S ABANDONED
  • 34. client mongoD1212 cursors run inside of sessions 14 14
  • 35. HOW IS THIS DIFFERENT?
  • 36. client mongoD 14 14 please keep my session alive forever ...no.
  • 38. client mongoD1212 cursors run inside of sessions 14 14 70 45
  • 39. > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR > NETWORK ERROR> TERMINATING.
  • 41. 1UP
  • 43. // Run an op that takes FOREVER > var cursor = coll.find( someQueryThatRunsTableScansOnAllShards );
  • 46. // Find our operation's id > db.currentOp(); { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } },
  • 47. // Kill it!!!! > db.killOp( 123456 );
  • 48. On a sharded cluster, Queries Fan out
  • 50. { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$logicalTime" : { "clusterTime" : Timestamp(1496862091, 101), "signature" : { "hash" : BinData(0,"znBnOQbapwrefOTE+9345875="), "keyId" : NumberLong("00001232239834388037") } }, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { }, "active" : true, "opid" : "c1a:596600", "secs_running" : 0, "microsecs_running" : NumberLong(5), "op" : "command", "ns" : "admin.$cmd", "command" : { "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, { "desc" : "conn", "threadId" : "139722470946560", "connectionId" : 41, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "c1a:596612", "secs_running" : 0, "microsecs_running" : NumberLong(25), "op" : "command", "ns" : "admin.$cmd", "command" : { "currentOp" : 1, "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "$configServerState" : { "opTime" : { "ts" : Timestamp(1496862002, 1041), "t" : NumberLong(1) } }, "threadId" : "139722470946560", "connectionId" : 41, "client_s" : “127.0.0.1:49704", "$db" : "admin" }, "numYields" : 0, "locks" : { } }, { "desc" : "conn", "threadId" : "398934083", "connectionId" : 40, "client_s" : "127.0.0.1:49704", "appName" : "MongoDB Shell", "clientMetadata" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3.5.5-518-gb5147cd" }, "os" : { "type" : "Linux", "name" : "Ubuntu", "architecture" : "x86_64", "version" : "16.04" } }, "active" : true, "opid" : "12345", "secs_running" : 0, "microsecs_running" : NumberLong(5), "$client" : { "application" : { "name" : "MongoDB Shell" }, "driver" : { "name" : "MongoDB Internal Client", "version" : "3. m U N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m S S T m T m m N m m mY N m M DB S M m M DB S m M DB C m U m N m m M DB S m M DB C m U N m M DB S M S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m T m m N m m mY N m M DB S M m M DB S m M DB C m U m N m m M DB S m M DB C m U N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m mY N m M DB S M m M DB S m M DB C m U m N m m M DB S m M DB C m U N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m M DB S M DB S DB C N m m M DB S M DB C U S m m m M DB S M DB S M DB C U N m mm m m O m M DB S M DB C U S m T m m N m M DB S M DB S M DB C S S T m T m m N m m mY N m M DB S M m M DB S m M DB C m U m N m m M DB S m M DB C m U N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB m U m N m mm m m mm O m M DB S m M DB m U S S T m T m m N m N m M DB S M N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C m U m N m mm m m mm O m M DB S m M DB C m U S S T m T m m N m N m M DB S M m M DB S m M DB C
  • 52. NO WAY TO KILL DISTRIBUTED OPS.
  • 54. // Kill it!!!! > db.killSession( 14 );
  • 57. 1UP
  • 58. lack of system-wide resilience
  • 59. WHY?
  • 60. Resilience is the drivers’ domain
  • 63. 1. RetrYable writes 2. zombie cursor cleanup 3. cluster-wide kilLop
  • 64. DO I NEED TO REWRITE MY APPLICATION? NO!
  • 66. YES.