Commit 9fc4d5e8 authored by jan.koester's avatar jan.koester
Browse files

test

parent e4191499
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
libparitypp (20260405+23) unstable; urgency=medium

  * Increase STRIPE_SIZE from 16KB to 4MB to reduce roundtrips per store
    (e.g. 188MB: 11490 stripes -> 46 stripes)

 -- Jan Koester <jan.koester@tuxist.de>  Sun, 05 Apr 2026 00:00:00 +0000

libparitypp (20260405+22) unstable; urgency=medium

  * Add diagnostic stderr logging to client::store and store_stripe for
+2 −2
Original line number Diff line number Diff line
@@ -27,8 +27,8 @@ public:
    virtual std::string error_message() const { return {}; }
};

// Fixed stripe size for chunk-level parity encoding (16 KB)
static constexpr size_t STRIPE_SIZE = 16384;
// Fixed stripe size for chunk-level parity encoding (4 MB)
static constexpr size_t STRIPE_SIZE = 4096 * 1024;

// QUIC client for distributing parity-encoded blocks across storage nodes
class client {