Like what you see? Have a play with our trial version.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This section guide will teach you how to create a custom third-party connector from scratch. You can code your own third-party connector connectors to connect and stream data from a data source.

 

Overview

Third-Party Connectors party connectors allow for Yellowfin to connect to any data source and return tabular data that can be consumed and displayed as tables and charts. 

Data can be retrieved from any source via file access, API access, or data that is embedded in the connector itself. Most implementations are expected to make use of web service APIs, third-party web applications, and SAAS providers. 

 

 

Implementation Overview

Implementation is done by extending Yellowfin’s third-party java Java interface. 

Each implementation consists of a single AbstractDataSource class. This contains details about how the connection is made, and prompts the user for required connection information. The DataSource data source can also contain a reference to a background job that can perform tasks on a scheduled basis. This schedule is defined in an implementation of a ScheduleDefinition class. 

Each DataSource data source can have many DataSets data sets available within it. Each DataSet data set is an implementation of an AbstractDataSet class. These can be thought of as views. A report can only be written against a single DataSet data set. A DataSet data set will have several columns and filters defined and will return a result set to Yellowfin. 

A metadata class is also required. This will allow for a connection wizard to be defined, and prompt the end user for the required parameters to make a connection to the third-party source. This is an implementation of a JDBCMetaData class. 

 

...

Guide Contents

Here is an outline the general process for creating a custom connector:

...

 

Also see: Connector Appendix

 

 

Section
Column
width75

 

Column

Next topic: Check prerequisites