Tabnine Logo
StreamExecutionEnvironment.isChainingEnabled
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: apache/flink

/**
 * Private constructor. The generator should only be invoked using {@link #generate}.
 */
private StreamGraphGenerator(StreamExecutionEnvironment env) {
  this.streamGraph = new StreamGraph(env);
  this.streamGraph.setChaining(env.isChainingEnabled());
  this.streamGraph.setStateBackend(env.getStateBackend());
  this.env = env;
  this.alreadyTransformed = new HashMap<>();
}
origin: org.apache.flink/flink-streaming-java

/**
 * Private constructor. The generator should only be invoked using {@link #generate}.
 */
private StreamGraphGenerator(StreamExecutionEnvironment env) {
  this.streamGraph = new StreamGraph(env);
  this.streamGraph.setChaining(env.isChainingEnabled());
  this.streamGraph.setStateBackend(env.getStateBackend());
  this.env = env;
  this.alreadyTransformed = new HashMap<>();
}
origin: org.apache.flink/flink-streaming-java_2.10

/**
 * Private constructor. The generator should only be invoked using {@link #generate}.
 */
private StreamGraphGenerator(StreamExecutionEnvironment env) {
  this.streamGraph = new StreamGraph(env);
  this.streamGraph.setChaining(env.isChainingEnabled());
  this.streamGraph.setStateBackend(env.getStateBackend());
  this.env = env;
  this.alreadyTransformed = new HashMap<>();
}
origin: org.apache.flink/flink-streaming-java_2.11

/**
 * Private constructor. The generator should only be invoked using {@link #generate}.
 */
private StreamGraphGenerator(StreamExecutionEnvironment env) {
  this.streamGraph = new StreamGraph(env);
  this.streamGraph.setChaining(env.isChainingEnabled());
  this.streamGraph.setStateBackend(env.getStateBackend());
  this.env = env;
  this.alreadyTransformed = new HashMap<>();
}
org.apache.flink.streaming.api.environmentStreamExecutionEnvironmentisChainingEnabled

Javadoc

Returns whether operator chaining is enabled.

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

  • Updating database using SQL prepared statement
  • compareTo (BigDecimal)
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top PhpStorm 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