![]() |
VOOZH | about |
The Apache Solr platform is a popular, blazing-fast, open source enterprise search solution built on Apache Lucene.
Apache Solr is equipped with the Data Import Handler (DIH), which can import data from databases and, XML, CSV, and JSON files. When paired with the CData JDBC Driver for Xero, you can easily import Xero data to Apache Solr. In this article, we show step-by-step how to use CData JDBC Driver in Apache Solr Data Import Handler and import Xero data for use in enterprise search.
Accessing and integrating live data from Xero has never been easier with CData. Customers rely on CData connectivity to:
Customers regularly integrate their Xero data with preferred tools, like Tableau, Qlik Sense, or Excel, and integrate Xero data into their database or data warehouse.
> solr create -c CDataCoreFor this article, Solr is running as a standalone instance in the local environment and you can access the core at this URL: http://localhost:8983/solr/#/CDataCore/core-overview
XeroUniqueKeyπ Define schema in Solr for Xero data.
Now we are ready to use Xero data in Solr.
In this section, we walk through configuring the Data Import Handler.
<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">solr-data-config.xml</str>
</lst>
</requestHandler>
<dataConfig>
<dataSource driver="cdata.jdbc.xero.XeroDriver" url="jdbc:xero:InitiateOAuth=GETANDREFRESH;">
</dataSource>
<document>
<entity name="Items"
query="SELECT Id,XeroColumn1,XeroColumn2,XeroColumn3,XeroColumn4,XeroColumn5,XeroColumn6,XeroColumn7,LastModifiedDate FROM Items"
deltaQuery="SELECT Id FROM Items where LastModifiedDate >= '${dataimporter.last_index_time}'"
deltaImportQuery="SELECT Id,XeroColumn1,XeroColumn2,XeroColumn3,XeroColumn4,XeroColumn5,XeroColumn6,XeroColumn7,LastModifiedDate FROM Items where Id=${dataimporter.delta.Id}">
<field column="Id" name="Id" ></field>
<field column="XeroColumn1" name="XeroColumn1" ></field>
<field column="XeroColumn2" name="XeroColumn2" ></field>
<field column="XeroColumn3" name="XeroColumn3" ></field>
<field column="XeroColumn4" name="XeroColumn4" ></field>
<field column="XeroColumn5" name="XeroColumn5" ></field>
<field column="XeroColumn6" name="XeroColumn6" ></field>
<field column="XeroColumn7" name="XeroColumn7" ></field>
<field column="LastModifiedDate" name="LastModifiedDate" ></field>
</entity>
</document>
</dataConfig>> solr stop -all > solr start
Using the CData JDBC Driver for Xero you are able to create an automated import of Xero data into Apache Solr. Download a free, 30 day trial of any of the hundreds of CData JDBC Drivers and get started today.
Download a free trial of the Xero Driver to get started:
Download NowLearn more:
π Xero IconComplete read-write access to Xero accounting enables developers to search (Customers, Transactions, Invoices, Sales Receipts, etc.), update items, edit customers, and more, from any Java/J2EE application.