Interface ExecutorFactory
-
- All Superinterfaces:
org.apache.flink.table.factories.Factory
@Internal public interface ExecutorFactory extends org.apache.flink.table.factories.FactoryFactory that creates anExecutorfor submitting table programs.The factory is used with Java's Service Provider Interfaces (SPI) for discovering. See
Factoryfor more information.Usually, there should only be one executor factory in the class path. However, advanced users can implement a custom one for hooking into the submission process.
Important: In order to support DataStream APIs, implementations of this interface must also implement
StreamExecutorFactoryfrom theflink-table-api-bridge-basemodule.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_IDENTIFIER
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Executorcreate(org.apache.flink.configuration.Configuration configuration)Creates a correspondingExecutor.
-
-
-
Field Detail
-
DEFAULT_IDENTIFIER
static final String DEFAULT_IDENTIFIER
- See Also:
- Constant Field Values
-
-