Skip to main content

Index and Search structured XML documents using Apache Solr

Apache Solr is a highly scalable search engine with lots of goodies inbuilt. In this guide we will learn how to get our structured data in XML can be indexed and searched effectively.

We will learn the following concepts:

  1. Starting up Apache Solr
  2. Importing structured XML document for indexing in Apache Solr

Tools & Library used in this project:

  1. Apache Solr 5.3.0
  2. Java 8
  3. Mac OSX

Downloading & Starting Apache Solr

Download Apache Solr Binary Distribution

We can download Apache Solr latest version from their official website. When we click on the major or mirror download distribution link, we got a page like it:

apache solr download page package to chooseApache Solr download page package to choose

Tip: Apache Solr downloadable package size is around 130 MB. Make sure you have this much bandwidth left on your internet connection.

Unpack Apache Solr Binary Download Zip

When we unpack Apache Solr Binary Download Zip we see the following files and folders inside the main folder:

apache solr 5.3 binary folder structure
Apache Solr 5.3 binary folder structure 

Starting, Stopping, and Restarting Apache Solr

Starting Apache Solr Server

$ cd /Volumes/Drive2/App/solr-5.3.0/

Start Solr Server

$ bin/solr start

Apache Solr has been started at https://localhost:8983/solr.

Stopping Apache Solr

$ cd /Volumes/Drive2/App/solr-5.3.0/

Stop Solr

$ bin/solr stop -p 8983

Restarting Apache Solr

$ cd /Volumes/Drive2/App/solr-5.3.0/

Stop Solr

$ bin/solr restart -p

Note: Replace the Solr folder path with your installation path

Let's create a core (or Collection) "xmlhub"

$ bin/solr create -c xmlhub

Setup new core instance directory: /Volumes/Drive2/App/solr-5.3.0/server/solr/xmlhub

Creating new core 'xmlhub' using the command: https://localhost:8983/solr/admin/cores?action=CREATE&name=xmlhub&instanceDir=xmlhub

{
 "responseHeader":{
 "status":0,
 "QTime":874},
 "core":"xmlhub"}
}
## Indexing XML files

### Sample XML File

We will be indexing xml files kept in a folder (In our application its at _<solr\_installtion\_root\_dir>/example-data_). An example of a XML file content:

