hose datasets Demo data with a pulse

A hose dataset · canonical

The jaffle shop didn't close when the tutorial ended.

dbt's demo shop as a going concern, with a fresh order most minutes the shop is open.

797,284 rows · last row 3 minutes ago

hose → jaffle 797,284 rows live
Rows as the generator writes them, straight from the API. Real speed. Quiet hours are quiet, the way a real business is.

The receipt

seed
42
scale
100
start
2023-09-01
fingerprint
4bb927977c12

The whole dataset grows from this one seed. Everyone who downloads it gets the same rows with the same ids, today and next month, so whatever you build on it keeps working after the data refreshes.

Orders per day, last 90 days

2026-06-18: 3592026-06-19: 3702026-06-20: 2262026-06-21: 2262026-06-22: 3562026-06-23: 3552026-06-24: 3652026-06-25: 3392026-06-26: 3362026-06-27: 2212026-06-28: 2202026-06-29: 3262026-06-30: 3472026-07-01: 3272026-07-02: 3312026-07-03: 3462026-07-04: 2412026-07-05: 2332026-07-06: 3812026-07-07: 3572026-07-08: 3312026-07-09: 3112026-07-10: 3322026-07-11: 2482026-07-12: 1962026-07-13: 3512026-07-14: 3512026-07-15: 3592026-07-16: 3442026-07-17: 3402026-07-18: 2372026-07-19: 2002026-07-20: 3792026-07-21: 3452026-07-22: 3452026-07-23: 3452026-07-24: 3302026-07-25: 2262026-07-26: 2042026-07-27: 3382026-07-28: 3512026-07-29: 3592026-07-30: 3812026-07-31: 3302026-08-01: 2142026-08-02: 2262026-08-03: 3322026-08-04: 3462026-08-05: 3402026-08-06: 3512026-08-07: 3592026-08-08: 2202026-08-09: 2272026-08-10: 3652026-08-11: 3522026-08-12: 3332026-08-13: 3742026-08-14: 3532026-08-15: 2232026-08-16: 2482026-08-17: 3492026-08-18: 3682026-08-19: 3302026-08-20: 3532026-08-21: 3202026-08-22: 2522026-08-23: 2492026-08-24: 3502026-08-25: 3462026-08-26: 3522026-08-27: 3932026-08-28: 3762026-08-29: 2302026-08-30: 2162026-08-31: 3552026-09-01: 4592026-09-02: 4762026-09-03: 4512026-09-04: 4462026-09-05: 2572026-09-06: 2742026-09-07: 4802026-09-08: 4552026-09-09: 4342026-09-10: 4812026-09-11: 4522026-09-12: 2512026-09-13: 2682026-09-14: 4772026-09-15: 247

Schema · 7 tables

customers

7,795 rows

  • idtext · key
  • nametext
  • personatext
  • store_idtext
  • created_attime
  • last_order_attime

orders

251,715 rows

  • idtext · key
  • customer_idtext
  • store_idtext
  • ordered_attime
  • subtotalreal
  • tax_paidreal
  • totalreal

items

447,633 rows

  • idtext · key
  • order_idtext
  • skutext
  • nametext
  • pricereal

tweets

90,060 rows

  • idtext · key
  • customer_idtext
  • order_idtext
  • tweeted_attime
  • contenttext

stores

6 rows

  • idtext · key
  • nametext
  • opened_attime
  • tax_ratereal

products

10 rows

  • skutext · key
  • nametext
  • typetext
  • pricereal
  • descriptiontext

supplies

65 rows

  • idtext · key
  • supply_idtext
  • nametext
  • costreal
  • perishablebool
  • skutext

Why this one

The jaffle shop from the dbt tutorial is a fixture: a handful of CSVs with a fixed date range and an ending. It does its teaching job and stops.

This one keeps trading. A few regulars carry most of the revenue while the long tail visits once. The seasonality is strong enough to survive a group-by. Because every run with the same seed produces identical bytes, the models you build against it today reconcile against it tomorrow. And because the shop keeps business hours, even the quiet stretches are honest: nobody buys a jaffle at four in the morning.

The other datasets