[][src]Struct nakadi_types::subscription::StreamParameters

pub struct StreamParameters {
    pub partitions: Vec<EventTypePartition>,
    pub max_uncommitted_events: Option<StreamMaxUncommittedEvents>,
    pub batch_limit: Option<StreamBatchLimit>,
    pub stream_limit: Option<StreamLimit>,
    pub batch_flush_timeout_secs: Option<StreamBatchFlushTimeoutSecs>,
    pub batch_timespan_secs: Option<StreamBatchTimespanSecs>,
    pub stream_timeout_secs: Option<StreamTimeoutSecs>,
    pub commit_timeout_secs: Option<StreamCommitTimeoutSecs>,
}

Parameters for starting a new stream on a subscription

See also Nakadi Manual

Environment

When initialized/updated from the environment the following environment variable are used which by are by default prefixed with "NAKADION_" or a custom prefix "_":

  • "STREAM_MAX_UNCOMMITTED_EVENTS"
  • "STREAM_BATCH_LIMIT"
  • "STREAM_LIMIT"
  • "STREAM_BATCH_FLUSH_TIMEOUT_SECS"
  • "STREAM_BATCH_TIMESPAN_SECS"
  • "STREAM_TIMEOUT_SECS"
  • "STREAM_COMMIT_TIMEOUT_SECS"

Fields

partitions: Vec<EventTypePartition>

List of partitions to read from in this stream. If absent or empty - then the partitions will be automatically assigned by Nakadi.

max_uncommitted_events: Option<StreamMaxUncommittedEvents>

The maximum number of uncommitted events that Nakadi will stream before pausing the stream. When in paused state and commit comes - the stream will resume.

batch_limit: Option<StreamBatchLimit>

Maximum number of Events in each chunk (and therefore per partition) of the stream.

stream_limit: Option<StreamLimit>

Maximum number of Events in this stream (over all partitions being streamed in this connection)

batch_flush_timeout_secs: Option<StreamBatchFlushTimeoutSecs>

Maximum time in seconds to wait for the flushing of each chunk (per partition).

batch_timespan_secs: Option<StreamBatchTimespanSecs>

Useful for batching events based on their received_at timestamp. For example, if batch_timespan is 5 seconds then Nakadi would flush a batch as soon as the difference in time between the first and the last event in the batch exceeds 5 seconds. It waits for an event outside of the window to signal the closure of a batch.

stream_timeout_secs: Option<StreamTimeoutSecs>

Maximum time in seconds a stream will live before connection is closed by the server.

If 0 or unspecified will stream for 1h ±10min.

commit_timeout_secs: Option<StreamCommitTimeoutSecs>

Maximum amount of seconds that Nakadi will be waiting for commit after sending a batch to a client. In case if commit does not come within this timeout, Nakadi will initialize stream termination, no new data will be sent. Partitions from this stream will be assigned to other streams. Setting commit_timeout to 0 is equal to setting it to the maximum allowed value - 60 seconds.

Implementations

impl StreamParameters[src]

pub fn from_env() -> Result<Self, Error>[src]

Initializes all fields from environment variables prefixed with "NAKADION_"

pub fn from_env_prefixed<T: AsRef<str>>(prefix: T) -> Result<Self, Error>[src]

Initializes all fields from environment variables prefixed with "[prefix]_"

The underscore is omitted if prefix is empty

pub fn from_env_type_names() -> Result<Self, Error>[src]

Initializes all fields from environment variables without any prefix

pub fn fill_from_env(&mut self) -> Result<(), Error>[src]

Updates all not yet set fields from environment variables prefixed with "NAKADION_"

pub fn fill_from_env_type_names(&mut self) -> Result<(), Error>[src]

Updates all not yet set fields from environment variables without any prefix

pub fn fill_from_env_prefixed<T: AsRef<str>>(
    &mut self,
    prefix: T
) -> Result<(), Error>
[src]

Updates all not yet set fields from environment variables prefixed with "[prefix]_"

The underscore is omitted if prefix is empty

pub fn apply_defaults(&mut self)[src]

pub fn partitions(self, partitions: Vec<EventTypePartition>) -> Self[src]

List of partitions to read from in this stream. If absent or empty - then the partitions will be automatically assigned by Nakadi.

pub fn max_uncommitted_events<T: Into<StreamMaxUncommittedEvents>>(
    self,
    value: T
) -> Self
[src]

The maximum number of uncommitted events that Nakadi will stream before pausing the stream.

When in paused state and commit comes - the stream will resume.

pub fn batch_limit<T: Into<StreamBatchLimit>>(self, value: T) -> Self[src]

Maximum number of Events in each chunk (and therefore per partition) of the stream.

pub fn stream_limit<T: Into<StreamLimit>>(self, value: T) -> Self[src]

Maximum number of Events in this stream (over all partitions being streamed in this connection)

pub fn batch_flush_timeout_secs<T: Into<StreamBatchFlushTimeoutSecs>>(
    self,
    value: T
) -> Self
[src]

Maximum time in seconds to wait for the flushing of each chunk (per partition).

pub fn batch_timespan_secs<T: Into<StreamBatchTimespanSecs>>(
    self,
    value: T
) -> Self
[src]

Useful for batching events based on their received_at timestamp.

For example, if batch_timespan is 5 seconds then Nakadi would flush a batch as soon as the difference in time between the first and the last event in the batch exceeds 5 seconds. It waits for an event outside of the window to signal the closure of a batch.

pub fn stream_timeout_secs<T: Into<StreamTimeoutSecs>>(self, value: T) -> Self[src]

Maximum time in seconds a stream will live before connection is closed by the server..

pub fn commit_timeout_secs<T: Into<StreamCommitTimeoutSecs>>(
    self,
    value: T
) -> Self
[src]

Maximum amount of seconds that Nakadi will be waiting for commit after sending a batch to a client.

In case if commit does not come within this timeout, Nakadi will initialize stream termination, no new data will be sent. Partitions from this stream will be assigned to other streams. Setting commit_timeout to 0 is equal to setting it to the maximum allowed value - 60 seconds.

pub fn effective_commit_timeout_secs(&self) -> u32[src]

Returns the configured value or the Nakadi default

pub fn effective_max_uncommitted_events(&self) -> u32[src]

Returns the configured value or the Nakadi default

pub fn effective_batch_limit(&self) -> u32[src]

Returns the configured value or the Nakadi default

Trait Implementations

impl Clone for StreamParameters[src]

impl Debug for StreamParameters[src]

impl Default for StreamParameters[src]

impl<'de> Deserialize<'de> for StreamParameters[src]

impl Serialize for StreamParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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