Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Latency Spikes by Country
00:00
5 left

Top Latency Spikes by Country

MediumSQL · PostgreSQL

Problem

Given a table of message delivery logs, write a query to identify the top three destination countries with the highest latency spikes over the past 48 hours.

Treat a latency spike as a delivery with latency_ms greater than 1000. Rank countries by their maximum spike latency, then by spike count and country code for deterministic tie-breaking.

Output

  1. Return one row per destination country, excluding missing country codes and latencies.
  2. Include country_code, spike_count, average_spike_latency_ms, and maximum_spike_latency_ms.
  3. Return only the top three countries, ordered by maximum spike latency descending, spike count descending, and country code ascending.

Schema

message_delivery_logs
ColumnTypeDescription
log_idPKBIGINTUnique delivery log identifier
country_codeVARCHAR(2)ISO destination country code
latency_msINTEGERMessage delivery latency in milliseconds
logged_atTIMESTAMPTZTimestamp when the delivery log was recorded
Tablesmessage_delivery_logs
Interviewer

Your question is Top Latency Spikes by Country. Start with the requirements and the one table in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.