Overview

The data export feature provides the capability to bulk export your CleverTap event data to your AWS S3 bucket. You can use this for analysis in BI tools or storage in your data warehouse for analysis in the future.

Setup

The following are the two major steps involved in enabling this feature for your account:

  1. Create an AWS S3 Bucket.
  2. Configure Buckets details on the CleverTap Dashboard using one of the following methods:

Create an AWS S3 Bucket

To create an AWS S3 bucket:

  1. Log in to your AWS account, then search for S3 in the AWS services box.
  2. Select S3 from the search results.
891

Select S3 from AWS Account

On clicking, the Bucket page displays.

  1. Click Create bucket. On clicking, the Create bucket page displays:
2876

Click Create Bucket

  1. Enter a bucket name, region, logging, versioning, and encryption preferences.
1628

Configure S3 Bucket Settings and Click Create Bucket

📘

Recommendation for Setup

For this integration, you need not modify the default settings; however, you must check your internal organization's policies to verify if you need to modify any of these settings.

Based on your CleverTap account settings, we host your data in Europe (EU), the United States (US), Singapore (SG), or India (IN). To identify the region of your account and the corresponding region that you must select when configuring the bucket settings, refer to the following table:

CleverTap Dashboard URLRegionAWS S3 Bucket Region
https://eu1.dashboard.clevertap.com/login.htmlEUEU (Ireland) eu-west-1
https://in1.dashboard.clevertap.com/login.htmlIndiaAsia Pacific (Mumbai) ap-south-1
https://us1.dashboard.clevertap.com/login.htmlUSUS West (Oregon) us-west-2
https://sg1.dashboard.clevertap.com/login.htmlSingaporeAsia Pacific (Singapore) ap-southeast-1
https://sk1.dashboard.clevertap.com/login.htmlSouth KoreaAsia Pacific (Seoul) ap-northeast-2
https://aps3.dashboard.clevertap.com/login.htmlIndonesiaAsia Pacific (Jakarta) ap-southeast-3
https://mec1.dashboard.clevertap.com/login.htmlMiddle East (UAE)Middle East (UAE) me-central-1

📘

Set Up AWS Bucket Region

When setting up the AWS bucket region for your AWS account, ensure that the AWS bucket region matches your CleverTap account region. To identify the region of your CleverTap account, refer to the above table.

Also, you can set up the CleverTap account region only once during registration.

  1. Click Create bucket. On successful bucket creation, the following message displays in the snack bar at the top:
2770

S3 Bucket Created Successfully

The bucket you just created now shows up on your S3 console. We recommend you note down the name of your new bucket, as you will need it for the next step.

Configure S3 Bucket Details on CleverTap Dashboard

Using IAM Policy

The following are the two major steps to perform this task:
i. Copy IAM Policy from the CleverTap dashboard
ii. Add IAM Policy to S3 Bucket from AWS console.

Copy IAM Policy from the CleverTap Dashboard

To copy the IAM policy from the CleverTap dashboard:

  1. Navigate to Settings > Partners and click View Details against Amazon S3. The Integrate analytics partner - Amazon S3 window displays on the right side of the screen.
1500

Click View Details against Amazon S3 from Partner Page

  1. Click + Amazon S3 Bucket to create a new bucket.
  2. Enter the Bucket name.
  3. Select IAM (Identity and Access Management) Policy option under Configure with section.
1446

Configure S3 Bucket with IAM Policy

  1. Click the Copy icon to copy the policy to the clipboard and keep this window open for saving these details later.

Add IAM Policy to S3 Bucket on AWS Console

To add IAM policy to the S3 bucket:

  1. Select the bucket from the Bucket page of the AWS console.
  2. Select the Permissions tab.
  3. Click Edit under the Bucket policy section and enter the policy that you copied in Step 4 of Copy IAM Policy from the CleverTap dashboard:
2052

Edit S3 Bucket Policy

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::062484260092:root"
            },
            "Action": "s3:PutObject*",
            "Resource": "arn:aws:s3:::bucket-name/*"
        },
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::062484260092:root"
            },
            "Action": "s3:PutObject*",
            "Resource": "arn:aws:s3:::bucket-name"
        }
    ]
}

🚧

IMPORTANT

Ensure that you replace all the occurrences of bucket-name in the above JSON payload with your actual bucket name.

  1. Click Save Changes to save the policy.
  2. Go back to the same window opened in Step 4 of Copy IAM Policy From CleverTap Dashboard and click Save Credentials.
    Amazon S3 bucket is now configured on both the AWS S3 console and CleverTap dashboard.

Using Access Key

The following are the two major steps to perform this task:
i. Create an API Key for Your S3 Bucket.
ii. Add Your S3 Bucket Details to CleverTap.

