Class EtlExecutor
- All Implemented Interfaces:
Runnable,Callable<ExecutionStatistics>
- Direct Known Subclasses:
EtlExecutorBean
The simplest way to run a file is:
EtlExecutor executor = EtlExecutor.newExecutor(new File("etl.xml"));
ExecutionStatistics statistics = executor.execute();
newExecutor(File) and newExecutor(URL) use the current
system properties as external ETL
parameters. To supply parameters explicitly, use
newExecutor(URL, Map). External parameters take precedence over
properties declared in the ETL file.
For more control, use ConfigurationFactory to parse the ETL file,
then pass the resulting ConfigurationEl to
EtlExecutor(ConfigurationEl).
ETL Cancellation
Scriptella uses the standard Java Thread.interrupt() mechanism.
Interrupt the thread that is running execute(); the engine then
attempts to roll back changes made during the ETL operation. A cancellation
is reported as an EtlExecutorException for which
EtlExecutorException.isCancelled() returns true.
ExecutorService and
Future can also be used to submit and cancel an
execution.
Integration with third-party systems
For convenience, EtlExecutor implements Runnable and
Callable. Use call() when execution statistics or the checked
EtlExecutorException are needed. run() discards the statistics
and wraps execution failures in a SystemException.
- Version:
- 1.0
- Author:
- Fyodor Kupolov
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an ETL executor without a configuration.EtlExecutor(ConfigurationEl configuration) Creates an ETL executor for specified configuration file. -
Method Summary
Modifier and TypeMethodDescriptioncall()execute()Executes ETL based on a specified configuration.execute(ProgressIndicator indicator) Executes ETL based on a specified configuration.Returns ETL configuration for this executor.booleanReturns true if monitoring/management via JMX is enabled.booleanGetter forsuppressStatisticsproperty.static EtlExecutornewExecutor(File scriptFile) Converts file to URL and invokesnewExecutor(java.net.URL).static EtlExecutornewExecutor(URL scriptFileUrl) Creates an ETL executor for the specified script URL.static EtlExecutornewExecutor(URL scriptFileUrl, Map<String, ?> externalProperties) Creates an ETL executor for the specified script URL and external parameters.protected EtlContextprepare(ProgressIndicator indicator) Prepares the scripts context.voidrun()voidsetConfiguration(ConfigurationEl configuration) Sets ETL configuration.voidsetJmxEnabled(boolean jmxEnabled) Enables or disables ETL monitoring/management via JMX.voidsetSuppressStatistics(boolean suppressStatistics) Enables or disables collecting of statistics.
-
Constructor Details
-
EtlExecutor
public EtlExecutor()Creates an ETL executor without a configuration. CallsetConfiguration(ConfigurationEl)before executing it. -
EtlExecutor
Creates an ETL executor for specified configuration file.- Parameters:
configuration- ETL configuration.
-
-
Method Details
-
getConfiguration
Returns ETL configuration for this executor.- Returns:
- ETL configuration.
-
setConfiguration
Sets ETL configuration.- Parameters:
configuration- ETL configuration.
-
isJmxEnabled
public boolean isJmxEnabled()Returns true if monitoring/management via JMX is enabled.If jmxEnabled=true the executor registers MBeans for executed ETL files. The object names of the mbeans have the following form:
scriptella: type=etl,url="ETL_FILE_URL"- Returns:
- true if monitoring/management via JMX is enabled.
-
setJmxEnabled
public void setJmxEnabled(boolean jmxEnabled) Enables or disables ETL monitoring/management via JMX.If jmxEnabled=true the executor registers MBeans for executed ETL files. The object names of the mbeans have the following form:
scriptella: type=etl,url="ETL_FILE_URL"- Parameters:
jmxEnabled- true if monitoring/management via JMX is enabled.- See Also:
-
isSuppressStatistics
public boolean isSuppressStatistics()Getter forsuppressStatisticsproperty.- Returns:
- true if statistics collection is disabled. Default value is false.
-
setSuppressStatistics
public void setSuppressStatistics(boolean suppressStatistics) Enables or disables collecting of statistics. Default value is false, which means statistics is collected.Setting this option to
truemay improve performance in some cases.- Parameters:
suppressStatistics- true if statistics collection should be disabled.
-
execute
Executes ETL based on a specified configuration.- Returns:
- execution statistics for ETL execution.
- Throws:
EtlExecutorException- if ETL fails.- See Also:
-
execute
Executes ETL based on a specified configuration.- Parameters:
indicator- progress indicator to use, ornullif progress reporting is not required.- Returns:
- execution statistics for ETL execution.
- Throws:
EtlExecutorException- if ETL fails.
-
prepare
Prepares the scripts context.- Parameters:
indicator- progress indicator to use.- Returns:
- prepared scripts context.
-
newExecutor
Converts file to URL and invokesnewExecutor(java.net.URL).- Parameters:
scriptFile- ETL file.- Returns:
- configured instance of script executor.
- See Also:
-
newExecutor
Creates an ETL executor for the specified script URL.Calls
newExecutor(java.net.URL, java.util.Map)and passesSystem propertiesas external properties.- Parameters:
scriptFileUrl- URL of the ETL file.- Returns:
- configured instance of script executor.
-
newExecutor
Creates an ETL executor for the specified script URL and external parameters.- Parameters:
scriptFileUrl- URL of the ETL file.externalProperties- external ETL parameters, ornullfor none; these take precedence over properties in the ETL file.- Returns:
- configured instance of script executor.
- See Also:
-
run
ARunnableadapter forexecute().Because
Runnable.run()cannot declare checked exceptions, this method wraps anEtlExecutorExceptionin aSystemException.- Specified by:
runin interfaceRunnable- Throws:
SystemException- a wrappedEtlExecutorException.- See Also:
-
call
- Specified by:
callin interfaceCallable<ExecutionStatistics>- Returns:
- execution statistics for the ETL execution.
- Throws:
EtlExecutorException- if ETL execution fails.
-