小红花·文摘
  • 首页
  • AI Tokens🪙
  • 排行榜🏆
  • 直播
  • FAQ

Track WAL replay progress on a primary, or diagnose why a standby stalled—two GUCs for the same startup question, answered only in the server log.

Christophe Pettus: All Your GUCs in a Row: log_startup_progress_interval and log_recovery_conflict_waits

Planet PostgreSQL Planet PostgreSQL · 2026-09-05T01:00:00Z

Control what bind parameters PostgreSQL logs alongside statements and errors.

Christophe Pettus: All Your GUCs in a Row: log_parameter_max_length and log_parameter_max_length_on_error

Planet PostgreSQL Planet PostgreSQL · 2026-09-01T01:00:00Z

PostgreSQL's log rotation has three parameters that only make sense together: one rotates at clock boundaries, one at file sizes, and one decides whether to…

Christophe Pettus: All Your GUCs in a Row: log_rotation_age, log_rotation_size, and log_truncate_on_rotation

Planet PostgreSQL Planet PostgreSQL · 2026-08-29T01:00:00Z

And now, we put on our waders and venture into the swamp that is all of the PostgreSQL logging GUCs. PostgreSQL 8.3 is the release in which the server started doing its own housekeeping in...

Christophe Pettus: All Your GUCs in a Row: log_checkpoints, log_autovacuum_min_duration, and log_temp_files

Planet PostgreSQL Planet PostgreSQL · 2026-08-25T01:00:00Z

Envoy Gateway v1.9.0的可观测性需注意:access log仅证明单跳请求,metrics中的xds_nack_total仅表示Envoy拒绝更新,tracing默认客户端采样率改为0%,需显式设置clientSamplingFraction。控制面与数据面指标分离,不可混用。各信号对应不同排障维度,避免误判。

【Envoy Gateway】可观测:access log / metrics / tracing 能证明什么,默认 client sampling 0%

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-19T00:00:00Z

PG是Ceph中对象与OSD间的一致性调度单元,通过PG log记录写操作版本链,支持peering状态机重建权威视图。本文解析PG log格式、last_epoch_started与last_epoch_clean语义差异,及peering关键阶段,强调PG作为哈希桶而非目录,peering非选主,并讨论min_size权衡与peering雪崩等开放问题。

【Ceph RADOS】PG 与 Peering:PrimaryLogPG、PG log 与状态机

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-14T00:00:00Z

本文介绍Envoy数据面可观测性,聚焦stats、access log和tracing三种信号。它们都耦合在请求路径上,分别擅长聚合告警、单请求失败分类和跨跳相关。排障时按admin统计树前缀(listener/http/cluster/server)缩小范围,用RESPONSE_FLAGS定位失败原因,tracing需业务传播上下文。强调ACK配置不等于根因已解释,需结合机制篇和排障清单。

【Envoy 数据面】可观测数据面:Stats、Access Log、Tracing 与请求路径耦合

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-08-10T00:00:00Z

本文讨论了FoundationDB中的TLog(事务日志)机制,强调其在客户端提交中的重要性。TLog通过将变更日志复制到多个LogServer来确保数据持久性,提交成功的条件是所有指定副本的日志都持久化。文章还探讨了Durable Version(DV)和Known Committed Version(KCV)的概念,以及在恢复过程中确保已承诺事务可找回的方法。TLog的设计使存储与提交路径解耦,提高了I/O效率,但可能导致短暂的读延迟。

【FoundationDB 内核】Transaction Log:提交点、durable version 与异步解耦

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-07-17T00:00:00Z

Vinay Chella and Akshat Goel discuss the challenges of running traditional CDC across heterogeneous databases during peak order traffic. They explain how Debezium hit limits under high load and...

Presentation: Write-Ahead Intent Log: a Foundation for Efficient CDC at Scale

InfoQ InfoQ · 2026-06-18T13:13:00Z

本文深入探讨了MySQL InnoDB的Redo Log机制,分析了其核心数据结构、关键算法及状态机,强调了Redo Log对DML延迟和崩溃恢复的影响。指出在排查问题时需理解其背后的结构和语义,并提供了源码阅读路径和实验步骤,同时与PostgreSQL进行了对比,强调不同实现的隔离语义。

【MySQL InnoDB 内核】Redo Log 内部机制:LSN、mtr 与组提交

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-06-18T00:00:00Z