**File: example1.xml**
```xml
<?xml version="1.0" encoding="UTF-8"?>
<ele xmlns:dc="https://purl.org/dc/elements/1.1/">
<attr1>
  Atrr1 Value 1
</attr1>
<attr2>
  Attr2 Value 1
</attr2>
<meta property="meta1">
  Meta 1 Val 1
</meta>
<meta property="meta2">
  Meta 2 Val 1
</meta>
<meta name="name1">
  Name 1 value 1
</meta>
<meta name="name2">
  Name 2 value 1
</meta>
</ele>

Uploading XML structured data for Indexing using Data Import Handler

Step 1: Configure solrconfig.xml

We will find solrconfig.xml file in location <solr_installtion_root_dir>/solr/<collection/node_name>/conf.

 

Location of solrconfig.xml in solr 5.3 installationLocation of solrconfig.xml in Solr 5.3 installation

File: solrconfig.xml

....
<lib dir="${solr.install.dir:../../../..}/dist/" regex="solr-dataimporthandler-.\*.jar" />
....
<requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
    <lst name="defaults">
      <str name="config">xmlhubconfig.xml</str>
    </lst>
</requestHandler>
...

We can place this code in solrconfig.xml

Step 2: Create Data Import configuration

We may provide data import configuration in solrconfig.xml file, but we choose to do that in external file xmlhubconfig.xml.

File: xmlhubconfig.xml

<dataConfig>
  <dataSource type="FileDataSource"/>
  <document>
    <!-- this outer processor generates a list of files satisfying the conditions specified in the attributes -->
    <entity name="f" processor="FileListEntityProcessor" fileName=".\*.xml$" recursive="true" rootEntity="false" dataSource="null" baseDir="/Volumes/Drive2/App/solr-5.3.0/example-data">

      <!-- this processor extracts content using Xpath from each file found -->

      <entity name="nested" processor="XPathEntityProcessor" forEach="/ele | /metadata" url="${f.fileAbsolutePath}" >
              <field column="attr1\_s" xpath="/ele/attr1"/>
              <field column="attr2\_s" xpath="/ele/attr2"/>
              <field column="meta1\_s" xpath="/ele/meta\[@property='meta1'\]"/>
              <field column="meta2\_s" xpath="/ele/meta\[@property='meta2'\]"/>
              <field column="name1\_s" xpath="/ele/meta\[@name='name1'\]"/>
              <field column="name2\_s" xpath="/ele/meta\[@name='name2'\]"/>
      </entity>
    </entity>
  </document>
</dataConfig>

This configuration is specific to the XML file structure. Pay attention to how we had used XPATH. You should also replace baseDir with your path.

Step 3: Configure to generate unique id automatically

In solrconfig.xml we will be using updateRequestProcessorChain to setup UUIDUpdateProcessorFactory to generate a unique UUID for the id column.

File: solrconfig.xml

...
<updateRequestProcessorChain>
      <processor class="solr.UUIDUpdateProcessorFactory">
        <str name="fieldName">id</str>
      </processor>
      <processor class="solr.LogUpdateProcessorFactory" />
      <processor class="solr.RunUpdateProcessorFactory" />
</updateRequestProcessorChain>
...

Index File

We should restart Apache Solr.

Go to https://localhost:8983/solr/#/xmlhub/dataimport//dataimport:

Execute dataimport handler to index xml
Execute dataimport handler to index xml

It will index the XML files and create documents. You can browse the document at https://localhost:8983/solr/xmlhub/browse.

Browse indexed documents in built-in solr collection browserBrowse indexed documents in built-in solr collection browser

Using the built-in collection browser we can search indexed documents. Learn more about Solr Query Syntax at the official documentation. Apache Solr also provides API to access search interfaces with all the available features.

References

  1. Learn about the Apache Solr Query Syntax
  2. Apache Solr Data Import Helper Documentation
  3. Apache Solr Site

Comments

Popular posts from this blog

Extend and reuse an existing AirByte destination connector

AirByte is an open-source ELT (Extract, Load, and Transformation) application. It heavily uses containerization for the deployment of its various components. On the local machine, we need docker to run it. AirByte has an impressive list of source and destination connectors available. One of my use case data destinations is the  ClickHouse data warehouse and its destination connector is not yet (2021-12-08) available. As per the documentation, It seems that creating a destination connector is a non-trivial job. It's a great idea to build an open-source ClickHouse destination connector. However, I tried avoiding the temptation to create one because of the required effort. AirByte has a  MySql destination connector available. ClickHouse provides a MySQL connector for access from any MySQL client. We need to configure Clickhouse to give support for the MySQL connector. Accessing ClickHouse from AirByte using its MySQL destination connector looks promising. However, when ...

Understanding Type Checking

A few examples of types in the context of programming language can be integer, float, character, string, array, etc.  When a program executes then data flow between instructions and values of specific types are assigned to a variable after some operation. It's important for the system to verify if the correct types are used as operands in operations. For e.g. In a sum operation, the expectation for operands to be of numeric type. The program's execution should fail in the case there is inconsistency. We can classify programming languages into two categories based as per their ability to cater to type safety: Dynamically Typed Language Statically Typed Language

Setting Clickhouse column data warehouse at Google Cloud Compute Engine VM

I didn't have a Google Cloud account associated with my email, so I signed up for one. It needs a valid Credit Card and mobile number to check if you are human. On successful sign up I get 300$ to spend within 3 months. Creating a free forever Google Cloud Compute Engine VM As per Google Cloud documentation you can have 1 non-preemptible e2-micro VM instance (1GB 2vCPU, 30GB Disk, etc.) per month free forever in some regions with some restrictions. I wanted the following stuff in my VM before I can install Clickhouse on to that: Ubuntu 20.x LTS SSH access from my machine Enabling SSH-based access to Google Compute Engine VM Step 1 Created an ssh private and public key on my mac using the following command ssh-keygen -t rsa -f ~/.ssh/gcloud-ssh-key -C mrityunjay -b 2048 Step 2 Copied the public key from the console using the following command: cat ~/.ssh/gcloud-ssh-key.pub output ssh-rsa <Gibrish :)> mrityunjay Step 3 I went to Google Cloud Console > Co...