Failed flush retries re-insert already-committed rows (duplicate usage events)
Chưa có ai nhận issue này.
Đánh giá
- Độ khó
- 5/5
- Thời gian dự kiến
- Hơn một tuần
- Mức phù hợp với người mới
- 35/100
Hướng nghiên cứu
Start by tracing ClickHouse::addBatch(), Accumulator::flush(), insert(), and generateId() to understand how chunk failures and retries affect buffered rows. Reproduce a mid-batch failure and a timeout-after-server-commit if the existing setup permits. Done means failed flush retries do not duplicate rows already committed to ClickHouse, including when a client timeout follows a successful insert.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Mô tả
Summary
When a flush fails partway through, the retry re-inserts rows that already landed in ClickHouse, producing duplicate rows (and over-counted usage). Three behaviors combine to cause this, observed on 0.14.0:
-
ClickHouse::addBatch()is chunked but all-or-nothing. It splits the batch into 1000-rowINSERTs and only returnstrueafter every chunk succeeds. If chunk N fails, chunks 1..N-1 are already committed server-side, but the caller sees a thrown exception. -
Accumulator::flush()retains the whole buffer on failure. Buffer entries are only cleared whenaddBatch()returnstrue, so after a mid-batch failure the next flush re-sends all entries — including the ones whose chunks already succeeded. -
Inserts are not idempotent.
insert()'s own comment says so: MergeTree has no row-level dedup, and each retry callsgenerateId()again, so re-sent rows get fresh ids and can't be deduplicated by block hash either.
There's a second path to the same outcome with no chunking involved: a client-side timeout on an insert that the server actually completed (we observed a burst of Operation timed out after 30s in production while the server was demonstrably healthy and ingesting). The retry then duplicates the full batch.
Observed in production
Appwrite Cloud stats-usage workers logging, e.g.:
ClickHouse insert failed: Operation timed out
[Operation: addBatch(), Table: projects_usage_events, Query: INSERT INTO projects_usage_events (1000 rows)]
ClickHouse insert failed: Connection reset by peer
[Operation: addBatch(), Table: projects_usage_events, Query: INSERT INTO projects_usage_events (890 rows)]
The 890 rows failure is a tail chunk — the preceding 1000-row chunks of that same addBatch() call had already been inserted, and were re-inserted on the next flush.
Suggested directions
- Make
Accumulator::flush()/addBatch()clear buffer entries per successful chunk rather than per call, so a tail-chunk failure doesn't re-send committed chunks; and/or - Make retries idempotent: deterministic row ids derived from the buffered entry (not
generateId()at encode time) plus stable insert blocks, so ClickHouse'sinsert_deduplicateblock-hash dedup can absorb replays (or aReplacingMergeTree/dedup-on-read scheme).
The timeout-after-server-commit case can only be fully solved by idempotency, not by smarter chunk bookkeeping.
- Ngôn ngữ chính
- PHP
- Star
- 0
- Fork
- 0
- Merge trung bình
- 1 ngày 22 giờ
- Pull request đã merge (30 ngày)
- 8
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Issue tương tự
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 68/100
getgrav/grav-plugin-api#45 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
RSS-Bridge/rss-bridge#5098 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 68/100
phingofficial/phing#2025 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 82/100
silverstripe/developer-docs#911 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 74/100