top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to check Transaction per seconds in mongodb v2.6.10?

+1 vote
304 views

I want to know no of transaction per seconds can be possible in our mongodb v2.6.10.
Can someone please let me know how can I check this.

posted Jan 20, 2016 by Anderson

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

In the mongodb-org-tools package there is a command line utility: mongostat

This will show transactions per second, but broken down to inserts, updates, deletes and queries. Please check the following documentation -
https://docs.mongodb.org/manual/reference/program/mongostat/

In the MongoDB server, the command db.serverStatus() produces the metrics that also mongostat will report, but it is not easy for a human to get the per-second number from that.

answer Jan 20, 2016 by Satish Mishra
Similar Questions
+1 vote

Does anyone know how I remove orphaned documents in a cluster (sharding) in mongodb version 3.0.10, My actual data are 20 million orphans and documents the value amounts to 21 million data

+1 vote

I have a MongoDB 2.6.8 and want to upgrade to 3.2.Sharding is currently running and needs to upgrade with low downtime (Ill be happy if I get Zero downtime)
Please share best standard process/documentation/checklist?

+1 vote

Can we connect to MongoDB Server 2.6.12 using Java Driver version 0.11? We have a constraint of upgrading Java Driver version which would require huge change in our client code. We use JDK 8 for compilation of our project. We would like to know whether it is possible to connect to MongoDB Server 2.6.12 or MongoDB Server 3.0 using Java Driver version 0.11 if we only use the limited set of features (not the functionalities that were introduced in Server version 2.6.12 or 3.0).

...