https://gitlab.com/tezos/tezos
Raw File
Tip revision: 95ca935d0664bc90c4c98df308c929e5e8fe4470 authored by Diana Savatina on 21 March 2024, 11:13:46 UTC
profiler: print out with time slots visualization
Tip revision: 95ca935
constants.mli
(*****************************************************************************)
(*                                                                           *)
(* Open Source License                                                       *)
(* Copyright (c) 2022 Nomadic Labs, <contact@nomadic-labs.com>               *)
(*                                                                           *)
(* Permission is hereby granted, free of charge, to any person obtaining a   *)
(* copy of this software and associated documentation files (the "Software"),*)
(* to deal in the Software without restriction, including without limitation *)
(* the rights to use, copy, modify, merge, publish, distribute, sublicense,  *)
(* and/or sell copies of the Software, and to permit persons to whom the     *)
(* Software is furnished to do so, subject to the following conditions:      *)
(*                                                                           *)
(* The above copyright notice and this permission notice shall be included   *)
(* in all copies or substantial portions of the Software.                    *)
(*                                                                           *)
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  *)
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL   *)
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING   *)
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER       *)
(* DEALINGS IN THE SOFTWARE.                                                 *)
(*                                                                           *)
(*****************************************************************************)

(** [shards_store_lru_size] is the maximum shards store LRU size. See
    {!Key_value_store.init} and {!Store.Shards.init}.
*)
val shards_store_lru_size : int

(** [committee_cache_size] is the size of the DAL committee cache. *)
val committee_cache_size : int

(** [shards_proofs_cache_size] is the size of the cache for shards proofs per slot. *)
val shards_proofs_cache_size : int

(** The frequency at which we sample the time spent in shards crypto
    verification. *)
val shards_verification_sampling_frequency : int

(** When receiving shards from the network, the DAL node does not
    perform the amplification as soon as it has enough shards to do
    the reconstruction but waits a bit in case the missing shards are
    received from the network. The duration of the delay is picked at
    random between [amplification_random_delay_min] and
    [amplification_random_delay_max]. *)

val amplification_random_delay_min : float

val amplification_random_delay_max : float
back to top