Create an API Key for Your S3 Bucket

This section demonstrates the creation of an AWS API key with write access to the bucket we created in the above step. CleverTap uses this API key to export data to your S3 bucket.

  1. Click on your account name on the top right of the AWS console.
  2. Select Security credentials.
388

Select Security credentials

  1. Select Users from the left navigation and click Add user.
2878

Add Users

On clicking, the Add user page displays.

  1. Enter the User name and select the Programmatic access checkbox.
  2. Click Next:Permissions.
2878

Select AWS Access Type and Click Next: Permissions

On clicking, Set permissions page displays.

  1. Click Create group under Add user to group tab.
2872

Add User to Group

On clicking, Create group page displays.

2482

Assign Policy to Group

  1. Click Create policy. On clicking, Create policy page opens in a new tab.
  2. Select the JSON tab and then paste the JSON code given below in the box.
  3. Replace clevertap-example in the JSON code with the name of the S3 bucket you created in the above step.
    The permissions defined in this policy allow CleverTap to get information about your bucket and upload files to it.

📘

AWS API Access Policies

IP Whitelisting is not supported with S3 exports. For more information about AWS API access policies, refer to this post from the AWS blog.

2874

Bucket Policy in JSON Format

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:ListBucket"
            ],
            "Resource": [
                "arn:aws:s3:::clevertap-example"
            ]
        },
        {
            "Effect": "Allow",
            "Action": [
                "s3:PutObject"
            ],
            "Resource": [
                "arn:aws:s3:::clevertap-example/*"
            ]
        }
    ]
}
  1. Click Next: Tags and then click Next: Review. On clicking, the Create policy page opens.
  2. Enter the policy Name and click Create policy.
2648

Enter Policy Name and Click Create policy

On successful policy creation, the following message displays in the snack bar at the top:

2870

Bucket Policy Created Successfully

  1. Go back to the Create group page (opened in Step 6), search for the policy you just created, and assign it to the new group by selecting the checkbox.
  2. Click Create group. On clicking, the Add user page displays.
2486

Select Policy and Click Create Group

  1. Click Next: Tags and then click Next: Review.
2012

Click Next: Tags

  1. Click Create user.
1980

Click Create user

On successful user creation, the following page displays. You will see your Access key ID and the Secret access key.

2878

Copy or Download User Security Credentials

These credentials allow CleverTap to upload files to your S3 bucket. We recommend you note down these values as you will require them for the next step. Otherwise, you can also click Download .csv to save these details for future use.

Add Your S3 Bucket Details to CleverTap

To add your S3 bucket details to Clevertap, perform the following steps:

  1. Navigate to Settings > Partners and click View Details against Amazon S3. The Integrate analytics partner - Amazon S3 window displays on the right side of the screen.
1500

Click View Details against Amazon S3 from Partners Page

  1. Click + Amazon S3 Bucket to create a new bucket. The Integrate Amazon S3 Bucket window opens on the right side of the screen.
  2. Enter the Bucket nickname and Bucket URL.
  3. Select the User details option under Configure with section.
  4. Enter your Access key ID and the Secret access key obtained earlier and click Save Credentials.
1494

Enter User Security Credentials and Click Save Credentials

Create a New Data Export

To create a new data export, perform the following steps:

  1. Navigate to Settings > Partners > Exports.
  2. Click + Export and select Amazon S3 from the Partners dropdown.
2426

Create Export

On clicking, the Export to Amazon S3 popup displays on the right side of the screen.

Prioritize User Identities for Exports

Prioritize User Identities for Exports

  1. Configure the following settings:

    • Type: Select the events to export from the available options. For more information, refer to Export Details.
      • Export Priority for Event Identity: Select priority for user identities when exporting data. User Identifiers will be exported based on selected priority. For more information, refer to the Prioritize User Identity for Exports section.
    • Frequency: Select from one of the following options:
      • Once only: A single export for the selected export type. You can export data up to the last 60 days. You create an export for a specific day, date range, previous month, current month, and more.
      • Recurring: Set up a recurring export that exports all the new events captured in the last window. You can export data as frequently as every 4 hours and up to once every 24 hours.
  2. Click Create export. On clicking, the popup closes, and the following message displays at the top of the Exports page:

2362

Amazon S3 Export Initiated

CleverTap processes the export, and you can now see the newly created export for AWS S3.

2426

New Amazon S3 Export Displays on Exports Page

The status for each export is displayed as Pending as soon as the export is created. The status changes to Running after the processing starts. And, it changes to Done when the export is complete.

📘

Stop Export

