Ready to get started?

Tutorial: Use the CData BizTalk Adapter for Amazon Athena to Execute Updategrams



Create a simple application in which you use the adapter for Amazon Athena to execute an updategram and then write the response from Amazon Athena to a file.

The CData BizTalk Adapter for Amazon Athena enables you to execute SQL commands, updategrams, and stored procedures on Amazon Athena data in BizTalk. This article provides a walk-through of an application that uses an updategram to insert Amazon Athena data.

  1. A one-way file receive location picks up the XML document that contains the updategram.
  2. The document is routed to a solicit-response send port configured for the adapter.
  3. The adapter executes the command. The result of an insert contains the Id of the new record and the rows affected.
  4. The response from Amazon Athena is routed to a one-way file send port, which writes the BizTalk message to a file.

Create the Sample Application

The following sections walk through creating the sample application:

  1. Generate the Schema and an Updategram Instance
  2. Configure a Receive Port
  3. Configure a File Receive Location
  4. Configure the Adapter in a Solicit-Response Send Port
  5. Configure a File Send Port
  6. Create Filters to Route BizTalk Messages Through the Application
  7. Enlist and Enable the Locations and Ports
  8. View Application Logs

Generate the Schema and an Updategram Instance

You can use wizards in Visual Studio to generate the schema and updategram instance:

  1. Add the Adapter to Your Project
  2. Generate an Insert Schema
  3. Generate an Updategram Instance

Add the Adapter to Your Project

Use the Add Adapter wizard to add the adapter to your project. You will use the adapter to query Amazon Athena for metadata about the table you want to insert to; for example, "Customers".

  1. Right-click on the project in the Solution Explorer and click Add -> Add Generated Items.
  2. Select Add Adapter Metadata in the resulting dialog box.
  3. In the resulting Add Adapter Wizard, select the CData BizTalk Adapter for Amazon Athena from the list view.
  4. In the Port menu leave the selection blank. Or, if you want to use the connection string for an adapter you have already configured, select the send port or receive location from your BizTalk application.

Generate an Insert Schema

You will use the schema as a template for creating an updategram that will insert Amazon Athena data. The schema is an .xsd file that defines the XML request and response. As an example, we show how to generate an insert updategram. You can follow the same process to generate update and delete updategrams.

  1. In the Connection String page of the Schema Wizard, enter authentication credentials and other connection properties.
  2. In the next step select the Send Port option.
  3. Clear the One-Way option. The One-Way option ignores any response from the adapter for the updategram, such as the AffectedRows value that is returned. The Id of the newly created row is also returned. By disabling the One-Way option you will get an updategram schema that supports retrieving the Id.
  4. In the Command Type menu select Updategram.
  5. Select the Insert option and select the table and columns you want to insert into. This tutorial uses Name and TotalDue.

    Note: When you create the updategram, you are limited to inserting the columns you include in the schema.

  6. On the summary page verify the settings you defined and click Finish to close the wizard.

Generate an Updategram Instance

In this step you will create the XML message that will in later steps be sent to the adapter. To create the updategram right-click the .xsd file in the Solution Explorer and then click Generate Instance. The location where the updategram is saved is listed in the Output tab.

The updategram is structured to define what response is desired from Amazon Athena. For example updategrams and more information, see the help documentation for the adapter.

Configure the Receive Port

To add a receive location to your application, you first need to add a receive port. Receive ports can receive data from multiple receive locations.

  1. Open your application in the BizTalk Server Administration Console.
  2. Right-click Receive Ports and click New -> One-Way Receive Port. The Receive Port Properties dialog is displayed.
  3. Enter a name for the receive port.

Configure the File Receive Location

A static one-way file receive location will create a BizTalk message containing the updategram.

  1. Right-click Receive Locations and click New -> One-Way Receive Location.
  2. Select the receive port of which the new receive location will be a member. The Receive Location Properties dialog is displayed.
  3. Enter a name for the receive location.
  4. Select FILE in the Transport Type menu.
  5. Click Configure. The File Transport Properties dialog is displayed.
  6. In the Receive Folder box, enter the path to a folder; for example, DemoOutbound. The receive location will scan this folder for files that match the criteria in the File mask box.
  7. In the Receive Pipeline menu of the Receive Location Properties dialog, select the default option, PassThruReceive.

Configure the Amazon Athena Adapter in a Solicit-Response Send Port

Configuration consists of the following steps:

  1. Create and Configure the Solicit-Response Send Port
  2. Configure the Adapter
  3. Configure the Connection to Amazon Athena

Create and Configure the Solicit-Response Send Port

Use a solicit-response send port to obtain the result of an updategram command; in this tutorial the Id of the newly inserted record is returned in BizTalk.

  1. Open your BizTalk application in the BizTalk Administration Console.
  2. Right-click Send Ports and select New -> Static Solicit-Response Send Port. The Send Port Properties dialog is displayed.
  3. Enter a name for the send port.
  4. In the Transport Type menu select CData.AmazonAthena.

Configure the CData Amazon Athena Adapter

Define the command the adapter will execute in the Adapter Transport Properties dialog.

  1. In the send port properties click the Configure button. The Adapter Transport Properties dialog is displayed.
  2. In the CommandType property select Updategram.
Refer to the Adapter Configuration section in the help documentation for descriptions of the various adapter properties and their functions.

