Struct ProbabilisticScorer
pub struct ProbabilisticScorer<G, L>{ /* private fields */ }Expand description
ScoreLookUp implementation using channel success probability distributions.
Channels are tracked with upper and lower liquidity bounds - when an HTLC fails at a channel, we learn that the upper-bound on the available liquidity is lower than the amount of the HTLC. When a payment is forwarded through a channel (but fails later in the route), we learn the lower-bound on the channel’s available liquidity must be at least the value of the HTLC.
These bounds are then used to determine a success probability using the formula from
Optimally Reliable & Cheap Payment Flows on the Lightning Network by Rene Pickhardt
and Stefan Richter [1] (i.e. (upper_bound - payment_amount) / (upper_bound - lower_bound)).
This probability is combined with the liquidity_penalty_multiplier_msat and
liquidity_penalty_amount_multiplier_msat parameters to calculate a concrete penalty in
milli-satoshis. The penalties, when added across all hops, have the property of being linear in
terms of the entire path’s success probability. This allows the router to directly compare
penalties for different paths. See the documentation of those parameters for the exact formulas.
The liquidity bounds are decayed by halving them every liquidity_offset_half_life.
Further, we track the history of our upper and lower liquidity bounds for each channel,
allowing us to assign a second penalty (using historical_liquidity_penalty_multiplier_msat
and historical_liquidity_penalty_amount_multiplier_msat) based on the same probability
formula, but using the history of a channel rather than our latest estimates for the liquidity
bounds.
Implementations§
§impl<G, L> ProbabilisticScorer<G, L>
impl<G, L> ProbabilisticScorer<G, L>
pub fn new(
decay_params: ProbabilisticScoringDecayParameters,
network_graph: G,
logger: L,
) -> ProbabilisticScorer<G, L>
pub fn new( decay_params: ProbabilisticScoringDecayParameters, network_graph: G, logger: L, ) -> ProbabilisticScorer<G, L>
Creates a new scorer using the given scoring parameters for sending payments from a node through a network graph.
pub fn debug_log_liquidity_stats(&self)
pub fn debug_log_liquidity_stats(&self)
Dump the contents of this scorer into the configured logger.
Note that this writes roughly one line per channel for which we have a liquidity estimate, which may be a substantial amount of log output.
pub fn estimated_channel_liquidity_range(
&self,
scid: u64,
target: &NodeId,
) -> Option<(u64, u64)>
pub fn estimated_channel_liquidity_range( &self, scid: u64, target: &NodeId, ) -> Option<(u64, u64)>
Query the estimated minimum and maximum liquidity available for sending a payment over the
channel with scid towards the given target node.
pub fn historical_estimated_channel_liquidity_probabilities(
&self,
scid: u64,
target: &NodeId,
) -> Option<([u16; 32], [u16; 32])>
pub fn historical_estimated_channel_liquidity_probabilities( &self, scid: u64, target: &NodeId, ) -> Option<([u16; 32], [u16; 32])>
Query the historical estimated minimum and maximum liquidity available for sending a
payment over the channel with scid towards the given target node.
Returns two sets of 32 buckets. The first set describes the lower-bound liquidity history, the second set describes the upper-bound liquidity history. Each bucket describes the relative frequency at which we’ve seen a liquidity bound in the bucket’s range relative to the channel’s total capacity, on an arbitrary scale. Because the values are slowly decayed, more recent data points are weighted more heavily than older datapoints.
Note that the range of each bucket varies by its location to provide more granular results at the edges of a channel’s capacity, where it is more likely to sit.
When scoring, the estimated probability that an upper-/lower-bound lies in a given bucket is calculated by dividing that bucket’s value with the total value of all buckets.
For example, using a lower bucket count for illustrative purposes, a value of
[0, 0, 0, ..., 0, 32] indicates that we believe the probability of a bound being very
close to the channel’s capacity to be 100%, and have never (recently) seen it in any other
bucket. A value of [31, 0, 0, ..., 0, 0, 32] indicates we’ve seen the bound being both
in the top and bottom bucket, and roughly with similar (recent) frequency.
Because the datapoints are decayed slowly over time, values will eventually return to
Some(([0; 32], [0; 32])) or None if no data remains for a channel.
In order to fetch a single success probability from the buckets provided here, as used in
the scoring model, see Self::historical_estimated_payment_success_probability.
pub fn historical_estimated_payment_success_probability(
&self,
scid: u64,
target: &NodeId,
amount_msat: u64,
params: &ProbabilisticScoringFeeParameters,
) -> Option<f64>
pub fn historical_estimated_payment_success_probability( &self, scid: u64, target: &NodeId, amount_msat: u64, params: &ProbabilisticScoringFeeParameters, ) -> Option<f64>
Query the probability of payment success sending the given amount_msat over the channel
with scid towards the given target node, based on the historical estimated liquidity
bounds.
These are the same bounds as returned by
Self::historical_estimated_channel_liquidity_probabilities (but not those returned by
Self::estimated_channel_liquidity_range).
Trait Implementations§
§impl<G, L> ReadableArgs<(ProbabilisticScoringDecayParameters, G, L)> for ProbabilisticScorer<G, L>
impl<G, L> ReadableArgs<(ProbabilisticScoringDecayParameters, G, L)> for ProbabilisticScorer<G, L>
§fn read<R>(
r: &mut R,
args: (ProbabilisticScoringDecayParameters, G, L),
) -> Result<ProbabilisticScorer<G, L>, DecodeError>where
R: Read,
fn read<R>(
r: &mut R,
args: (ProbabilisticScoringDecayParameters, G, L),
) -> Result<ProbabilisticScorer<G, L>, DecodeError>where
R: Read,
Self in from the given Read.§impl<G, L> ScoreLookUp for ProbabilisticScorer<G, L>
impl<G, L> ScoreLookUp for ProbabilisticScorer<G, L>
§type ScoreParams = ProbabilisticScoringFeeParameters
type ScoreParams = ProbabilisticScoringFeeParameters
§fn channel_penalty_msat(
&self,
candidate: &CandidateRouteHop<'_>,
usage: ChannelUsage,
score_params: &ProbabilisticScoringFeeParameters,
) -> u64
fn channel_penalty_msat( &self, candidate: &CandidateRouteHop<'_>, usage: ChannelUsage, score_params: &ProbabilisticScoringFeeParameters, ) -> u64
send_amt_msat through the
given channel in the direction from source to target. Read more§impl<G, L> ScoreUpdate for ProbabilisticScorer<G, L>
impl<G, L> ScoreUpdate for ProbabilisticScorer<G, L>
§fn payment_path_failed(
&mut self,
path: &Path,
short_channel_id: u64,
duration_since_epoch: Duration,
)
fn payment_path_failed( &mut self, path: &Path, short_channel_id: u64, duration_since_epoch: Duration, )
§fn payment_path_successful(
&mut self,
path: &Path,
duration_since_epoch: Duration,
)
fn payment_path_successful( &mut self, path: &Path, duration_since_epoch: Duration, )
§fn probe_failed(
&mut self,
path: &Path,
short_channel_id: u64,
duration_since_epoch: Duration,
)
fn probe_failed( &mut self, path: &Path, short_channel_id: u64, duration_since_epoch: Duration, )
§fn probe_successful(&mut self, path: &Path, duration_since_epoch: Duration)
fn probe_successful(&mut self, path: &Path, duration_since_epoch: Duration)
§fn time_passed(&mut self, duration_since_epoch: Duration)
fn time_passed(&mut self, duration_since_epoch: Duration)
lightning-background-processor crate).§impl<G, L> Writeable for ProbabilisticScorer<G, L>
impl<G, L> Writeable for ProbabilisticScorer<G, L>
Auto Trait Implementations§
impl<G, L> Freeze for ProbabilisticScorer<G, L>
impl<G, L> RefUnwindSafe for ProbabilisticScorer<G, L>where
G: RefUnwindSafe,
L: RefUnwindSafe,
impl<G, L> Send for ProbabilisticScorer<G, L>
impl<G, L> Sync for ProbabilisticScorer<G, L>
impl<G, L> Unpin for ProbabilisticScorer<G, L>
impl<G, L> UnwindSafe for ProbabilisticScorer<G, L>where
G: UnwindSafe,
L: UnwindSafe,
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Any.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request