NoSQLBooster 5.0 Is Now Available!
We’re happy to mark another significant milestone for the NoSQLBooster for MongoDB with the final release of the 5.0. It brings a number of new features to increase MongoDB’ers productivity, comprehensive server monitoring and diagnostics tools, visual explain plan, MongoDB log parser, enhanced SQL Query to support SQL JOIN and uncorrelated sub-queries, more friendly display of object and array values, One-click Group-By, better code snippets, mark changed lines and NoSQLBooster-enabled live tutorials…
The product will automatically enter the 30-day trial mode after successful installation. At the end of the 30-day trial period, the product becomes a free edition. The free edition is free for personal/commercial use but with limited functions.
The following figure shows the main interface of version 5.0.
Main interface
Let’s dive in and get an overview of what’s coming in NoSQLBooster 5.0!
Although we are showing screenshots of NoSQLBooster for Windows, all these new features are available for Mac OS X and Linux as well.
What’s new?
“My Queries/Samples” pane
In version 5.0, the most significant change in the UI interface was the addition of “My Queries / Samples” Pane. The “My Queries / Samples” pane has two tabs, “My Queries” and “Samples.”
The “My Queries” tab is used to open user-saved query scripts quickly. By default, the user-saved query script is saved as a “connection -> database -> query name” directory structure. Double-click to open a saved query script will automatically connect to the appropriate database server and switches to the appropriate database.
The “Sample” tab includes several NoSQLBooster-Enabled tutorials. All samples are executable in NoSQLBooster already, with detailed descriptions. You can try these queries and change them to learn better.
Samples tab
Visual explain plan
NoSQLBooster’s Visual Explain transforms explain output into a hierarchical view of the query plan, which is significantly easier to read and understand, allowing for query tuning to enhance query and resolve performance issues.
Visual explain
SQL joins and uncorrelated sub-queries
MongoDB 3.2 introduced the new $lookup operator. The $lookup operator added to the aggregation pipeline is essentially identical to a left outer SQL join. MongoDB 3.6 further enhances the capabilities of the $lookup operator to perform uncorrelated sub-queries between two collections as well as allow other join conditions besides a single equality match. NoSQLBooster 5.0 implements SQL Equi join and unrelated queries with the power of the $lookup operator.
NoSQLBooster supports INNER JOIN and LEFT JOIN, OUTER JOIN is not supported.
It should be mentioned that there is a tutorial on NoSQLBooster SQL Query for MongoDB in the lower left “Samples” pane. With this tutorial, you can learn and understand how to use NoSQLBooster SQL Query for MongoDB. Better yet, all SQL Functions provide the appropriate code snippets and mouse hover information and support code completion.
SQL Equi join
Monitoring tools
In version 5.0, we add several server monitoring and diagnostics tools and consolidate all monitoring related work into a drop-down menu called “Monitoring.”
Monitoring drop menu
In-progress operations viewer
When your MongoDB is unresponsive, you need to determine the cause quickly. Although there can be many causes for server unresponsiveness, we sometimes find that exceptionally long running operations and/or blocking operations are the culprits. The new “In-progress operations” tool integrates the currentOp() and killOp() commands and allows you to find and kill long running MongoDB operations quickly.
The db.currentOp() command reports in-progress operations for the mongod instance.
In-progress operations viewer
MongoDB log parser
This feature includes two MongoDB log viewers, one for parsing and displaying the most recent 1024 logged MongoD events, and the other for parsing and displaying external MongoDB log files. This tool will parse the log quickly and output general information about its contents, including timestamp, severity, component, context and command specific messages. It also allows you to save parsed log entries to MongoDB’s collection so that you can further analyze and query the logs using MongoDB’s find method.
MongoDB log parser
Database profiler
This simple feature will display the database profiler logs information about database operations in “system.profile” collection. The profiler is off by default. You can enable the profiler on a per-database or per-instance basis at one of several profiling levels. By default, the slow operation threshold is 100 milliseconds.
Troubleshoot replica sets
This feature is a partial implementation of each of the functions mentioned in this official document for MongoDB - Troubleshoot Replica Sets.
It includes the following small features.
Enhanced data viewer
Tooltip for array, object and ObjectId values
How to display the array, object values in the data view is often a bit of a hassle. In V5, we add a more friendly tooltip for the array, object, and ObjectId values.
Tooltip for array and object values
One-click Group-By
This handy feature allows grouping of the selected field in query results to calculate counts, totals, minimums, maximums, and averages with a single click.
The following example lists the total number and average weight of unicorns by gender.
One-click Group-By
Table view, show object value as a column group
Now, single-level, more straightforward object values are displayed as column groups within the table view. If an object value has many, complex fields, the object value is formatted as JSON text.
Object value as a column group
Other notable improvements for the data view
Enhanced script editor
Better code snippets
We offer tons of built-in snippets to help you writing MongoDB shell script effectively. In V5, We revised a large number of code snippets, better grouping, easy to find, easy to input. Typically, you only need to enter a few initial letters of the action, and you’ll get the sample template code you need.
Code snippets
Mark changed lines
The feature lets you see which lines have been changed since the last save operation, the new/modified lines are marked at the left margin.
Mark changed lines
Switch MongoDB connection and current database within the editor
Now, you can open and switch MongoDB connection within the editor, and you also can change the current database within the editor. It even allows you to view and run scripts without a database Connection. In this case, NoSQLBooster looks much like an ES2017 playground which integrated Lodash, Shelljs, Moment.js and Node.js runtime.
Switch connection and database
List opened tabs
“List Opened Tabs” feature let you list and switch to another tab. It’s handy if you opened a lot of tabs in a window.
List opened tabs
Enhanced connection tree/object explorer
Open MongoDB shell here
This feature allows you to open a new MongoDB Shell terminal via the context menu of the connection node. This is especially handy for SSH tunnel connections.
Open MongoDB shell here
Better view and manage your indexes
The redesigned index management interface allows you to view index types, sizes, index usage, and other special properties more efficiently. Add and remove indexes at the click of a button.
Indexes viewer
Connection node tooltip, press “m” to show more metrics
Now, the tooltip for connection node can show more server status information, network in and out, memory, connections…, press “m” to show more server metrics.
Connection node tooltip
Query code generator improvements
Create a query code sample project
Query Code Generator now not only generates query code for the target language (Node.js, Java, C#, Python) but also create sample projects for quick execution and testing of generated query code.
Query code create sample project
Other notable improvements
More “Run” options
Refactoring the “Run” button to a drop-down menu, adding more “Run” options.
"Run" drop menu
Filterable connection manager
You are now able to filter connections by name, server, and security columns.
Connection filter
New option, modify default limit size
The “%%limit%%” variable can be used for code templates e.g. db.collection.find().limit(%%limit%%).
Use Menu -> Options -> Modify Default Code Template -> Modify Default Limit Size… to adjust the value, default size of this variable is 1000.
BTW, you can use Menu -> Options -> Modify Default Code Template -> Code Template for Opening Collection… to customize the “find” code template which are used for opening collection.
modify "find" template
Schema analyzer, support JSON schema
Starting in version 3.6, MongoDB supports JSON Schema validation. Now, you can use NoSQLBooster schema analyzer to view specifies validation rules.
View JSON validator
Minor improvements and bugfix
Patch Releases
Version 5.0.1
In this patch release, we fixed some user feedback errors and added the ability to preview images in binary fields.
Preview images in binary fields
Preview Image Field
Bugfix
© Copyright 2000-2023 COGITO SOFTWARE CO.,LTD. All rights reserved