![]() |
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 HubSpot, you can easily import HubSpot 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 HubSpot data for use in enterprise search.
CData provides the easiest way to access and integrate live data from HubSpot. Customers use CData connectivity to:
Users frequently integrate HubSpot with analytics tools such as Tableau, Power BI, and Excel, and leverage our tools to replicate HubSpot data to databases or data warehouses.
To learn about how other customers are using CData's HubSpot solutions, check out our blog: Drivers in Focus: Simplified HubSpot Connectivity.
> 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
HubSpotUniqueKeyπ Define schema in Solr for HubSpot data.
Now we are ready to use HubSpot 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.hubspot.HubSpotDriver" url="jdbc:hubspot:InitiateOAuth=GETANDREFRESH;">
</dataSource>
<document>
<entity name="Prospects"
query="SELECT Id,HubSpotColumn1,HubSpotColumn2,HubSpotColumn3,HubSpotColumn4,HubSpotColumn5,HubSpotColumn6,HubSpotColumn7,LastModifiedDate FROM Prospects"
deltaQuery="SELECT Id FROM Prospects where LastModifiedDate >= '${dataimporter.last_index_time}'"
deltaImportQuery="SELECT Id,HubSpotColumn1,HubSpotColumn2,HubSpotColumn3,HubSpotColumn4,HubSpotColumn5,HubSpotColumn6,HubSpotColumn7,LastModifiedDate FROM Prospects where Id=${dataimporter.delta.Id}">
<field column="Id" name="Id" ></field>
<field column="HubSpotColumn1" name="HubSpotColumn1" ></field>
<field column="HubSpotColumn2" name="HubSpotColumn2" ></field>
<field column="HubSpotColumn3" name="HubSpotColumn3" ></field>
<field column="HubSpotColumn4" name="HubSpotColumn4" ></field>
<field column="HubSpotColumn5" name="HubSpotColumn5" ></field>
<field column="HubSpotColumn6" name="HubSpotColumn6" ></field>
<field column="HubSpotColumn7" name="HubSpotColumn7" ></field>
<field column="LastModifiedDate" name="LastModifiedDate" ></field>
</entity>
</document>
</dataConfig>> solr stop -all > solr start
Using the CData JDBC Driver for HubSpot you are able to create an automated import of HubSpot 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 HubSpot Driver to get started:
Download NowLearn more:
π HubSpot IconRapidly create and deploy powerful Java applications that integrate with HubSpot marketing automation platform including Contacts, Deals, Emails, Companies, and more!