RuntimeConfig

Enum RuntimeConfig 

Source
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 YAML configuration file.

§Local environment

let config = RuntimeConfig::local(1);
let env = StreamContext::new(config);

§Remote environment

let config = r"
hosts:
  - address: host1
    base_port: 9500
    num_cores: 16
  - address: host2
    base_port: 9500
    num_cores: 24
";
let mut file = File::create("config.yaml").unwrap();
file.write_all(config.as_bytes());

let config = RuntimeConfig::remote("config.yaml").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(num_cores: CoordUInt) -> RuntimeConfig

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

Source

pub fn remote<P: AsRef<Path>>(config: P) -> Result<RuntimeConfig>

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 duplicate 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 PartialEq for RuntimeConfig

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl<T> CloneDebuggableStorage for T

Source§

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

Source§

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

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

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

Source§

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

Source§

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

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

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

Source§

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

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

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

Source§

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

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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

impl<T> Same for T

Source§

type Output = T

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

Source§

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