惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tailwind CSS Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
L
LangChain Blog
博客园_首页
Recent Announcements
Recent Announcements
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
博客园 - 叶小钗
博客园 - 【当耐特】
The Cloudflare Blog
J
Java Code Geeks
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans

EDB

FOSS4G NA Enterprise Automation Resilience: Red Hat AAP on EDB Postgres AI Documenting the PostgreSQL protocol with pg_protoexport EDB heads to PGConf.Brasil 2026, this is what we’ll be talking about! Powering Invisible Commerce at World Cup Speed By the Time Your Data Warehouse Answers, the Opportunity Is Gone Building a Sovereign, Intelligent Data Foundation with EDB Postgres® AI on IBM LinuxONE 5 Deep Dive Into EDB Postgres AI's Agentic Database Capabilities Jumping the gun: looking ahead at PostgreSQL 19 Meeting in Montreal: Developer U plan(ner) patches KubeCon + CloudNativeCon NA EDB Summer Academy Your Database Goes Down. What Does That Cost Your Business? The Oracle Renewal Is Coming. This Time, There’s a Way Out. One Dashboard to Rule Them All — and Finally Get Your Fridays Back Your Database Should Be Working While You Sleep Inside the Agentic Database: How EDB Turned Postgres Into a Self-Managing System The Architecture IS the Security: Building Sovereign AI Ops on Postgres with EDB Agent Factory EDB Named a Leader in Multimodel Data Platforms Evaluation PGDay Hyderabad The Role of AI in Data Analytics: Moving From Hype to High-Octane Utility Iga Januszek Mike Olifirowicz Meeting EU Data Sovereignty Requirements While Speeding-Up Innovation Inside EDB’s New Principles for Responsible AI: Sovereign, Governed, Trusted and Beneficial Built From the Data Up: A Trusted Foundation for the Agentic Era | EDB Postgres® AI Q2-2026 Release EDB Launches Agentic Database, Converged Analytics, and Governance, Bringing Sovereign AI Where Enterprise Data Already Lives Stop Spending Hours on What Should Take Minutes: A DBA's Guide to EDB Postgres AI’s Agentic Database Capabilities Making Agentic AI Smarter at the Architecture Level Charly Batista
Buildfarm Query API
Andrew Dunstan · 2026-06-12 · via EDB

A colleague asked me recently if there was an API for querying the PostgreSQL Buildfarm database. I told him there was not. I'm aware that a number of people have been scraping the web pages for data, so it seemed like there was a good case for something better. And with a little help from claude code, I create one. It's live now. There's a full description at https://github.com/PGBuildFarm/server-code/blob/main/API.md

I'm particularly interested to hear from people how this might be usefully extended.

Here's an example of use, getting the latest status for the member crake on the master branch:

$ GET https://buildfarm.postgresql.org/cgi-bin/bfapi.pl/status/master/crake
[
   {
      "architecture" : "x86_64",
      "branch" : "master",
      "build_flags" : [
         "buildtype",
         "cassert",
         "nls",
         "plperl",
         "plpython",
         "pltcl",
         "gssapi",
         "openssl",
         "ldap",
         "xml",
         "libxslt",
         "zlib",
         "readline",
         "tap-tests",
         "uuid",
         "icu",
         "PG_TEST_EXTRA",
         "injection-points",
         "curl",
         "debug",
         "meson",
         "git",
         "integer-datetimes",
         "thread-safety"
      ],
      "compiler" : "gcc",
      "compiler_version" : "16.1.1",
      "git_head_ref" : "7dd15325952fe85521b1fefea3ad39cf1b46e0c8",
      "log_archive_filenames" : [
         "SCM-checkout.log",
         "configure.log",
         "build.log",
         "test-setup.log",
         "check.log",
         "make-doc.log",
         "make-install.log",
         "install-testmodules.log",
         "BlackholeFDW-build.log",
         "RedisFDW-build.log",
         "FileTextArrayFDW-build.log",
         "perl-check.log",
         "BlackholeFDW-install.log",
         "RedisFDW-install.log",
         "FileTextArrayFDW-install.log",
         "misc-check.log",
         "initdb-C.log",
         "startdb-C-1.log",
         "install-check-C.log",
         "RedisFDW-installcheck-C.log",
         "FileTextArrayFDW-installcheck-C.log",
         "stopdb-C-1.log",
         "startdb-C-2.log",
         "misc-installcheck-C.log",
         "stopdb-C-2.log",
         "xversion-upgrade-save.log",
         "xversion-upgrade-HEAD-HEAD.log",
         "xversion-upgrade-REL_18_STABLE-HEAD.log",
         "xversion-upgrade-REL_17_STABLE-HEAD.log",
         "xversion-upgrade-REL_16_STABLE-HEAD.log"
      ],
      "operating_system" : "Fedora",
      "os_version" : "44",
      "report_time" : "2026-06-11 15:17:00.353648+00",
      "snapshot" : "2026-06-11 14:54:18",
      "stage" : "XversionUpgrade-REL_16_STABLE-HEAD",
      "status" : 1,
      "sysname" : "crake",
      "when_ago_secs" : 4607
   }
]