Access Live Lakebase Data in TIBCO Data Virtualization
TIBCO Data Virtualization (TDV) is an enterprise data virtualization solution that orchestrates access to multiple and varied data sources. When paired with the Lakebase Tibco DV Adapter, you get federated access to live Lakebase data directly within TIBCO Data Virtualization. This article walks through deploying an adapter and creating a new data source based on Lakebase.
With built-in optimized data processing, the CData TIBCO DV Adapter offers unmatched performance for interacting with live Lakebase data. When you issue complex SQL queries to Lakebase, the adapter pushes supported SQL operations, like filters and aggregations, directly to Lakebase. Its built-in dynamic metadata querying allows you to work with and analyze Lakebase data using native data types.
Deploy the Lakebase TIBCO DV Adapter
In a console, navigate to the bin folder in the TDV Server installation directory. If there is a current version of the adapter installed, you will need to undeploy it.
.\server_util.bat -server localhost -user admin -password ******** -undeploy -version 1 -name Lakebase
Extract the CData TIBCO DV Adapter to a local folder and deploy the JAR file (tdv.lakebase.jar) to the server from the extract location.
.\server_util.bat -server localhost -user admin -password ******** -deploy -package /PATH/TO/tdv.lakebase.jar
You may need to restart the server to ensure the new JAR file is loaded properly, which can be accomplished by running the composite.bat script located at: C:\Program Files\TIBCO\TDV Server <version>\bin. Note that reauthenticating to the TDV Studio is required after restarting the server.
Sample Restart Call
.\composite.bat monitor restart
Authenticate with Lakebase Using OAuth
Since Lakebase authenticates using the OAuth protocol and TDV Studio does not support browser-based authentication internally, you will need to create and run a simple Java application to retrieve the OAuth tokens. Once retrieved, the tokens are used to connect to Lakebase directly from the adapter.
Create the Java Application
- Create a new Java file with preferred name for example GenOAuthSettings.java. This Java file leverages the LakebaseOAuth class contained within the TDV Adapter JAR to initiate a test connection and perform the required OAuth authentication flow
- Copy and insert the following code into the .java file:
- Place the .java file in the same directory as the tdv.lakebase.jar file. This is required to prevent classpath resolution errors during compilation and execution
public class GenOAuthSettings {
public static void main(String[] args) {
try {
if (args.length != 2) {
throw new Exception("Input must have two arguments: 'data source', 'connection string'");
}
String source = args[0].replace(" ", "").toLowerCase();
String connectionString = args[1];
String prefix;
if (source.equals("lakebase")) {
prefix = "jdbc:lakebase:";
com.cdata.cis.lakebase.LakebaseOAuth oauth = new com.cdata.cis.lakebase.LakebaseOAuth();
if (!connectionString.startsWith(prefix)) connectionString = prefix + connectionString;
oauth.generateOAuthSettingsFile(connectionString);
}
// More sources can be added below using the same format. You must add the import statement and ensure the jar file resides in the classpath
// else if (source.equals("googlebigquery") || source.equals("bigquery")) {
// prefix = "jdbc:googlebigquery:";
//
// com.cdata.cis.googlebigquery.GoogleBigQueryOAuth oauth = new com.cdata.cis.googlebigquery.GoogleBigQueryOAuth();
//
// if (!connectionString.startsWith(prefix)) connectionString = prefix + connectionString;
// oauth.generateOAuthSettingsFile(connectionString);
// }
else {
throw new Exception("Data Source not supported. Available Data Sources: Lakebase");
}
System.out.println("Test Connection Successful!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
Build and run the Java Application
- Open Console and navigate to the directory containing the .java file and adapter jar
- Compile the Java file using the following command:
- Execute the application using one of the following commands:
javac -cp .;tdv.lakebase.jar GenOAuthSettings.java
java -cp .;tdv.lakebase.jar GenOAuthSettings "Lakebase" "connection string"
This command initiates the OAuth authentication flow and generates the OAuth settings file at the location specified in the OAuthSettingsLocation parameter. Once you deploy the adapter and authenticate, you can create a new data source for Lakebase in TDV Studio.
Create a Lakebase Data Source in TDV Studio
With the Lakebase Tibco DV Adapter, you can easily create a data source for Lakebase and introspect the data source to add resources to TDV.
Create the Data Source
- Right-click on the folder you wish to add the data source to and select New -> New Data Source
- Scroll until you find the adapter (e.g. Lakebase) and click Next
- Name the data source (e.g. CData Lakebase Source)
- Fill in the required connection properties To connect to Databricks Lakebase, start by setting the following properties:
- DatabricksInstance: The Databricks instance or server hostname, provided in the format instance-abcdef12-3456-7890-abcd-abcdef123456.database.cloud.databricks.com.
- Server: The host name or IP address of the server hosting the Lakebase database.
- Port (optional): The port of the server hosting the Lakebase database, set to 5432 by default.
- Database (optional): The database to connect to after authenticating to the Lakebase Server, set to the authenticating user's default database by default.
- Create and configure a new service principal
- Assign permissions to the service principal
- Create an OAuth secret for the service principal
- AuthScheme: OAuthPKCE.
- User: The authenticating user's user ID.
- Click Create & Close.
OAuth Client Authentication
To authenicate using OAuth client credentials, you need to configure an OAuth client in your service principal. In short, you need to do the following:
For more information, refer to the Setting Up OAuthClient Authentication section in the Help documentation.
OAuth PKCE Authentication
To authenticate using the OAuth code type with PKCE (Proof Key for Code Exchange), set the following properties:
For more information, refer to the Help documentation.
NOTE: Ensure that the OAuthSettingsLocation property in the DV Adapter is set to the same file path used during the OAuth authentication process. Additionally, set the InitiateOAuth property to REFRESH so that the adapter can automatically handle OAuth access-token refreshes in the background without requiring any user action.
Introspect the Data Source
Once the data source is created, you can introspect the data source by right-clicking and selecting Open. In the dashboard, click Add/Remove Resources and select the Tables, Views, and Stored Procedures to include as part of the data source. Click Next and Finish to add the selected Lakebase tables, views, and stored procedures as resources.
After creating and introspecting the data source, you are ready to work with Lakebase data in TIBCO Data Virtualization just like you would any other relational data source. You can create views, query using SQL, publish the data source, and more.