You can also stop the export that you have created. To do so, click the Stop export
icon for the export request you want to stop, and then click Stop to confirm your action.

  1. Confirm if your event data was successfully exported. To do so:
    a. Log in to your AWS account and navigate to the S3 console.
    b. Search your Bucket from the Buckets page and then click the bucket name.
    c. Copy the Request ID from the activity log and search with that ID. You should see your respective file there.
2842

New Amazon S3 Export Displays on Amazon S3 Dashboard

Edit an Export

You might need to modify an export to meet specific business requirements or while waiting for the next run. This section describes editing a Live Data Streaming and Recurring export in the Running and Pending (awaiting next run) state.

📘

Points to Remember

  • In case of running exports, the new changes will apply to the next run.
  • You cannot edit a One-time export, regardless its status (running, pending, completed, or stopped).
  • You cannot change the export from User Profile to Event and vice-versa.
  • You cannot modify exports marked as Completed or Stopped.
  • Export changes for Live DataStreaming take 10-15 minutes to take effect.

To edit an export:

  1. On the CleverTap dashboard, go to Partners > Exports.
Ellipsis Icon to Edit the Export

Ellipsis Icon to Edit the Export

  1. Click the Ellipsis icon. The Edit and the Stop buttons appear.
Click the Edit Export Icon

Click the Edit Export Icon

  1. Click the Edit button. The Overview section appears.
Edit the Export

Edit the Export

  1. Edit the export details and click Update.

Export Details

Export Type

  • All user events: This exports data for all events that have been defined, which include System and Custom events.
  • Select events: This exports specific events you want to export.
  • All user profiles: This exports all your user profile data.

Export Frequency

  • One time: Single export for the export type selected. You can export data up to the last 60 days.
  • Recurring: Set up a recurring export that exports all the new events/user profiles captured in the last window. You can export as frequently as every 4 hours and up to once every 24 hours.

Export Format

  • JSON
  • XML
  • CSV
  • Parquet

For more information, refer to the Export Format section.

Export Format

This section provides information about the file format and the name format of the files exported to the S3 bucket.

File Name Format

  • File Name Format for Event Export
    The example below shows the file name format for event export:
    • Export request ID: Indicates the export request ID generated when you create a request in the CleverTap dashboard.
    • Timestamp of export run: Indicates when the export was run.
    • Event name: Indicates the event type that is included in the file.
    • File index: We chunk the data across multiple files for larger exports. We limit file sizes to 100 MB chunks to make them more consumable. The file index indicates the file number in the file series.
    • Database ID: Indicates the database ID of the CleverTap from where the file was exported.
    • File format: Indicates the format of the file exported to the S3 bucket.
<export request id>-<timestamp of the export run>-<event name>-<yyyymmdd>-<file index>-<database-id>.json
  • File Name Format for User Profile Export:
    The example below shows the file name format for user profile export:
    • Account ID: Indicates the integer value for your CleverTap project ID.
    • Request ID: Indicates the export request ID generated when you create a request in the CleverTap dashboard.
    • Timestamp of export run: Indicates when the export was run.
    • Database ID: Indicates the database ID of the CleverTap from where the file was exported.
    • File format: Indicates the format of the file exported to the S3 bucket.
<account id>-<request id>-<timestamp of the export run>-<database-id>-<file format>.gz

File Data Format

Files are split by event names for event exports and each file will have all event data for the given period for the event.

JSON

The first line of the file contains the event name. After the first line, each line in JSON describes the timestamp, object id, and event properties.

{
	"profile": {
		"identity": "dqsndckfk234"
	},
	"ts": 20171109000015,
	"eventProps": {
		"ct_connected_to_wifi": "false",
		"ct_bluetooth_version": "ble",
		"ct_bluetooth_enabled": "false",
		"ct_sdk_version": 30107,
		"ct_latitude": -6.1975594,
		"ct_longitude": 106.52913,
		"ct_os_version": "5.1.1",
		"ct_app_version": "2.30.1",
		"ct_network_carrier": "3",
		"ct_network_type": "4G"
	}
}

CSV

CSV files are comma-delimited and have each event in separate rows.

2032

Sample CSV File

XML

XML has the timeStamp, eventName, followed by eventProperties.

<Event>
    <ts>20200220130735</ts>
    <eventName>Export Custom Event</eventName>
    <profile>
        <all_identities>[email protected]</all_identities>
        <platform>Web</platform>
        <email>[email protected]</email>
    </profile>
    <deviceInfo>
        <browser>Others</browser>
    </deviceInfo>
    <eventProps>
        <entry>
            <key>CT Source</key>
            <value>API</value>
        </entry>
        <entry>
            <key>Category</key>
            <value>Mens Watch</value>
        </entry>
        <entry>
            <key>Product name</key>
            <value>Casio Chronograph Watch</value>
        </entry>
        <entry>
            <key>Price</key>
            <value>59.99</value>
        </entry>
        <entry>
            <key>Currency</key>
            <value>USD</value>
        </entry>
    </eventProps>
