InterviewSolution
| 1. |
What Is The Role Of A Profiler In Mongodb? Where Does The Writes All The Data? |
|
Answer» The DATABASE profiler collects fine grained data about MONGODB write operations, cursors, database commands on a running mongod INSTANCE. You can enable profiling on a per-database or per-instance basis. The database profiler writes all the data it collects to the system.profile collection, which is a CAPPED collection. The database profiler collects fine grained data about MongoDB write operations, cursors, database commands on a running mongod instance. You can enable profiling on a per-database or per-instance basis. The database profiler writes all the data it collects to the system.profile collection, which is a capped collection. |
|