![]() |
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 Office 365, you can easily import Office 365 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 Office 365 data for use in enterprise search.
> 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
Office365UniqueKeyπ Define schema in Solr for Office 365 data.
Now we are ready to use Office 365 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.office365.Office365Driver" url="jdbc:office365:OAuthClientId=MyApplicationId;OAuthClientSecret=MyAppKey;OAuthCallbackURL=http://localhost:33333;InitiateOAuth=GETANDREFRESH;">
</dataSource>
<document>
<entity name="Files"
query="SELECT Id,Office365Column1,Office365Column2,Office365Column3,Office365Column4,Office365Column5,Office365Column6,Office365Column7,LastModifiedDate FROM Files"
deltaQuery="SELECT Id FROM Files where LastModifiedDate >= '${dataimporter.last_index_time}'"
deltaImportQuery="SELECT Id,Office365Column1,Office365Column2,Office365Column3,Office365Column4,Office365Column5,Office365Column6,Office365Column7,LastModifiedDate FROM Files where Id=${dataimporter.delta.Id}">
<field column="Id" name="Id" ></field>
<field column="Office365Column1" name="Office365Column1" ></field>
<field column="Office365Column2" name="Office365Column2" ></field>
<field column="Office365Column3" name="Office365Column3" ></field>
<field column="Office365Column4" name="Office365Column4" ></field>
<field column="Office365Column5" name="Office365Column5" ></field>
<field column="Office365Column6" name="Office365Column6" ></field>
<field column="Office365Column7" name="Office365Column7" ></field>
<field column="LastModifiedDate" name="LastModifiedDate" ></field>
</entity>
</document>
</dataConfig>> solr stop -all > solr start
Using the CData JDBC Driver for Office 365 you are able to create an automated import of Office 365 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 Office 365 Driver to get started:
Download NowLearn more:
π Office 365 IconThe Office 365 Data Provider gives developers the power to easily connect Java/J2EE applications to Office 365 data including Outlook Mail, Contact, Calendar, Files, and more!