How to simplify MongoDB queries with esProc



This content originally appeared on DEV Community and was authored by Judy

The native query syntax of MongoDB is quite cumbersome, and simple tasks require long code. Complex calculations are even more difficult to implement, such as:

SPL assists MongoDB: Only keep the running total for the last item in the partition

SPL assists MongoDB: Replace substring in array of objects with nested objects

SPL assists MongoDB: Find multiple latest by filter criteria

esProc provides a MongoDB API with built-in powerful calculation functions that simplify MongoDB queries.

Next, let’s try how to integrate esProc into an application.

Download and install esProc first, recommend standard version:It Free

Download

Image description

Then download the esProc external library to access external data sources such as MongoDB, also from the above address.

Extract the zip file of the external library to any directory, such as d:\esProcSTD\extlib

Start the esProc IDE, open the menu “Tools ->Options”, find the configuration item “External library directory”, and navigate to the directory you just found.

Image description
After navigating to the external library directory, a list of data sources will be displayed, and check MongoCli in the list.

Image description
Restart the IDE, create a new script, write the following code, and load the data from Example 1:

Image description

Press ctrl-F9 to execute, and you can see the execution result of A2 on the right side of the IDE, presented in the form of a data table, which is very convenient for debugging SPL code.

Image description
After simply loading data from MongoDB, SPL can be used to simplify complex MongoDB queries. The complete code for the first example is:

Image description
Filter the data through parameters first, and then write the aggregation value on the last record of this group. After running, you can see the result:

Image description
Save the above script in a directory, such as D:\data\grp_score.splx, which will be used in subsequent Java code.

Example 1 above is single-layer data, and Example 2 below is multi-layer data:

Image description
On the right side of the IDE, you can expand and observe multiple layers of data layer by layer, where the structure of A2 is as follows:

Image description
Similarly, save the above script in a directory, such as D:\data\meetings.splx.

After debugging in the IDE, configure the Java application environment.

Find the esProc JDBC related jars from the directory “[Installation directory]\esProc\lib”: esproc-bin-xxxx.jar, icu4j_60.3.jar.

Image description
Deploy these two jars to the class path of the Java development environment. The jars of external libraries will be dynamically loaded through configuration files and do not require manual deployment.

Find the esProc configuration file raqsoftConfig.xml from the directory “[Installation directory]\esProc\config” and deploy it to the Java development environment’s class path.

Image description

There are two important configuration items: mainPath, this is the default path for scripts and other files; importLibs->lib, this is the enabled external library. It can be manually modified in the configuration file or through the configuration interface in the IDE.

Next, you can write Java code to execute SPL through esProc JDBC. Let’s try Example 1 first:

Class.forName("com.esproc.jdbc.InternalDriver");
Connection con= DriverManager.getConnection("jdbc:esproc:local://");
PreparedStatement st = con.prepareCall("call grp_score(?,?)");
st.setInt(1,1);
st.setInt(2,4);
ResultSet rs = st.executeQuery();

After running, you can see the result:

Image description
As can be seen, the process of esProc JDBC calling SPL scripts is the same as that of database JDBC calling stored procedures.

Example 2 is similar, calling SPL script with file name in Java:

Class.forName("com.esproc.jdbc.InternalDriver");
Connection con= DriverManager.getConnection("jdbc:esproc:local://");
PreparedStatement st = con.prepareCall("call meetings()");
ResultSet rs = st.executeQuery();

The execution result looks like the following:

Image description
esProc also supports simple SQL, making it convenient for database programmers to use. For example, loading the data from Example 1 and then executing SQL, the script can be written as follows:

Image description
Save the script file as grp_scoreSQL.splx, and the result after execution is as follows:

Image description
There are many examples of simplifying MongoDB queries on the esProc official website. Those interested can take a look.


This content originally appeared on DEV Community and was authored by Judy