congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
StreamExecutionEnvironment.getBufferTimeout
Code IndexAdd Tabnine to your IDE (free)

How to use
getBufferTimeout
method
in
org.apache.flink.streaming.api.environment.StreamExecutionEnvironment

Best Java code snippets using org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.getBufferTimeout (Showing top 8 results out of 315)

origin: apache/flink

public Long getBufferTimeout() {
  return bufferTimeout != null ? bufferTimeout : env.getBufferTimeout();
}
origin: apache/flink

protected IterativeStream(DataStream<T> dataStream, long maxWaitTime) {
  super(dataStream.getExecutionEnvironment(),
      new FeedbackTransformation<>(dataStream.getTransformation(), maxWaitTime));
  this.originalInput = dataStream;
  this.maxWaitTime = maxWaitTime;
  setBufferTimeout(dataStream.environment.getBufferTimeout());
}
origin: org.apache.flink/flink-streaming-java_2.11

public Long getBufferTimeout() {
  return bufferTimeout != null ? bufferTimeout : env.getBufferTimeout();
}
origin: org.apache.flink/flink-streaming-java_2.10

public Long getBufferTimeout() {
  return bufferTimeout != null ? bufferTimeout : env.getBufferTimeout();
}
origin: org.apache.flink/flink-streaming-java

public Long getBufferTimeout() {
  return bufferTimeout != null ? bufferTimeout : env.getBufferTimeout();
}
origin: org.apache.flink/flink-streaming-java_2.11

protected IterativeStream(DataStream<T> dataStream, long maxWaitTime) {
  super(dataStream.getExecutionEnvironment(),
      new FeedbackTransformation<>(dataStream.getTransformation(), maxWaitTime));
  this.originalInput = dataStream;
  this.maxWaitTime = maxWaitTime;
  setBufferTimeout(dataStream.environment.getBufferTimeout());
}
origin: org.apache.flink/flink-streaming-java_2.10

protected IterativeStream(DataStream<T> dataStream, long maxWaitTime) {
  super(dataStream.getExecutionEnvironment(),
      new FeedbackTransformation<>(dataStream.getTransformation(), maxWaitTime));
  this.originalInput = dataStream;
  this.maxWaitTime = maxWaitTime;
  setBufferTimeout(dataStream.environment.getBufferTimeout());
}
origin: org.apache.flink/flink-streaming-java

protected IterativeStream(DataStream<T> dataStream, long maxWaitTime) {
  super(dataStream.getExecutionEnvironment(),
      new FeedbackTransformation<>(dataStream.getTransformation(), maxWaitTime));
  this.originalInput = dataStream;
  this.maxWaitTime = maxWaitTime;
  setBufferTimeout(dataStream.environment.getBufferTimeout());
}
org.apache.flink.streaming.api.environmentStreamExecutionEnvironmentgetBufferTimeout

Javadoc

Gets the maximum time frequency (milliseconds) for the flushing of the output buffers. For clarification on the extremal values see #setBufferTimeout(long).

Popular methods of StreamExecutionEnvironment

  • execute
  • getExecutionEnvironment
    Creates an execution environment that represents the context in which the program is currently execu
  • addSource
    Ads a data source with a custom type information thus opening a DataStream. Only in very special cas
  • getConfig
    Gets the config object.
  • enableCheckpointing
    Enables checkpointing for the streaming job. The distributed state of the streaming dataflow will be
  • setStreamTimeCharacteristic
    Sets the time characteristic for all streams create from this environment, e.g., processing time, ev
  • setParallelism
    Sets the parallelism for operations executed through this environment. Setting a parallelism of x he
  • fromElements
    Creates a new data stream that contains the given elements. The elements must all be of the same typ
  • setStateBackend
    Sets the state backend that describes how to store and checkpoint operator state. It defines both wh
  • createLocalEnvironment
    Creates a LocalStreamEnvironment. The local execution environment will run the program in a multi-th
  • fromCollection
    Creates a data stream from the given iterator.Because the iterator will remain unmodified until the
  • getCheckpointConfig
    Gets the checkpoint config, which defines values like checkpoint interval, delay between checkpoints
  • fromCollection,
  • getCheckpointConfig,
  • getParallelism,
  • getStreamGraph,
  • setRestartStrategy,
  • socketTextStream,
  • readTextFile,
  • generateSequence,
  • clean,
  • getStreamTimeCharacteristic

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • compareTo (BigDecimal)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now