Struct ServeCommandConfiguration

Source
pub struct ServeCommandConfiguration {
Show 42 fields pub environment: ExecutionEnvironment, pub cardano_cli_path: PathBuf, pub cardano_node_socket_path: PathBuf, pub cardano_node_version: String, pub network_magic: Option<u64>, pub network: String, pub chain_observer_type: ChainObserverType, pub protocol_parameters: ProtocolParameters, pub snapshot_uploader_type: SnapshotUploaderType, pub snapshot_bucket_name: Option<String>, pub snapshot_use_cdn_domain: bool, pub server_ip: String, pub server_port: u16, pub public_server_url: Option<String>, pub run_interval: u64, pub db_directory: PathBuf, pub snapshot_directory: PathBuf, pub data_stores_directory: PathBuf, pub genesis_verification_key: HexEncodedGenesisVerificationKey, pub reset_digests_cache: bool, pub disable_digests_cache: bool, pub store_retention_limit: Option<usize>, pub era_reader_adapter_type: EraReaderAdapterType, pub era_reader_adapter_params: Option<String>, pub ancillary_files_signer_config: AncillaryFilesSignerConfig, pub signed_entity_types: Option<String>, pub snapshot_compression_algorithm: CompressionAlgorithm, pub zstandard_parameters: Option<ZstandardCompressionParameters>, pub cexplorer_pools_url: Option<String>, pub signer_importer_run_interval: u64, pub allow_unparsable_block: bool, pub cardano_transactions_prover_cache_pool_size: usize, pub cardano_transactions_database_connection_pool_size: usize, pub cardano_transactions_signing_config: CardanoTransactionsSigningConfig, pub cardano_transactions_prover_max_hashes_allowed_by_request: usize, pub cardano_transactions_block_streamer_max_roll_forwards_per_poll: usize, pub enable_metrics_server: bool, pub metrics_server_ip: String, pub metrics_server_port: u16, pub persist_usage_report_interval_in_seconds: u64, pub leader_aggregator_endpoint: Option<String>, pub custom_origin_tag_white_list: Option<String>,
}
Expand description

Serve command configuration

Fields§

§environment: ExecutionEnvironment

What kind of runtime environment the configuration is meant to.

§cardano_cli_path: PathBuf

Cardano CLI tool path

§cardano_node_socket_path: PathBuf

Path of the socket used by the Cardano CLI tool to communicate with the Cardano node

§cardano_node_version: String

Cardano node version.

NOTE: This cannot be verified for now (see this issue). This is why it has to be manually given to the Aggregator

§network_magic: Option<u64>

Cardano Network Magic number

useful for TestNet & DevNet

§network: String

Cardano network

§chain_observer_type: ChainObserverType

Cardano chain observer type

§protocol_parameters: ProtocolParameters

Protocol parameters

§snapshot_uploader_type: SnapshotUploaderType

Type of snapshot uploader to use

§snapshot_bucket_name: Option<String>

Bucket name where the snapshots are stored if snapshot_uploader_type is Gcp

§snapshot_use_cdn_domain: bool

Use CDN domain to construct snapshot urls if snapshot_uploader_type is Gcp

§server_ip: String

Server listening IP

§server_port: u16

Server listening port

§public_server_url: Option<String>

Server URL that can be accessed from the outside

§run_interval: u64

Run Interval is the interval between two runtime cycles in ms

§db_directory: PathBuf

Directory of the Cardano node store.

§snapshot_directory: PathBuf

Directory to store snapshot

§data_stores_directory: PathBuf

Directory to store aggregator databases

§genesis_verification_key: HexEncodedGenesisVerificationKey

Genesis verification key

§reset_digests_cache: bool

Should the immutable cache be reset or not

§disable_digests_cache: bool

Use the digest caching strategy

§store_retention_limit: Option<usize>

Max number of records in stores. When new records are added, oldest records are automatically deleted so there can always be at max the number of records specified by this setting.

§era_reader_adapter_type: EraReaderAdapterType

Era reader adapter type

§era_reader_adapter_params: Option<String>

Era reader adapter parameters

§ancillary_files_signer_config: AncillaryFilesSignerConfig

Configuration of the ancillary files signer

Can either be a secret key or a key stored in a Google Cloud Platform KMS account.

IMPORTANT: The cryptographic scheme used is ED25519

§signed_entity_types: Option<String>

Signed entity types parameters (discriminants names in an ordered, case-sensitive, comma separated list).

The values MithrilStakeDistribution and CardanoImmutableFilesFull are prepended automatically to the list.

