Google Cloud Storage

Journey Analytics provides an integration option that enables you to upload the content of any CSV or JSON file from a Google Cloud Storage bucket into your Journey Analytics project. This type of integration is typically used to enrich your Journey Analytics events with your own data.

Journey Analytics creates a dedicated bucket for you in Google Cloud Storage and then automatically uploads the file name and file type that you specify every hour.

To upload content into Journey Analytics from a Google Cloud Storage Bucket:

  1. Contact your Journey Analytics customer success representative or Medallia Support. Ask them to create a Google Cloud Storage bucket for you into which you can dump your CSV and JSON files to be integrated into Journey Analytics.
  2. Upload your files into this Google Cloud Storage bucket. For example, by using the UPLOAD FILES button in the Google Cloud Platform user interface. You could also use the gsutil tool in order to automate this process. See the following link for some useful commands: https://cloud.google.com/storage/docs/gsutil

    7-14
  3. Follow the instructions in Integrating with Predefined Data Sources and then select Google Cloud Storage:

    7-16

  4. Fill in the following:
    • Integration Name – The name of this integration.
    • Load data only once – Check this option to specify that Journey Analytics only loads the data from your Journey Analytics bucket once. Otherwise, data is loaded every hour, if available.
    • Upload Data Format – Select CSV or JSON to specify the format of the files to be uploaded from your Journey Analytics bucket. JSON files must be flat (not nested) newline – delimited.
    • File Name – The file name to be uploaded. Make sure to add the file type ending, such as csv/json.
    • Use File Name as Table Name – Check this box to specify that the name of the table that is created in Journey Analytics is the same as the File Name (described above). This is the table name to be used in the queries that you will perform on the uploaded data. If you choose this option, then make sure that the file name is a valid table name.
    • Table Name – If you did not select the option above, then enter the name of the table to be created in Journey Analytics to contain the data that is uploaded. Like all table names, it is case sensitive and cannot include spaces or special characters.
    • Append Date to the Table Name – Appends the date when the table is created to the table name. A new table partition is created for each date. Its format is TableName_YYYYMMDD. Selecting this feature enables you to use Google's BigQuery Data Partitioning feature. You may contact your Journey Analytics customer success representative to hear more about this feature.
    • File Scheme – Define the scheme of the columns of the table to be uploaded by defining the name and data type of each column. Click the Add + button to add each new column. The following data types are supported – string, integer, float, Boolean and timestamp. For example, name:STRING, id:INTEGER, birthdate:TIMESTAMP.
    • In the Insert Strategy field, select either –
      • Append New data is added to the table each time data is uploaded.– OR –
      • Replace The table is overwritten each time the data is uploaded.
    • In the Emails to Notify If the Failure field, type in the emails to whom to send integration upload and failure notifications.
    • [Optional] You can use the Google Project ID and Google Dataset fields to define that Journey Analytics uploads data from your Journey Analytics bucket into your own Google project instead of into your Journey Analytics project. Contact your Journey Analytics customer success representative for more information.
  5. Click the Save button.

Each hour Journey Analytics will then integrate the files that are dropped into this bucket into your project. The first integration process should take place within a few minutes.After Journey Analytics has integrated the files into your Journey Analytics project, the Journey Analytics Google bucket is emptied. The files are moved to a subfolder named Uploaded in the bucket and a timestamp is appended to the beginning of the file name. The syntax is – YYYYMMDD_filname.filetype. For example, 20160823_stats.csv.

The Status column of the Integrations list changes to show Data Received.If the integration process fails for any reason, then the file is moved to a subfolder in the bucket named Failed. An email is sent to the specified recipient(s) (described above) alerting them regarding the integration failure. The same filename convention would be applied in the Failed folder as well.

Data can now be queried using the following syntax:

SELECT * 
FROM tableName

Date Format

Define the Date Format to recognize and convert timestamps columns so they can be used as such in Journey Analytics. All JAVA standard time formats are supported. The following characters can be used – 1-3 chars represents the abbreviated form, if one exists; 4+ chars represents the full form. The date syntax is case sensitive, so (for example) MM represents month and mm represents seconds.

LetterDate Or Time ComponentPresentationExamples
GEra designatorTextAD
yYearYear1996; 96
MMonth in yearMonthJuly; Jul; 07
wWeek in yearNumber27
WWeek in monthNumber2
DDay in yearNumber189
dDay in monthNumber10
FDay of week in monthNumber2
EDay in weekTextTuesday; Tue
aAm/pm markerTextPM
HHour in day (0-23)Number0
kHour in day (1-24)Number24
KHour in am/pm (0-11)Number0
hHour in am/pm (1-12)Number12
mMinute in hourNumber30
sSecond in minuteNumber55
SMillisecondNumber978
zTime zoneGeneral time zonePacific Standard Time; PST; GMT-08:00
ZTime zoneRFC 822 time zone-800

Examples:

DateFormat
04-18-17MM-dd-yy
18-04-2017dd-MM-yyyy
18/04/2017 19:36:55dd/MM/yyyy HH:mm:ss
18/04/2017 07:36:55dd/MM/yyyy hh:mm aa
Tue 04/18/2017EEE MM/dd/yyyy