Solr Join Example
In this example of Solr Join, we will discuss about how to implement join between documents in Apache Solr. We will show you how to implement the Join Query Parser plugin specified by {!join}. The join is used in Solr documents where de-normalizing the data is time consuming or costly.
To demonstrate the Solr Join usage, we will create a core in Solr using basic configuration and index sample files shipped along with Solr installation.
Our preferred environment for this example is solr-5.0.0. Before you begin the Solr installation make sure you have JDK installed and Java_Home is set appropriately.
1. Install Apache Solr
To begin with, let’s download the latest version of Apache Solr from the following location:
http://lucene.apache.org/solr/downloads.html
Apache Solr has gone through various changes from 4.x.x to 5.0.0, so if you have a different version of Solr you need to download the 5.x.x. version to follow this example.
Once the Solr zip file is downloaded, unzip it into a folder. The extracted folder will look like the below:
The bin
folder contains the scripts to start and stop the server. The example
folder contains few example files. We will be using one of them to demonstrate how Solr indexes the data. The server
folder contains the logs
folder where all the Solr logs are written. It will be helpful to check the logs for any error during indexing. The solr
folder under server holds different collection or core. The configuration and data for each of the core/ collection are stored in the respective core/ collection folder.
Apache Solr comes with an inbuilt Jetty server. But before we start the solr instance we must validate the JAVA_HOME is set on the machine.
We can start the server using the command line script. Lets go to the bin directory from the command prompt and issue the following command:
solr start
This will start the Solr server under the default port 8983.
We can now open the following URL in the browser and validate that our Solr instance is running. The specifics of solr admin tool is beyond the scope of the example.
http://localhost:8983/solr/
2. Configuring Apache Solr
In this section, we will show you how to configure the core/collection for a solr instance and how to define the fields. Apache Solr ships with an option called Schemaless mode. This option allow users to construct effective schema without manually editing the schema file. But for this example we will use the Schema configuration for understanding the internals of the Solr.
2.1 Creating a Core
When the Solr server is started in Standalone mode, the configuration is called core and when it is started in SolrCloud mode, the configuration is called Collection. In this example we will discuss about the standalone server and core. We will park the SolrCloud discussion for later time.
First, we need to create a Core for indexing the data. The Solr create command has the following options:
- -c <name> – Name of the core or collection to create (required).
- -d <confdir> – The configuration directory, useful in the SolrCloud mode.
- -n <configName> – The configuration name. This defaults to the same name as the core or collection.
- -p <port> – Port of a local Solr instance to send the create command to; by default the script tries to detect the port by looking for running Solr instances.
- -s <shards> – Number of shards to split a collection into, default is 1.
- -rf <replicas> – Number of copies of each document in the collection. The default is 1.
In this example we will use the -c parameter for core name and -d parameter for the configuration directory. For all other parameters we make use of default settings.
Now navigate the solr-5.0.0\bin
folder in the command window and issue the following command:
solr create -c jcg -d basic_configs
We can see the following output in the command window.
1 2 3 4 5 6 7 8 | Creating new core 'jcg' using command : http: //localhost :8983 /solr/admin/cores ?action=CREATE&name=jcg&instanceDir=jcg { "responseHeader" :{ "status" :0, "QTime" :663}, "core" : "jcg" } |
Now we navigate to the following URL and we can see jcg core being populated in the core selector. You can also see the statistics of the core.
http://localhost:8983/solr
2.2 Modify the schema.xml file
We need to modify the schema.xml
file under the folder server\solr\jcg\conf
to include the fields. We will use the example files “vidcard.xml” and “manufacturers.xml” shipped along with Solr installation for indexing. These file are located under the folder solr-5.0.0\example\exampledocs.
Now we navigate to the folder server\solr
directory. You will see a folder called jcg
created. The sub-folders namely conf
and data
have the core’s configuration and indexed data respectively.
Now edit the schema.xml
file in the \server\solr\jcg\conf
folder and add the following contents after the uniqueKey element.
schema.xml
01 02 03 04 05 06 07 08 09 10 11 12 | < uniqueKey >id</ uniqueKey > < field name = "name" type = "text_general" indexed = "true" stored = "true" /> < field name = "manu" type = "text_general" indexed = "true" stored = "true" /> < field name = "manu_id_s" type = "text_general" indexed = "true" stored = "true" /> < field name = "cat" type = "text_general" indexed = "true" stored = "true" multiValued = "true" /> < field name = "features" type = "text_general" indexed = "true" stored = "true" multiValued = "true" /> < field name = "weight" type = "tdouble" indexed = "true" stored = "true" /> < field name = "price" type = "tdouble" indexed = "true" stored = "true" /> < field name = "popularity" type = "tdouble" indexed = "true" stored = "true" /> < field name = "store" type = "text_general" indexed = "true" stored = "true" /> < field name = "inStock" type = "boolean" indexed = "true" stored = "true" /> < field name = "manufacturedate_dt" type = "text_general" indexed = "true" stored = "true" /> |
We have set the attribute indexed
to true. This specifies the field is used for indexing and the record can be retrieved using the index. Setting the value to false will make the field only stored but can’t be queried with.
Also note we have another attribute called stored
and set it to true. This specifies the field is stored and can be returned in the output. Setting this field to false will make the field only indexed and can’t be retrieved in output.
Since we have modified the configuration we have to stop and start the server. To do so, we need to issue the following command from bin directory through command line:
solr stop -all
The server will be stopped now. Now to start the server issue the following command from bin directory through command line:
solr start
3. Indexing the Data
Apache Solr comes with a Standalone Java program called the SimplePostTool. This program is packaged into JAR and available with the installation under the folder example\exampledocs
.
Now we navigate to the example\exampledocs
folder in the command prompt and type the following command. You will see a bunch of options to use the tool.
java -jar post.jar -h
The usage format in general is as follows:
Usage: java [SystemProperties] -jar post.jar [-h|-] [<file|folder|url|arg>
[<file|folder|url|arg>...]]
As we said earlier, we will index the data present in “vidcard.xml” and “manufacturers.xml” files shipped with Solr installation. We will navigate to the solr-5.0.0\example\exampledocs
in the command prompt and issue the following command.
java -Dtype=application/xml -Durl=http://localhost:8983/solr/jcg/update -jar post.jar vidcard.xml
The SystemProperties used here are:
- -Dtype – the type of the data file.
- -Durl – URL for the jcg core.
The file “vidcard.xml” will now be indexed and the command prompt will display the following output.
1 2 3 4 5 6 7 | SimplePostTool version 5.0.0 Posting files to [base] url http: //localhost :8983 /solr/jcg/update using content- type application /xml ... POSTing file vidcard.xml to [base] 1 files indexed. COMMITting Solr index changes to http: //localhost :8983 /solr/jcg/update ... Time spent: 0:00:00.523 |
Now we will create the index for documents present in “manufacturers.xml” file using the following command:
java -Dtype=application/xml -Durl=http://localhost:8983/solr/jcg/update -jar post.jar manufacturers.xml
The file “manufacturers.xml” will now be indexed and the command prompt will display the following output:
1 2 3 4 5 6 7 | SimplePostTool version 5.0.0 Posting files to [base] url http: //localhost :8983 /solr/jcg/update using content- type application /xml ... POSTing file manufacturers.xml to [base] 1 files indexed. COMMITting Solr index changes to http: //localhost :8983 /solr/jcg/update ... Time spent: 0:00:00.143 |
4. Query using join
Now, we will make a join Query to find out the details of graphics card
manufacturers. To do so, we need to use the join QueryParser(Plugin) which is specified by the {!join}
syntax. The Joins are processed using Solr’s LocalParam syntax.
You can observe that Joins in Solr are not really equivalent to SQL Joins, because no information about the table being joined “from” is carried forward into the final result. The joins in Solr are more closely associated with the “inner query” of the SQL.
The following join Query will find all the documents with category “graphics card” and then join them against (manufacturer) docs and return the list of manufacturers that make those products.
http://localhost:8983/solr/jcg/select?q={!join+from=manu_id_s+to=id}cat:"graphics card"
5. Download the configuration
This was an example of Solr joins.
You can download configuration file here: schema.xml