§snapshot_compression_algorithm: CompressionAlgorithm

Compression algorithm used for the snapshot archive artifacts.

§zstandard_parameters: Option<ZstandardCompressionParameters>

Specific parameters when snapshot_compression_algorithm is set to zstandard.

§cexplorer_pools_url: Option<String>

Url to CExplorer list of pools to import as signer in the database.

§signer_importer_run_interval: u64

Time interval at which the signers in Self::cexplorer_pools_url will be imported (in minutes).

§allow_unparsable_block: bool

If set no error is returned in case of unparsable block and an error log is written instead.

Will be ignored on (pre)production networks.

§cardano_transactions_prover_cache_pool_size: usize

Cardano transactions prover cache pool size

§cardano_transactions_database_connection_pool_size: usize

Cardano transactions database connection pool size

§cardano_transactions_signing_config: CardanoTransactionsSigningConfig

Cardano transactions signing configuration

§cardano_transactions_prover_max_hashes_allowed_by_request: usize

Maximum number of transactions hashes allowed by request to the prover of the Cardano transactions

§cardano_transactions_block_streamer_max_roll_forwards_per_poll: usize

The maximum number of roll forwards during a poll of the block streamer when importing transactions.

§enable_metrics_server: bool

Enable metrics server (Prometheus endpoint on /metrics).

§metrics_server_ip: String

Metrics HTTP Server IP.

§metrics_server_port: u16

Metrics HTTP Server listening port.

§persist_usage_report_interval_in_seconds: u64

Time interval at which usage metrics are persisted in event database (in seconds).

§leader_aggregator_endpoint: Option<String>

This is the endpoint of the aggregator that will be used to fetch the latest epoch settings and store the signer registrations when the aggregator is running in a follower mode. If this is not set, the aggregator will run in a leader mode.

§custom_origin_tag_white_list: Option<String>

Custom origin tag of client request added to the whitelist (comma separated list).

Implementations§

Source§

impl ServeCommandConfiguration

Source

pub fn new_sample(tmp_path: PathBuf) -> Self

Create a sample configuration mainly for tests

Source

pub fn get_local_server_url(&self) -> StdResult<SanitizedUrlWithTrailingSlash>

Build the local server URL from configuration.

Trait Implementations§

Source§

impl Clone for ServeCommandConfiguration

Source§

fn clone(&self) -> ServeCommandConfiguration

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl ConfigurationSource for ServeCommandConfiguration

Source§

fn environment(&self) -> ExecutionEnvironment

What kind of runtime environment the configuration is meant to.
Source§

fn cardano_cli_path(&self) -> PathBuf

Cardano CLI tool path
Source§

fn cardano_node_socket_path(&self) -> PathBuf

Path of the socket used by the Cardano CLI tool to communicate with the Cardano node
Source§

fn cardano_node_version(&self) -> String

Cardano node version. Read more
Source§

fn network_magic(&self) -> Option<u64>

Cardano Network Magic number Read more
Source§

fn network(&self) -> String

Cardano network
Source§

fn chain_observer_type(&self) -> ChainObserverType

Cardano chain observer type
Source§

fn protocol_parameters(&self) -> ProtocolParameters

Protocol parameters
Source§

fn snapshot_uploader_type(&self) -> SnapshotUploaderType

Type of snapshot uploader to use
Source§

fn snapshot_bucket_name(&self) -> Option<String>

Bucket name where the snapshots are stored if snapshot_uploader_type is Gcp
Source§

fn snapshot_use_cdn_domain(&self) -> bool

Use CDN domain to construct snapshot urls if snapshot_uploader_type is Gcp
Source§

fn server_ip(&self) -> String

Server listening IP
Source§

fn server_port(&self) -> u16

Server listening port
Source§

fn public_server_url(&self) -> Option<String>

Server URL that can be accessed from the outside
Source§

fn run_interval(&self) -> u64

Run Interval is the interval between two runtime cycles in ms
Source§

fn db_directory(&self) -> PathBuf

Directory of the Cardano node store.
Source§

fn snapshot_directory(&self) -> PathBuf

Directory to store snapshot
Source§

fn data_stores_directory(&self) -> PathBuf

Directory to store aggregator databases
Source§

fn genesis_verification_key(&self) -> HexEncodedGenesisVerificationKey

Genesis verification key
Source§

fn reset_digests_cache(&self) -> bool

Should the immutable cache be reset or not
Source§

fn disable_digests_cache(&self) -> bool

