pub enum RuntimeConfig {
    Local(LocalConfig),
    Remote(RemoteConfig),
}
Expand description

The runtime configuration of the environment,

This configuration selects which runtime to use for this execution. The runtime is either local (i.e. parallelism is achieved only using threads), or remote (i.e. using both threads locally and remote workers).

In a remote execution the current binary is copied using scp to a remote host and then executed using ssh. The configuration of the remote environment should be specified via a TOML configuration file.

§Local environment

let config = RuntimeConfig::local(2).unwrap();
let env = StreamContext::new(config);

§Remote environment

let config = r#"
[[host]]
address = "host1"
base_port = 9500
num_cores = 16

[[host]]
address = "host2"
base_port = 9500
num_cores = 24
"#;
let mut file = File::create("config.toml").unwrap();
file.write_all(config.as_bytes());

let config = RuntimeConfig::remote("config.toml").expect("cannot read config file");
let env = StreamContext::new(config);

§From command line arguments

This reads from std::env::args() and reads the most common options (--local, --remote, --verbose). All the unparsed options will be returned into args. You can use --help to see their docs.

let (config, args) = RuntimeConfig::from_args();
let env = StreamContext::new(config);

Variants§

§

Local(LocalConfig)

Use only local threads.

§

Remote(RemoteConfig)

Use both local threads and remote workers.

Implementations§

source§

impl RuntimeConfig

source

pub fn from_args() -> (RuntimeConfig, Vec<String>)

Build the configuration from the specified args list.

source

pub fn local(parallelism: CoordUInt) -> Result<RuntimeConfig, ConfigError>

Local environment that avoid using the network and runs concurrently using only threads.

source

pub fn remote<P: AsRef<Path>>( toml_path: P ) -> Result<RuntimeConfig, ConfigError>

Remote environment based on the provided configuration file.

The behaviour of this changes if this process is the “runner” process (ie the one that will execute via ssh the other workers) or a worker process. If it’s the runner, the configuration file is read. If it’s a worker, the configuration is read directly from the environment variable and not from the file (remote hosts may not have the configuration file).

source

pub fn spawn_remote_workers(&self)

Spawn the remote workers via SSH and exit if this is the process that should spawn. If this is already a spawned process nothing is done.

source

pub fn host_id(&self) -> Option<CoordUInt>

Trait Implementations§

source§

impl Clone for RuntimeConfig

source§

fn clone(&self) -> RuntimeConfig

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 Debug for RuntimeConfig

source§

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

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

impl Default for RuntimeConfig

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl PartialEq for RuntimeConfig

source§

fn eq(&self, other: &RuntimeConfig) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for RuntimeConfig

source§

impl StructuralPartialEq for RuntimeConfig

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

impl<T> CloneDebuggableStorage for T
where T: DebuggableStorage + Clone,

§

fn clone_storage(&self) -> Box<dyn CloneDebuggableStorage>

§

impl<T> CloneableStorage for T
where T: Any + Send + Sync + Clone,

§

fn clone_storage(&self) -> Box<dyn CloneableStorage>

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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>,

§

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.
§

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> Data for T
where T: Clone + Send + 'static,

§

impl<T> DebuggableStorage for T
where T: Any + Send + Sync + Debug,