本文探讨了MySQL InnoDB的Undo Log机制,分析了其核心数据结构、关键算法和状态机,强调了Undo Log对DML延迟和崩溃恢复的影响,并提供了源码阅读路径和实验步骤。同时对比了PostgreSQL的实现,指出两者在隔离语义上的不同,并提醒在生产环境中注意不同版本的实现差异。

【MySQL InnoDB 内核】Undo Log 与事务回滚

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-06-18T00:00:00Z

Everything we’ve built so far has a fatal flaw: if the power goes out, data is lost. The buffer pool keeps dirty pages in memory and flushes them to disk lazily. A crash before that flush means...

OLTP – Phase 9 Write-Ahead Log (WAL)

Kimserey Lam’s website, Software Development blog posts, videos and tutorials Kimserey Lam’s website, Software Development blog posts, videos and tutorials · 2026-06-17T05:00:00Z

前驱/后继问题是算法中的重要问题,涉及动态整数集合的插入、删除和查找等操作。Van Emde Boas树(vEB树)通过递归分层结构,将操作复杂度降低到O(log log U),适用于有界整数。vEB树利用懒惰存储,使得获取最小值和最大值的时间复杂度为O(1)。尽管在理论上优于平衡树和哈希表,但在实际应用中需考虑空间和实现复杂度。

Van Emde Boas 树:当 O(log log n) 不只是理论

土法炼钢兴趣小组的博客 土法炼钢兴趣小组的博客 · 2026-04-23T00:00:00Z

Announcing MySQL HeatWave Telemetry data publishing into OCI Log Analytics — the easiest way to view , analyze the MYSQL Heatwave Logs New build-in feature to publish the MySQL Logs to OCI Log...

Introducing MySQL HeatWave Telemetry data with OCI Log Analytics

Planet MySQL Planet MySQL · 2026-03-31T16:00:00Z

vivo X300系列发布后,其专业视频模式和vivo Log引起了摄影爱好者的关注。文章探讨了vivo Log的色彩空间转换,强调使用色彩空间转换(CST)比简单应用还原LUT更为严谨和可控。作者分享了使用vivo X200和X300拍摄及调色的经验,提供了具体操作步骤和建议,旨在帮助用户更好地掌握色彩控制。

一日一技 | 如何正确进行 vivo Log 的色彩空间转换

少数派 少数派 · 2026-03-31T07:03:08Z

This is a quick one.  My attention was recently brought (thanks Simon) on a relatively recent comment (25 Nov 2025) in Bug #103672 - Binlog compression transaction payload event...

Binary Log Compression is Safe since MySQL 8.0.34

Planet MySQL Planet MySQL · 2026-03-26T20:41:00Z

在网络安全领域,攻击者通过多种方式发起攻击。Cloudflare Log Explorer整合14个新数据集,提供全面可视化,帮助安全分析师快速识别复杂攻击,缩短检测时间。该工具集中管理日志,支持多数据集关联查询,提高响应速度,识别恶意活动和数据泄露。

在Log Explorer中调查多向攻击

The Cloudflare Blog The Cloudflare Blog · 2026-03-10T13:00:00Z

I am upset about this one : I have a hard time not seeing this as negligence, and it starts to become a pattern...  So please forgive me if this post is not my most diplomatic, because I...

Undo Log Truncation Bug in 8.0 leads to Data Corruption

Planet MySQL Planet MySQL · 2026-01-05T22:23:00Z

文章总结为:我不是机器人。

Public Development Log for Wiki萌 Blog System v1

维基萌 维基萌 · 2025-12-21T02:58:20Z

本文介绍了Linux启动日志的记录过程,包括从加电到用户登录的各个环节,如内核初始化和服务启动。掌握启动日志的查看与分析技巧,有助于故障排查、性能优化和安全审计。文章还涵盖了启动日志的基本概念、常见位置、查看工具及管理最佳实践,以提升系统维护效率。

Linux 启动日志(Startup Log)完全指南:从基础到高级实践

极客技术博客’s Blog 极客技术博客’s Blog · 2025-11-30T10:00:12Z
  • <<
  • <
  • 1 (current)
  • 2
  • 3
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
友情链接: MOGE.AI 九胧科技 1tok 菜鸟教程 Remio.AI DeekSeek连连 53AI 神龙海外代理IP IPIPGO全球代理IP 东波哥的博客 匡优考试在线考试系统 开源服务指南 蓝莺IM Solo 独立开发者社区 AI酷站导航 极客Fun 我爱水煮鱼 周报生成器 He3.app 简单简历 白鲸出海 T沙龙 职友集 TechParty 蟒周刊 Best AI Music Generator 模力方舟 Gitee AI

小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码