Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
adaptive-accrual-failure-detector
Advanced tools
Failure detection for processes, connections and distributed systems
Failure detection for processes, connections and distributed systems. This is an implementation for JavaScript and TypeScript of a failure detector that uses an adaptive accrual algorithm. The theory of this detector is taken from the paper A New Adaptive Accrual Failure Detector for Dependable Distributed System authored by Benjamin Satzger, Andreas Pietzowski, Wolfang Trumler and Theo Ungerer.
This detector is useful for detecting things such as network failures between two nodes.
The failure detector is based on incoming heartbeats and has a few options that can be used when creating the detector:
sampleSize
- number of samples kept and used when calculating probability
of a failure. A higher number of samples means the probability calculation is
more stable but uses more memory. Default is 1000
.scalingFactor
- factor used to scale failure probabilities, used to reduce
overestimation of failure. Default is 0.9
.failureThreshold
- the probability needed to to detect something as a
failure. If the probability of failure is above this the thing being
monitored is considered failed. Default is 0.5
.// Using ES Module environment
import { FailureDetector } from 'adaptive-accrual-failure-detector';
const detector = new FailureDetector({
failureThreshold: 0.6
});
When you receive a heartbeat you should call registerHeartbeat
on the detector:
detector.registerHeartbeat();
To calculate if a failure has occurred you can call checkFailure()
or
calculateFailureProbability()
:
// Check failure, will return true if failed
const isFailed = detector.checkFailure();
// Calculate the probability of failure between 0 and 1
const failureProbability = detector.calculateFailureProbability();
FAQs
Failure detection for processes, connections and distributed systems
We found that adaptive-accrual-failure-detector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.