databaseTrino

Marple integrates seamlessly with Trinoarrow-up-right, a fast distributed SQL query engine.

What makes this connection particularly powerful is that Trino itself supports a wide range of underlying data sources, making all of them accessible through Insight as well.

Required credentials

To connect, the following credentials are needed:

  • Host

  • User

  • Password

  • Port

Queries

Queries are executed using SQL. Marple offers predefined queries for fetching datasets, signals, and time-series data. Below are some example queries:

  • To retrieve datasets:

select
    concat("carId", ' ', session) as display_name,
    "carId",
    event,
    session,
    min(time) as start,
    max(time) as stop,
    realtime
  from {{TABLE}}
  group by "carId", event, session, realtime
  • To retrieve a signal list:

  • To retrieve the time series data

Last updated