Skip to main content

Quickstart

This quickstart shows you how to use the Imply Polaris web interface to ingest, query, and visualize data.

For a high-level overview of Polaris components, see Key concepts.

Prerequisites

Before you use this quickstart, make sure you have:

  • A Polaris account
  • One of the supported browsers:
    • Last three versions of Chrome, Firefox, Edge (Chromium version), Opera
    • Firefox ESR
    • Safari (desktop) 16 or above

Sign up for an account

If you don't already have a Polaris account, sign up for a limited trial:

  1. Go to https://signup.imply.io.

  2. Enter your information in the sign-up form. Polaris sign-up form

    Your organization name must meet the following criteria:

    • It must contain a minimum of 3 and a maximum of 63 characters. Characters are letters, numbers, and dashes.
    • It must begin with a letter or a number and end with a letter or a number.
    • It cannot start or end with a dash.
    • It cannot contain symbols such as asterisks, underscores, and exclamation points.
    • It cannot end with -imply-cloud.
info

Polaris doesn't accept free email addresses for new accounts.

  1. Click Create account.
  2. Check your inbox for a confirmation email from Imply. You must verify your email address to create an account. If you do not receive a confirmation email or have trouble signing up, email Polaris support.

After you've verified your email address, you should receive a welcome email from Imply containing a link to your Polaris account. Click on the link in the email to access your account.

At first login, you are prompted to choose a cloud region in which Imply will host your project.

Polaris supports the following regions:

  • us-east-1: US East (N. Virginia)
  • us-west-2: US West (Oregon)
  • ap-south-1: Asia Pacific (Mumbai)
  • eu-central-1: Europe (Frankfurt)
  • eu-west-1: Europe (Ireland)

You can only have one project in the selected region during the trial period.

Load data

This section explains how to load batch data into a table so you can start using Polaris quickly. See Table schema to learn about table design.

Download the sample data

Download a day of clickstream activity from KoalasToTheMax.com. This newline-delimited JSON file is the source data for the quickstart. See Supported data formats for more information on data and file format support in Polaris.

Upload a file and view sample data

To upload the sample data, follow these steps:

  1. Click Jobs in the left pane.

  2. Click Create job > Insert data.

  3. Click New table and enter Koalas to the Max for the table name. If Koalas to the Max is in use, append a number to make your table name unique. Table names must be unique. Once you create a table, you can't change its name.

  4. Click Next.

  5. In the BATCH section, click Files.

  6. Click Upload files from your computer and choose the file you downloaded, kttm-2019-08-19.json.gz, then click Open. You can select multiple files for a single ingestion job but for the purpose of the tutorial, choose only the one file. The file name must be unique.

  7. When the upload is complete, click Next. Polaris determines the appropriate table type and schema mode from the ingestion job. See Table schema and mode and Types of tables to learn more.

  8. Polaris samples your data and displays the input field names and data typesfor example:

    • continent is a string.
    • session_length is in long format.
  9. At this point you could add input fields, remove input fields, or adjust the data types. For the purpose of the tutorial, click Continue to proceed with ingestion.

Map input fields to Polaris columns

Polaris uses your sample data to identify the input format and suggest a schema for your target table. For the purpose of the tutorial, accept the automatic mapping.

  1. Confirm the primary timestamp.

    In this case, Polaris suggests the input field timestamp for the __time column which is correct. To learn about time column handling in Polaris, see Timestamp expressions.

  2. Optionally, edit the column properties for how you want Polaris to store them. For example, you can change the column agent_category or agent_type.

    You can also set the Input expression to alter the values for the column. By default, Polaris maps the input field directly to a column with the same name. To alter the value, you can apply a scalar expressionfor example, UPPER("country") to store country values in uppercase.

  3. When you're ready to start your ingestion job, click Start ingestion.

Polaris displays the ingestion job status in the Jobs pane on the right. When the ingestion job status changes to Completed, you can start querying your data. This can take a few minutes.

Polaris job status

Query data

Now that you've ingested data into Polaris, you're ready to run some queries.

  1. On the table detail page, click Query > SQL console. Or, from the home page, click SQL in the left sidebar.

  2. Look for the dataset you just uploaded by table name. Polaris SQL page

  3. Click the arrow next to the table name to see the table's columns.

  4. Enter the following query in the query window:

    SELECT * FROM "Koalas to the Max"
    WHERE "__time" BETWEEN TIMESTAMP '2019-08-19 00:00:00' AND TIMESTAMP '2019-08-21 00:00:00'
  5. Click Run.

Instead of returning all of the columns in the table, you can select individual columns by namefor example, you can run the following query to show just the cities:

SELECT "city" FROM "Koalas to the Max"
WHERE "__time" BETWEEN TIMESTAMP '2019-08-19 00:00:00' AND TIMESTAMP '2019-08-20 00:00:00'

Visualize data

Visualization features let you explore and draw insights from your data. There are many types of visualizations available in Polaris, including table view, line chart, and heatmap. See Visualizations reference for details of all visualizations.

Create a data cube

Data cubes contain data from one or more data sources and provide an interface to explore a data set. Make a data cube for Koalas to the Max:

  1. Click Data cubes in the left sidebar.

  2. Click Create data cube.

  3. Select From table as your source and select the table you created, Koalas to the Max. Leave Auto-fill dimensions and measures checked.

  4. Click Next: Create data cube.

  5. Click Save. The data cube appears:

    Polaris data cube

  6. You can use the data cube to view aggregated data. To view the number of events by country, drag the Country dimension from the left pane into the Show field in the center of the page.

Create a dashboard

Using a dashboard, you can create effective and focused data visualizations. A dashboard displays the results of several data cubes in a single view. Add a dashboard for the Koalas to the Max data cube:

  1. Click the back arrow in the top left corner, then click Dashboards in the left sidebar.

  2. Click Create dashboard.

  3. At the top of the page, give your dashboard a name.

  4. With your mouse or pointer, click and drag across blocks on the page to create a new tile.

  5. In the popup, select content type Table.

    Polaris dashboard

  6. From the drop-down list, select the data cube Koalas to the Max.

  7. Add a Row for the Country dimension.

    Polaris dashboard

  8. Click elsewhere on the page to close the dialog.

  9. Click Create.

That's it! Continue to explore the Polaris UI, try out your own data, or learn more about creating a schema.

Learn more

See the following topics for more information: