Aqua Data Studio 16.0.0
Build #: 43007
Built on: 2015-Mar-19 05:31:05 PM
|
125 KB
MMAPv1 is the default storage engine in 3.0.
We use SHOW INDEXES IN <db_name>
to retrieve the list of indexes.
We use SHOW INDEXES IN <db_name>
to retrieve the list of indexes.
MongoDB 3.0 deprecates direct access to system.indexes and system.namespaces collections. Use the createIndexes and listIndexes commands instead.
Ref. Link
MongoDB 3.0 deprecates direct access to system.indexes and system.namespaces collections. Use the createIndexes and listIndexes commands instead.
Ref. Link
We have a user issue stating that in MongoDB 3.0.1, they are not able to see indexes. Following-up to see if they are using wiredTiger storage engine or not. Confirmed they are using wiredTiger
We have a user issue stating that in MongoDB 3.0.1, they are not able to see indexes. Following-up to see if they are using wiredTiger storage engine or not. Confirmed they are using wiredTiger
The output schema for the documents returned by the listIndexes command is different. The Mongo Java Driver 3.0 library has dedicated operations that wrap such queries. I'm trying to implement a suitable adaptation for ADS v16 and v15 so that we can retrieve the indexes related info using current Mongo Java Driver (2.13).
The output schema for the documents returned by the listIndexes command is different. The Mongo Java Driver 3.0 library has dedicated operations that wrap such queries. I'm trying to implement a suitable adaptation for ADS v16 and v15 so that we can retrieve the indexes related info using current Mongo Java Driver (2.13).
It turned out that the Mongo Java Driver 2.13.0 API provides the DBCollection#getIndexInfo()
method that invokes listIndexes command and unwraps result if connected to a MongoDB Server 3.0+ .
It turned out that the Mongo Java Driver 2.13.0 API provides the DBCollection#getIndexInfo()
method that invokes listIndexes command and unwraps result if connected to a MongoDB Server 3.0+ .
Verified in ADS v16.0.3-10 - Indexes are displayed correctly in the Schema Tree Node, Schema Script Generator, ER Modeler and Object Search
Verified in ADS v16.0.3-10 - Indexes are displayed correctly in the Schema Tree Node, Schema Script Generator, ER Modeler and Object Search
Issue #13163 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build ADS 16.0.3-10 (mongo-jdbc 1.4.6) |
No time estimate |
MMAPv1 is the default storage engine in 3.0.