Configure the Connection to Amazon Athena

Configure credentials and other properties required to connect to Amazon Athena:

  1. In the Adapter Transport properties dialog click the button in the Connection String property. The Connection String Options dialog is displayed.
  2. Enter connection properties.

    Below is a typical connection string:

    AccessKey='a123';SecretKey='s123';Region='IRELAND';Database='sampledb';S3StagingDirectory='s3://bucket/staging/';

    Authenticating to Amazon Athena

    To authorize Amazon Athena requests, provide the credentials for an administrator account or for an IAM user with custom permissions: Set AccessKey to the access key Id. Set SecretKey to the secret access key.

    Note: Though you can connect as the AWS account administrator, it is recommended to use IAM user credentials to access AWS services.

    Obtaining the Access Key

    To obtain the credentials for an IAM user, follow the steps below:

    1. Sign into the IAM console.
    2. In the navigation pane, select Users.
    3. To create or manage the access keys for a user, select the user and then select the Security Credentials tab.

    To obtain the credentials for your AWS root account, follow the steps below:

    1. Sign into the AWS Management console with the credentials for your root account.
    2. Select your account name or number and select My Security Credentials in the menu that is displayed.
    3. Click Continue to Security Credentials and expand the Access Keys section to manage or create root account access keys.

    Authenticating from an EC2 Instance

    If you are using the CData Data Provider for Amazon Athena 2018 from an EC2 Instance and have an IAM Role assigned to the instance, you can use the IAM Role to authenticate. To do so, set UseEC2Roles to true and leave AccessKey and SecretKey empty. The CData Data Provider for Amazon Athena 2018 will automatically obtain your IAM Role credentials and authenticate with them.

    Authenticating as an AWS Role

    In many situations it may be preferable to use an IAM role for authentication instead of the direct security credentials of an AWS root user. An AWS role may be used instead by specifying the RoleARN. This will cause the CData Data Provider for Amazon Athena 2018 to attempt to retrieve credentials for the specified role. If you are connecting to AWS (instead of already being connected such as on an EC2 instance), you must additionally specify the AccessKey and SecretKey of an IAM user to assume the role for. Roles may not be used when specifying the AccessKey and SecretKey of an AWS root user.

    Authenticating with MFA

    For users and roles that require Multi-factor Authentication, specify the MFASerialNumber and MFAToken connection properties. This will cause the CData Data Provider for Amazon Athena 2018 to submit the MFA credentials in a request to retrieve temporary authentication credentials. Note that the duration of the temporary credentials may be controlled via the TemporaryTokenDuration (default 3600 seconds).

    Connecting to Amazon Athena

    In addition to the AccessKey and SecretKey properties, specify Database, S3StagingDirectory and Region. Set Region to the region where your Amazon Athena data is hosted. Set S3StagingDirectory to a folder in S3 where you would like to store the results of queries.

    If Database is not set in the connection, the data provider connects to the default database set in Amazon Athena.

  3. Click Test Connection to verify the values.
Refer to the Connection String Options chapter in the help documentation for descriptions of the various connection properties and their functions.

Configure a File Send Port

The file send port will write to a file the Id that is returned from the insert. Follow the steps below to configure a one-way send port to write incoming messages to a file.

  1. Right-click Send Ports and then click Static One-Way Send Port.
  2. In the Type menu, select FILE.
  3. Click Configure.
  4. In the Destination Folder box enter the path to the folder where the message will be written. For example, DemoInbound.

Create Filters to Route BizTalk Messages Through the Application

Follow the steps below to create filter rules that will define the following associations in your application:

  • Associate the solicit-response send port with the BizTalk message that contains the updategram.
  • Associate the file send port with the BizTalk message created by the result of executing the updategram.

  1. In the solicit-response send port properties, click Filters and set the following values:

    • Property: Select BTS.InboundTransportLocation from the menu.
    • Value: Enter the URI of the one-way receive location, "C:\DemoOutbound\*.xml" in this example.
  2. In the one-way send port properties, click Filters and set the following values:

    • Property: Select BTS.SPName from the menu.
    • Value: Enter the name (not URI) of the solicit-response send port.

Enlist and Enable the Locations and Ports

To ensure that the updategram is picked up by the receive location, follow the steps below when starting your BizTalk application:

  1. Right-click the solicit-response send port and click Start. This will also enlist the send port.
  2. Right-click the one-way send port and click Start. This will also enlist the send port.
  3. Right-click the receive location and click Enable.

You can now copy the updategram into the folder that you configured for the receive location.

Open the folder that you configured for the one-way send port: This folder contains the new Id in an XML file. The message will resemble the following example:

<table xmlns="http://www.cdata.com/AmazonAthenaProvider" AffectedRows="1"> <row> <Id>0014000001XERBUAA5</Id> </row> </table>

View the Application Logs

In the Application Logs you can view error messages and quickly check that your application has initialized successfully. To open the logs expand the Event Viewer (Local) node in the navigation tree in the Administration Console. Expand Windows Logs and select Application.

A list of errors that have occurred will be available here. This will include error messages for all applications on the system, so it is important to check the source of the error message. For the receive location, the source should be "CData BizTalk AmazonAthena Receive Adapter". Details of the error message should provide insight into why the error is occurring.

Contact support@cdata.com for guidance on resolving the error.