Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Telemetry Average in SQL

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Rolling 7-Day Telemetry Average in SQL. Start with the requirements and the two tables on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Datadog monitors telemetry ingestion for customer accounts. Write a PostgreSQL query that calculates each active account's daily telemetry ingestion rate and its rolling 7-day average from January 1 through January 7, 2024.

Requirements

  1. Include every active account for every date in the reporting period, including accounts with no telemetry.
  2. Aggregate multiple telemetry records for the same account and date into one daily ingestion rate. Treat missing or NULL ingestion rates as zero.
  3. Use a window function partitioned by account and ordered by date to calculate the average across the current date and up to the six preceding calendar dates.
  4. Return account name, date, daily ingestion rate, and the rolling average, rounded to two decimal places. Order by account name and date.

Schema

customer_accounts
ColumnTypeDescription
account_idPKINTUnique Datadog customer account identifier
account_nameVARCHAR(100)Customer account name
statusVARCHAR(20)Account lifecycle status
telemetry_ingestion
ColumnTypeDescription
ingestion_idPKINTUnique telemetry measurement identifier
account_idINTCustomer account receiving telemetry
ingestion_dateDATEDate of the telemetry measurement
ingestion_rateNUMERIC(12,2)Telemetry events ingested during the measurement interval
Tablescustomer_accountstelemetry_ingestion
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results