</Event>

Parquet

Parquet has a timestamp, eventName, and eventProperties for each event.

📘

Parquet File Format

Parquet is an open-source file format for Hadoop. Parquet stores nested data structures in a flat columnar format.

Prioritize User Identity for Exports

The export file includes an identity column with the user's Identity, Phone Number, or Email values. These values are set based on the identities configured in the CleverTap dashboard under the Settings > User Identity page. This feature lets you prioritize the identifier you want to export in the identity column.

Let us understand how the prioritization works based on the identities selected in the User Identity page:

  • If you select only Identity, export includes the identity value. The export file's identity column is empty if it is unavailable.
  • If you select multiple identifiers, you must set the priorities on the Export page. For instance, you set Priority 1 to Identity and Priority 2 to Email ID. When exporting data, the export prioritizes the Identity value for the identity column. If it is absent, the Email ID is exported under the identity column of the export file. If both are missing, the column remains empty.

📘

Key Points to Remember

  • If you change the identity later, the export works according to the set priority. To prioritize the modified identities, edit your export.
  • This feature applies only to the following export types: All events and All user properties.
  • For the old running export, this configuration or prirotization is not applicable. You can add the prioritization by editing the running exports.

To prioritize user identity for exports:

  1. Go to Partners > Exports.
  2. Click Exports > Amazon S3.
  3. In the Configuration section, under Export Priority for Event Identity, click + Priority.
  4. Set up the Priority 1, 2, and 3 for the required identities from the drop-down list.
  5. Click Export.
Prioritize User Identities for Exports

Prioritize User Identities for Exports

FAQs

Q. What permission is required for CleverTap to export data to your AWS S3 bucket?

A. CleverTap needs write permission to be able to export data to your AWS S3 bucket, as shown in the following figure:

1446

IAM Policy to Provide CleverTap with Write Access

Q. What should I do if I already have an existing IAM policy for the AWS S3 bucket?

A. Ensure that you modify the current IAM policy to provide CleverTap with write access to export data to your AWS S3 bucket.

Q. Do CleverTap data exports allow special characters?

A. Yes, CleverTap data exports allow the following special characters:

  • CleverTap's export system supports Unicode (UTF-8) character encoding. It facilitates the accurate representation of text in various languages and scripts. For example, Indian regional languages, Arabic, Korean, Russian, Japanese, Chinese, Spanish, Greek, Indonesian, etc.
  • It replaces the following characters with a hyphen to avoid issues in output file generation:
    • Whitespace
    • Tab
    • Slash
    • null (\0)
  • Control characters are replaced with ?. For more information, refer to Control Character.
  • Supports emoji characters; however, some emojis (UTF-16) may not render properly.

Q. What customer-related errors can stop exports, and how are customers notified when interruptions occur?

A. Export processes can stop due to customer-related errors. For example, invalid/expired credentials or a missing partner bucket. CleverTap emails customers about the issue to ensure timely resolution.

Here are the customer-related errors that can stop an AWS S3 export:

Error CodeError MessageCause and Resolution
403Invalid AWS credentialsAWS credentials are expired or deleted. You must create a new Access key ID and Secret access key. For more information, refer to Create an API Key for your S3 Bucket.
403All access to this object has been disabledHere are the possible causes:
  • IAM policy is removed from the S3 bucket. For more information, refer to Add IAM Policy to S3 Bucket on AWS Console.
  • IAM policy is not configured. Check the policy or reconfigure the credentials. For more information, refer to IAM Policy.
  • 404The specified S3 bucket does not existS3 bucket is deleted. You must create a new S3 bucket and update the credentials in CleverTap. For more information, refer to Create an AWS S3 Bucket.

    Exports are checked every hour for failures. If an error occurs, CleverTap sends three emails to the export creator within a span of three days. Emails 1 and 2 include the error details and a link to fix it. It warns that the export will stop if the problem is not fixed within three days. Email 3 notifies the creator that CleverTap has stopped the export.

    Q. How can I export data from CleverTap?

    A. You can export the data from CleverTap using one of the three methods below:

    • S3 Export (AWS): You can export your event and profile data in the AWS S3 bucket using CleverTap Data Exports. For more information on using our data export, refer to Data Export to AWS S3.

    • Export via API: You can export your events and user data with our APIs. For more information, refer to API Overview.

    • Find People: You can download the profile data directly from the CleverTap dashboard through the Find People page with the following steps:

      1. Navigate to Segments > Find People.
      2. Define the criteria you want to export, then click View Details.
      3. Click the download icon below Total users to initiate the export.
    1167