Httparchive.technologies table gone on big query?

Hello everyone, every now and then I would run a report based on the technologies table of the httparchive dataset, today I’ve noticed that the tables are gone, I see the technologies group is still referenced on the documentation images here Getting started accessing the HTTP Archive with BigQuery | har.fyi

These are the tables/groups that I see

Am I doing something wrong or is the dataset gone? :sad_but_relieved_face:

Yes this dataset is now gone, but the data resides in the crawl dataset.

See this notice: [NOTICE] Reorganizing the har and runs datasets on BigQuery

Here’s an example query to find all WordPress sites in the top 1,000 pages:

SELECT
  COUNT(DISTINCT root_page) AS num_origins
FROM
  `httparchive.crawl.pages`
WHERE
  date = '2024-04-01' AND
  rank <= 1000 AND
  'WordPress' IN UNNEST (technologies.technology)
1 Like

Will get that image updated. But the text in that article is correct.