Use the digest caching strategy
Source§

fn store_retention_limit(&self) -> Option<usize>

Max number of records in stores. When new records are added, oldest records are automatically deleted so there can always be at max the number of records specified by this setting.
Source§

fn era_reader_adapter_type(&self) -> EraReaderAdapterType

Era reader adapter type
Source§

fn era_reader_adapter_params(&self) -> Option<String>

Era reader adapter parameters
Source§

fn ancillary_files_signer_config(&self) -> AncillaryFilesSignerConfig

Configuration of the ancillary files signer Read more
Source§

fn signed_entity_types(&self) -> Option<String>

Signed entity types parameters (discriminants names in an ordered, case-sensitive, comma separated list). Read more
Source§

fn snapshot_compression_algorithm(&self) -> CompressionAlgorithm

Compression algorithm used for the snapshot archive artifacts.
Source§

fn zstandard_parameters(&self) -> Option<ZstandardCompressionParameters>

Specific parameters when CompressionAlgorithm is set to zstandard.
Source§

fn cexplorer_pools_url(&self) -> Option<String>

Url to CExplorer list of pools to import as signer in the database.
Source§

fn signer_importer_run_interval(&self) -> u64

Time interval at which the signers in cexplorer_pools_url will be imported (in minutes).
Source§

fn allow_unparsable_block(&self) -> bool

If set no error is returned in case of unparsable block and an error log is written instead. Read more
Source§

fn cardano_transactions_prover_cache_pool_size(&self) -> usize

Cardano transactions prover cache pool size
Source§

fn cardano_transactions_database_connection_pool_size(&self) -> usize

Cardano transactions database connection pool size
Source§

fn cardano_transactions_signing_config( &self, ) -> CardanoTransactionsSigningConfig

Cardano transactions signing configuration
Source§

fn cardano_transactions_prover_max_hashes_allowed_by_request(&self) -> usize

Maximum number of transactions hashes allowed by request to the prover of the Cardano transactions
Source§

fn cardano_transactions_block_streamer_max_roll_forwards_per_poll( &self, ) -> usize

The maximum number of roll forwards during a poll of the block streamer when importing transactions.
Source§

fn enable_metrics_server(&self) -> bool

Enable metrics server (Prometheus endpoint on /metrics).
Source§

fn metrics_server_ip(&self) -> String

Metrics HTTP Server IP.
Source§

fn metrics_server_port(&self) -> u16

Metrics HTTP Server listening port.
Source§

fn persist_usage_report_interval_in_seconds(&self) -> u64

Time interval at which usage metrics are persisted in event database (in seconds).
Source§

fn leader_aggregator_endpoint(&self) -> Option<String>

Leader aggregator endpoint Read more
Source§

fn custom_origin_tag_white_list(&self) -> Option<String>

Custom origin tag of client request added to the whitelist (comma separated list).
Source§

fn get_server_url(&self) -> StdResult<SanitizedUrlWithTrailingSlash>

Get the server URL.
Source§

fn get_network(&self) -> StdResult<CardanoNetwork>

Get a representation of the Cardano network.
Source§

fn get_sqlite_dir(&self) -> PathBuf

Get the directory of the SQLite stores.
Source§

fn get_snapshot_dir(&self) -> StdResult<PathBuf>

Get the snapshots directory.
Source§

fn safe_epoch_retention_limit(&self) -> Option<u64>

Get the safe epoch retention limit.
Source§

fn compute_allowed_signed_entity_types_discriminants( &self, ) -> StdResult<BTreeSet<SignedEntityTypeDiscriminants>>

Compute the list of signed entity discriminants that are allowed to be processed.
Source§

fn allow_http_serve_directory(&self) -> bool

Check if the HTTP server can serve static directories.
Source§

fn get_epoch_settings_configuration(&self) -> AggregatorEpochSettings

Infer the AggregatorEpochSettings from the configuration.
Source§

fn is_follower_aggregator(&self) -> bool

Check if the aggregator is running in follower mode.
Source§

fn compute_origin_tag_white_list(&self) -> HashSet<String>

White list for origin client request.
Source§

impl Debug for ServeCommandConfiguration

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ServeCommandConfiguration

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Documenter for ServeCommandConfiguration

Source§

fn extract() -> StructDoc

Extract information used to generate documentation.
Source§

impl Serialize for ServeCommandConfiguration

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
§

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in [Layered].
Source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

Source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
Source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

Source§

fn lossy_into(self) -> Dst

Performs the conversion.
Source§

impl<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,