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

推荐订阅源

量子位
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Y
Y Combinator Blog
The Cloudflare Blog
Last Week in AI
Last Week in AI
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
博客园 - 司徒正美
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog

MariaDB.org

"Verify, Measure, and Get Your Hands Dirty": Two Decades of Database Support with Sveta Smirnova - MariaDB.org The database world grew up — notes from Percona Live Amsterdam - MariaDB.org MariaDB 13.0 Is Now Stable - MariaDB.org Trying DuckDB for Magento Analytics: An Experiment with One Million Orders - MariaDB.org MariaDB adoption is growing, and the way people get it is changing – Adoption Index 2026-09 - MariaDB.org AWS renews Diamond sponsorship of MariaDB Foundation for a fourth consecutive year - MariaDB.org Rethinking PAM - MariaDB.org From a Chocolate Wrapper to Concurrent InnoDB Page Splits - MariaDB.org Launching MariaDB's Database Survey 2026 - MariaDB.org MariaDB Plugins Beyond C++: What the Community Told Us - MariaDB.org MariaDB Connector/C Compatibility: An Update on CONC-821 - MariaDB.org MariaDB Foundation Newsletter – September 2026 - MariaDB.org MariaDB at Percona Live Amsterdam 2026: Ecosystem, Plugins, Security, and Community - MariaDB.org MariaDB Server 12.3, 11.8, 11.4 and 10.11 – Q3 2026 Maintenance Releases, and Goodbye 10.6 - MariaDB.org MariaDB Contribution Statistics, January-June 2026 - MariaDB.org Seravo becomes a Silver Sponsor of MariaDB Foundation - MariaDB.org Extending MariaDB with Native Aggregate Plugins: Laying the Groundwork for HyperLogLog - MariaDB.org MariaDB Foundation Advances TAF with HammerDB 6.0 and xt_reservoir Integration - MariaDB.org MariaDB 13.1 Feature in Focus: JSON Operators and JSON_TABLE Improvements - MariaDB.org MariaDB Foundation is pleased to welcome Auree as a Silver Sponsor. - MariaDB.org Hear Ye, Hear Ye: A Guide to MariaDB’s Governance Model - MariaDB.org Wirekite becomes Silver Sponsor of MariaDB Foundation - MariaDB.org From a Production Problem to MariaDB: Headout’s Open-Source Contribution Journey - MariaDB.org Adobe Commerce Chooses MariaDB as Its Default Database Platform - MariaDB.org ScalaHosting Becomes a Gold Sponsor of MariaDB Foundation - MariaDB.org The Queen and the "Half That Wasn't Told" - MariaDB.org IBM continues as a Platinum Sponsor of MariaDB Foundation - MariaDB.org Say the Name: MariaDB, MySQL, and the Ecosystem We Share - MariaDB.org Deploying the MariaDB Privacy-First Stack Anywhere with Terraform - MariaDB.org From PostgreSQL 12 to MariaDB 11: A Gradual Fintech Migration with 23% Lower TCO - MariaDB.org
The Power Of The Community!
Georgi Kodinov · 2026-06-04 · via MariaDB.org

Skip to content

Inspired by some recent LinkedIn posts, I decided to take the AI in my own hands and do some stats on the MariaDB and MySQL repositories.

This graph is what I’ve got.

Not only have MariaDB Server distinct contributors surpassed the distinct MySQL Server contributors count! The External MariaDB contributors alone did! *

This is how the Power Of the Community looks like!

And a reminder: Why contribute?

  • You get to use a more functional, performant and error free MariaDB Server
  • ⁠⁠You get a say in shaping the future of the MariaDB Server.
    • caveat: you’ll have to put your resources where your mouth is and contribute the changes that are important to you.
  • ⁠⁠You avoid duplicate efforts and cooperate instead: our development process is public and anybody can follow and reference it. So no need to re-implement things over and over in isolation.
  • ⁠⁠Once you contribute, the burden of maintaining the contribution will also be shared and will not be yours alone to bear.

My Method

I’ve asked the AI to vibe-code a shell script for me that I’ve then massaged a little. The result is as follows:

$cat gogo.sh 
#!/bin/bash
# =============================================
# Distinct committers to MariaDB/server per quarter
# Across ALL branches — 2025 and 2026
# =============================================

echo "Quarter,Distinct Committers,External Committers"
echo "------------------------------------------------"

CURRENT_DATE=$(date +%Y-%m-%d)

# You can change this if you want to go further in the future
MAX_YEAR=2026

for year in $(seq 2025 $MAX_YEAR); do
    for q in 1 2 3 4; do
        case $q in
            1) start="${year}-01-01" ; end="${year}-03-31" ;;
            2) start="${year}-04-01" ; end="${year}-06-30" ;;
            3) start="${year}-07-01" ; end="${year}-09-30" ;;
            4) start="${year}-10-01" ; end="${year}-12-31" ;;
        esac

        # Skip quarters that haven't started yet
        if [[ "$start" > "$CURRENT_DATE" ]]; then
            continue
        fi

        # Count distinct committers across ALL branches
        count=$(git log --all --since="$start" --until="$end" --format='%ae' | sort -u | wc -l)
        count_ext=$(git log --all --since="$start" --until="$end" --format='%ae' | sort -u | grep -v mariadb | wc -l)


        printf "Q%d %d,%d,%d\n" "$q" "$year" "$count" "$count_ext"
    done
done

I’ve run this atop of my local MariaDB/server tree clone. This has got me the numbers I needed for MariaDB.

Obviously I had to massage this a little more before running it on my MySQL server clone: I had to replace “mariadb” with “oracle.com”.

To my surprise I’ve received 0 for the external contributors to the MySQL repository. But then I’ve remembered why! So I had to discard that column.

And then I’ve poured the data back into the AI and asked it to produce a nice graph. And Voila!

Caveat: some of my MariaDB colleagues are pushing stuff using their personal emails. This somewhat skews the external count. Just know that The AI sees you 😉