Greptime

761 posts

Greptime banner
Greptime

Greptime

@Greptime

The Observability 2.0 database — one engine for metrics, logs & traces as unified wide events. Replaces Prometheus, Loki & ES. Open-source, SQL + PromQL.

Wolfe Road Sunnyvale Katılım Mayıs 2022
196 Takip Edilen950 Takipçiler
Sabitlenmiş Tweet
Greptime
Greptime@Greptime·
🧵We published 93 blog posts in 2025. One article got over half our traffic. Here's what we learned about tech content 👇 1. The runaway winner: "Observability 2.0 and the Database for It" Not a product launch. An opinion piece on where o11y is heading. Timing + a clear take = viral (for a database blog). 2. What else worked: 📊 Benchmarks—4 of top 15 were perf comparisons 🦀 Rust deep-dives—Android edge cases, source reading 👤 People stories—contributor interviews cracked top 10 3. The brutal math: Top 1 post = 50%+ of traffic Top 5 posts = ~70% of traffic Power law is real. Most posts get little reach. A few carry everything. 4. Lesson: depth > volume. One well-timed, technically solid post beats 10 mediocre ones. Full breakdown: greptime.com/blogs/2026-01-… #Greptime
English
0
1
0
266
Greptime
Greptime@Greptime·
Actually, repartitioning is not just for dealing with hot partitions or cold fragments; it can also be used to scale a table's read and write capacity by adding more regions.
English
0
0
0
20
Greptime
Greptime@Greptime·
Repartition — one of the most important features in GreptimeDB v1.0-rc — lets you split and merge partitions online without physical data migration. Hot partition? Split it. Cold fragments piling up? Merge them back. We wrote a practical guide with step-by-step SQL examples covering both Mito Engine and Metric Engine tables, plus checklists for running this safely in production. Read it: greptime.com/blogs/2026-03-…
English
1
1
5
149
Greptime
Greptime@Greptime·
Greptime Biweekly #78 🎉 6,000 GitHub stars! 🌟 Thanks to everyone who has starred, contributed, or used the project.♥️ Plus: new anomaly detection functions (zscore, iqr, mad), PostgreSQL COPY TO STDOUT for ADBC, admin GC commands for tables/regions, and DataFusion upgrade. Read more: greptime.com/blogs/2026-03-…
English
0
0
0
135
Greptime
Greptime@Greptime·
We just released GreptimeDB v1.0.0-rc.2, continuing our march toward v1.0 GA. Key highlights: - 100×+ faster TopK queries — ORDER BY ... LIMIT 10 improved from ~28.86s to ~0.21s via dynamic filter pushdown 🚀 - PostgreSQL COPY TO STDOUT support, enabling the ADBC-postgres optimized export path - Prometheus 3.x selector/lookback behavior alignment - Critical repartition stability fixes - New anomaly detection functions: anomaly_score_zscore, anomaly_score_iqr, anomaly_score_mad 84 PRs merged from 13 contributors👏. We strongly recommend upgrading. Blog: greptime.com/blogs/2026-03-… Release notes: github.com/GreptimeTeam/g… #GreptimeDB #OpenSource
English
0
0
5
278
Greptime
Greptime@Greptime·
LLM app breaks in production. You open Jaeger for traces, Prometheus for token metrics, Elasticsearch for the actual conversation. Three tabs, one trace_id you're copy-pasting between them. There are vendor-specific LLM observability platforms. This demo takes a different path: open standards (OTel GenAI) + open-source database (GreptimeDB). One SQL query joins traces with conversations. The whole thing runs with docker compose. Blog post: greptime.com/blogs/2026-03-… #GenAI #OpenTelemetry
Greptime tweet media
English
1
0
3
156
Greptime
Greptime@Greptime·
With dynamic filter pushdown into the scan layer, queries on non-time-index columns can prune irrelevant data much earlier. For ORDER BY end_time DESC LIMIT 10, this delivered 700x faster sort compute and cut end-to-end latency from 28.86s to 0.21s. github.com/GreptimeTeam/g… #Performance #OpenSource
English
0
0
1
116
Greptime
Greptime@Greptime·
Keep improving the performance and memory efficiency of Prometheus Remote Write request decoding: 👉 Replaced generic UTF-8 validation for Prometheus label names with a specialized byte-level lookup table and loop unrolling 👉 Reduced memory allocations by replacing Bytes cloning with &'static [u8] for label names Resulted in a ~10% performance gain! github.com/GreptimeTeam/g… #OpenSource #RustLang
English
0
2
4
1.4K
Greptime
Greptime@Greptime·
Benchmarked the GreptimeDB .NET Ingester SDK against GreptimeDB v1.0 RC1 on Apple M1 Max (~70 bytes/row, 9 columns, 100K rows/task): - gRPC Unary: ~960K rows/s - gRPC Streaming: ~1.3M rows/s - Arrow Flight: ~2M rows/s (~140 MB/s) All examples are single-file .NET 10 scripts — just dotnet run benchmark.cs. github.com/GreptimeTeam/g…
English
0
0
0
59
Greptime
Greptime@Greptime·
We'll release the #GreptimeDB v1.0 RC2 version later this week. It mainly includes fixes for a few bugs in region repartition, along with some performance optimizations.
English
0
0
1
100
Greptime
Greptime@Greptime·
We partnered with @EMQTech to build EMQX Tables — GreptimeDB running natively inside EMQX Cloud as a fully managed time-series database. If you're running MQTT, your device telemetry now goes from broker to storage to SQL query without provisioning a separate DB or wiring up ingestion pipelines. What makes it work: → Object storage-first (S3/GCS) — 3-20x cheaper for high-volume IoT data → Schemaless ingestion — no migrations when new device types show up → Native InfluxDB Line Protocol, Prometheus Remote Write, and OTLP support Blog → greptime.com/blogs/emqx-gre… Try it → emqx.com/en/cloud/emqx-… #TimeSeries #EMQX #GreptimeDB
English
1
1
2
328
Greptime
Greptime@Greptime·
GreptimeDB Biweekly Update No. 76 & 77 🔧 We're combining four weeks of progress in this update. Here's what shipped: Performance & Compatibility • BulkMemtable lazy encoding cuts L0 SST files by ~38% in TSBS workloads • PostgreSQL protocol now uses arrow-pg with proper unsigned integer handling • Prometheus 3.x selector and lookback behavior fully supported • Partition staging flow fixed for safer repartitioning Big Announcements 📢 v1.0 RC1 is here — we're approaching the 1.0 milestone 📍 Our 2026 Roadmap is live — check out what's ahead for GreptimeDB this year Community Over the past month, 58 PRs merged with contributions from linyihai, YZL0v3ZZ (welcome!), and ZonaHex. Thanks to everyone building with us. We also redesigned greptime.com with a cleaner look. Take a look and let us know what you think. For detailed technical changes and good first issues, read the full report: greptime.com/blogs/2026-02-… #OpenSource #Database #GreptimeBiweekly #Observability #GreptimeDB
English
0
0
4
171