Uses of Class
com.pervasive.datarush.operators.ExecutableOperator
Packages that use ExecutableOperator
Package
Description
Provides common classes for Association Rule Mining (ARM).
Provides base PMML for clustering models.
Provides the decision tree predictor operator and associated classes.
Provides the decision tree pruner operator and associated classes.
Provides an implementation of a Naive Bayes predictor.
Provides shared and base classes for PMML model representation of Analytics algorithms.
Provides utility, PMML and other classes for shared use by regression related entities.
Provides various statistics, Data Summarizer, and Data Quality Analyzer.
Provides an implementation of an SVM learner.
Provides an implementation of an SVM predictor.
Provides various unstructured text processing operators.
Provides some (internal) utility classes for Analytics.
Provides operators for generating possible candidate pairs.
Provides classes and interfaces for developing dataflow operators.
Provides operators for making assertions on flows and files.
Provides data aggregation components.
Provides base file I/O components including encoders and decoders.
Provides operators for reading from JDBC sources and writing to JDBC targets.
Provides operators for reading and writing text data.
Provides operators for joining together two data sets into a single one.
Provides operators for handling models.
Provides operators for manipulating record structure.
Provides the
RunScript
operator for running user-defined scripts on the rows of an input record flow.Provides operators for selecting a subset of the data set.
Provides the
LogRows operator
for writing debugging information about a flow to the logging API.Provides operators for generating data tokens in various ways.
Provides operators for operating on string values in records.
Provides implementations of port objects related to the flow of record sets
between operators.
-
Uses of ExecutableOperator in com.pervasive.datarush.analytics.arm
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.armModifier and TypeClassDescriptionclassAn operator that converts an association model in PMML into a target format. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.cluster
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.clusterModifier and TypeClassDescriptionfinal classAssigns input data to clusters based on the provided PMML Clustering Model. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.decisiontree.predictor
Modifier and TypeClassDescriptionfinal classOperator responsible for predicting outcomes based on a Decision Tree PMML model. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.decisiontree.pruner
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.decisiontree.prunerModifier and TypeClassDescriptionfinal classPerforms pruning of the provided input model. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.naivebayes.predictor
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.naivebayes.predictorModifier and TypeClassDescriptionfinal classOperator responsible for predicting outcomes based on a Naive Bayes PMML model. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.pmml
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.pmml -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.regression
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.regressionModifier and TypeClassDescriptionclassclassApply a regression model to the input data.final classCompute the sum of squares for the given fields of the input data. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.stats
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.stats -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.svm.learner
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.svm.learnerModifier and TypeClassDescriptionfinal classBuilds aPMMLSupportVectorMachineModelfrom an input dataset. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.svm.predictor
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.svm.predictorModifier and TypeClassDescriptionfinal classOperator responsible for classification based on a SVM PMML model. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.text
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.textModifier and TypeClassDescriptionclassCalculates the n-gram frequencies for a tokenized text field.classCalculates the word frequencies for a tokenized text field.classConverts the case on a TokenizedText field.classCounts the number of tokens in a tokenized text field.classFilters a tokenized text field using a dictionary.classExpands text frequency field.classExpands a TokenizedText field.classFilters a tokenized text field.classCalculates the bag of words for a tokenized text field.classFilters a frequency map field.classStems a TokenizedText field.classTokenizes a string field as a TokenizedText object. -
Uses of ExecutableOperator in com.pervasive.datarush.analytics.util
Subclasses of ExecutableOperator in com.pervasive.datarush.analytics.utilModifier and TypeClassDescriptionclassCommon base class for "predictor" processes. -
Uses of ExecutableOperator in com.pervasive.datarush.matching.block
Subclasses of ExecutableOperator in com.pervasive.datarush.matching.blockModifier and TypeClassDescriptionclassFinds key groupings within the input key fields and, for each key group, generates all pairwise combinations of distinct rows in that group.classAn operator that issues warnings if a dataflow contains an unusually large number of distinct key values. -
Uses of ExecutableOperator in com.pervasive.datarush.operators
Subclasses of ExecutableOperator in com.pervasive.datarush.operatorsModifier and TypeClassDescriptionclassA base class for simple record-to-record operators, providing common functions.Methods in com.pervasive.datarush.operators that return ExecutableOperatorModifier and TypeMethodDescriptionprotected ExecutableOperatorExecutableOperator.cloneForExecution()Performs a deep copy of the operator for execution.OperatorProxies.ExecutableOperatorProxy.getTarget()Methods in com.pervasive.datarush.operators with parameters of type ExecutableOperatorModifier and TypeMethodDescriptionOperatorProxies.proxy(ExecutableOperator op) Public only as a matter of implementation; not intended for external use Creates a proxy to the given operator that allows the framework to access its protected methods. -
Uses of ExecutableOperator in com.pervasive.datarush.operators.assertion
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.assertionModifier and TypeClassDescriptionclassVerifies that actual rows are equal to expected rows.classAssert that the metadata on the input port is set correctly.classAssert that the given predicate is true for all input values.final classVerifies that the input data is sorted by the given set of keys. -
Uses of ExecutableOperator in com.pervasive.datarush.operators.graph
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.graphModifier and TypeClassDescriptionclassA mockable sink that can be utilized with the SubJobExecutor to pass data back to the launcher.classA mockable source that can be utilized with the SubJobExecutor to insert parameter data.classThe SubJobExecutor operator can be used to execute JSON serialized subgraphs within the current workflow. -
Uses of ExecutableOperator in com.pervasive.datarush.operators.group
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.groupModifier and TypeClassDescriptionclassCommon base class for all processes that need to detect group boundaries -
Uses of ExecutableOperator in com.pervasive.datarush.operators.io
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.ioModifier and TypeClassDescriptionfinal classWrites a stream of records to a data sink.Methods in com.pervasive.datarush.operators.io that return ExecutableOperator -
Uses of ExecutableOperator in com.pervasive.datarush.operators.io.jdbc
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.io.jdbcModifier and TypeClassDescriptionprotected static classclassclassMethods in com.pervasive.datarush.operators.io.jdbc that return ExecutableOperatorModifier and TypeMethodDescriptionprotected ExecutableOperatorAbstractWriteToJDBC.AbstractWriteToJDBCWorker.cloneForExecution()protected ExecutableOperatorFinalizeSQLWorker.cloneForExecution()protected ExecutableOperatorInitializeSQLWorker.cloneForExecution() -
Uses of ExecutableOperator in com.pervasive.datarush.operators.io.textfile
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.io.textfileModifier and TypeClassDescriptionclassParses input text records according to a specified text schema. -
Uses of ExecutableOperator in com.pervasive.datarush.operators.join
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.joinModifier and TypeClassDescriptionfinal classProduce the cartesian product of two sets of records.class -
Uses of ExecutableOperator in com.pervasive.datarush.operators.model
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.modelModifier and TypeClassDescriptionclassGetModel<T>Provides a way to update an in-memory reference to a model object.classPutModel<T>Provides a way to inject an in-memory reference to a model object into a graph.Methods in com.pervasive.datarush.operators.model that return ExecutableOperatorModifier and TypeMethodDescriptionprotected final ExecutableOperatorGetModel.cloneForExecution()protected final ExecutableOperatorPutModel.cloneForExecution() -
Uses of ExecutableOperator in com.pervasive.datarush.operators.record
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.recordModifier and TypeClassDescriptionclassNormalize records by transposing values from row columns into multiple rows.final classApplies one or more functions to the input record data.classBase class for operators which filter fields in the input records.classMerges two streams of data with an equivalent number of rows into one.classRearranges and renames fields in a record.classRemoves a subset of fields from the input records.classPreserves a subset of fields from the input records.classPreserves a subset of fields from the input records.Methods in com.pervasive.datarush.operators.record that return ExecutableOperator -
Uses of ExecutableOperator in com.pervasive.datarush.operators.scripting
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.scriptingModifier and TypeClassDescriptionclassProcesses rows using user-defined scripts written in JavaScript.classProcesses rows using user-defined scripts. -
Uses of ExecutableOperator in com.pervasive.datarush.operators.select
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.selectModifier and TypeClassDescriptionclassFilters records based on a specified predicate.Methods in com.pervasive.datarush.operators.select that return ExecutableOperator -
Uses of ExecutableOperator in com.pervasive.datarush.operators.sink
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.sinkModifier and TypeClassDescriptionfinal classCollects input data into an in-memory token list.final classLog information about the input data from a flow.Methods in com.pervasive.datarush.operators.sink that return ExecutableOperatorModifier and TypeMethodDescriptionprotected ExecutableOperatorCollectRecords.cloneForExecution() -
Uses of ExecutableOperator in com.pervasive.datarush.operators.source
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.sourceModifier and TypeClassDescriptionfinal classEmits an in-memory token list as output.final classGenerates a sequence of numerical values, with a constant difference between consecutive values.final classGenerates copies of a constant value.final classGenerates rows of random data.final classGenerates a cycle of repeating values.Methods in com.pervasive.datarush.operators.source that return ExecutableOperator -
Uses of ExecutableOperator in com.pervasive.datarush.operators.string
Subclasses of ExecutableOperator in com.pervasive.datarush.operators.stringModifier and TypeClassDescriptionclassSplits a string field into multiple fields, based on a specified pattern. -
Uses of ExecutableOperator in com.pervasive.datarush.ports.record
Subclasses of ExecutableOperator in com.pervasive.datarush.ports.recordModifier and TypeClassDescriptionfinal classDefines an external sink of record data.final classDefines an external source of record data.Methods in com.pervasive.datarush.ports.record that return ExecutableOperatorModifier and TypeMethodDescriptionprotected ExecutableOperatorExternalRecordSink.cloneForExecution()protected ExecutableOperatorExternalRecordSource.cloneForExecution() -
Uses of ExecutableOperator in com.pervasive.datarush.script.operators.group
Subclasses of ExecutableOperator in com.pervasive.datarush.script.operators.groupModifier and TypeClassDescriptionclassExecutes an application graph for each distinct key group of data within the input data set.