What's best for a supply chain tracker: distributed ledger vs lightweight?
#1
I’m trying to build a simple proof-of-concept for a supply chain tracker and I’ve hit a wall with getting different participants to trust the data without a central authority. Everyone suggests a distributed ledger, but the ones I’ve looked at seem either too slow for our required update frequency or way too complex to implement on the basic IoT sensors we’re using.
Reply
#2
I looked at a ledger style approach and it just wasn't practical for field updates. We kept an append only log on each site, every event signed with a hardware key, and we only publish the batch hash to a shared reference. It helped with tamper evidence but the flow still felt heavy for low-power sensors.
Reply
#3
We tried MQTT sensors and a central broker storing in a time series DB, with an extra layer that hashes batches and cross checks across participants. It helped a bit, but in practice the broker became a central trust point, and churn in the network still slowed things down.
Reply
#4
Is this really the bottleneck, or is data quality and timing the real problem? We keep dealing with jittery clocks, missing metadata, and inconsistent unit definitions, and that wrecks trust quicker than crypto stuff.
Reply
#5
We ran a 20-device test, signing every event and batching writes to the log. Before batching we were seeing about 1.8 seconds per update; after batching every 15 seconds the 95th percentile latency dropped to around 350 ms and almost all updates landed within half a second of generation. Still not instant, but it felt usable.
Reply
#6
For speed, I keep thinking about notary style anchoring—every so often we anchor a digest to a public log and let each participant keep their own local store. It’s not perfect but it avoids running a global ledger every moment.
Reply
#7
I guess we never got the full distributed trust thing working; we ended up with a simple tamper evident log and an audit dashboard. It’s rough, but it’s doable without a big platform.
Reply


[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Forum Jump: