Uses of Interface
com.pervasive.datarush.operators.RecordPipelineOperator
-
Packages that use RecordPipelineOperator Package Description com.pervasive.datarush.analytics.arm Provides common classes for Association Rule Mining (ARM).com.pervasive.datarush.analytics.cleansing Provides operators related to data cleansing.com.pervasive.datarush.analytics.r com.pervasive.datarush.analytics.stats Provides various statistics, Data Summarizer, and Data Quality Analyzer.com.pervasive.datarush.analytics.text Provides various unstructured text processing operators.com.pervasive.datarush.operators Provides classes and interfaces for developing dataflow operators.com.pervasive.datarush.operators.assertion Provides operators for making assertions on flows and files.com.pervasive.datarush.operators.group Provides data aggregation components.com.pervasive.datarush.operators.io.jdbc Provides operators for reading from JDBC sources and writing to JDBC targets.com.pervasive.datarush.operators.io.textfile Provides operators for reading and writing text data.com.pervasive.datarush.operators.partition Provides operators for partitioning and unpartitioning flows of data.com.pervasive.datarush.operators.record Provides operators for manipulating record structure.com.pervasive.datarush.operators.scripting Provides theRunScriptoperator for running user-defined scripts on the rows of an input record flow.com.pervasive.datarush.operators.select Provides operators for selecting a subset of the data set.com.pervasive.datarush.operators.sort Provides operators for sorting and manipulating sorted flows.com.pervasive.datarush.operators.string Provides operators for operating on string values in records. -
-
Uses of RecordPipelineOperator in com.pervasive.datarush.analytics.arm
Classes in com.pervasive.datarush.analytics.arm that implement RecordPipelineOperator Modifier and Type Class Description classFrequentItemsCompute the frequent items within the given transactions. -
Uses of RecordPipelineOperator in com.pervasive.datarush.analytics.cleansing
Classes in com.pervasive.datarush.analytics.cleansing that implement RecordPipelineOperator Modifier and Type Class Description classReplaceMissingValuesReplace missing values in the input data according to the given replacement specifications. -
Uses of RecordPipelineOperator in com.pervasive.datarush.analytics.r
Classes in com.pervasive.datarush.analytics.r that implement RecordPipelineOperator Modifier and Type Class Description classRunRScriptExecute an R script in flow. -
Uses of RecordPipelineOperator in com.pervasive.datarush.analytics.stats
Classes in com.pervasive.datarush.analytics.stats that implement RecordPipelineOperator Modifier and Type Class Description classCountRangesDetermines which range each value in a field falls within and counts the totals.classDistinctValuesCalculates distinct values of the given input field.classMostFrequentValuesCompute the most frequent values within the given fields.classNormalizeValuesApply normalization methods to fields within an input data flow.classRankRank data using the given rank mode. -
Uses of RecordPipelineOperator in com.pervasive.datarush.analytics.text
Classes in com.pervasive.datarush.analytics.text that implement RecordPipelineOperator Modifier and Type Class Description classCalculateNGramFrequencyCalculates the n-gram frequencies for a tokenized text field.classCalculateWordFrequencyCalculates the word frequencies for a tokenized text field.classConvertTextCaseConverts the case on a TokenizedText field.classCountTokensCounts the number of tokens in a tokenized text field.classDictionaryFilterFilters a tokenized text field using a dictionary.classExpandTextFrequencyExpands text frequency field.classExpandTextTokensExpands a TokenizedText field.classFilterTextFilters a tokenized text field.classGenerateBagOfWordsCalculates the bag of words for a tokenized text field.classTextFrequencyFilterFilters a frequency map field.classTextStemmerStems a TokenizedText field.classTextTokenizerTokenizes a string field as a TokenizedText object. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators
Classes in com.pervasive.datarush.operators that implement RecordPipelineOperator Modifier and Type Class Description classAbstractDeferredRecordOperatorConvenient base class forDeferredCompositeOperator's that are alsoRecordPipelineOperator's.classAbstractExecutableRecordPipelineA base class for simple record-to-record operators, providing common functions.classAbstractRecordCompositeOperatorConvenient base class forCompositeOperator's that are alsoRecordPipelineOperator's. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.assertion
Classes in com.pervasive.datarush.operators.assertion that implement RecordPipelineOperator Modifier and Type Class Description classAssertSortedVerifies that the input data is sorted by the given set of keys. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.group
Classes in com.pervasive.datarush.operators.group that implement RecordPipelineOperator Modifier and Type Class Description classGroupPerforms grouping (aggregation) of sorted input data.classRemoveDuplicatesRemoves duplicate rows based on a specified set of group keys.classSortedGroupHandlerCommon base class for all processes that need to detect group boundaries -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.io.jdbc
Classes in com.pervasive.datarush.operators.io.jdbc that implement RecordPipelineOperator Modifier and Type Class Description classDeleteFromJDBCThis operator deletes data in the target table in a database by applying SQL delete statements.classReadFromJDBCTheReadFromJDBCoperator is used to access relational database systems using a supplied JDBC driver.classUpdateInJDBCThis operator updates the target table in a database by applying SQL update statements. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.io.textfile
Classes in com.pervasive.datarush.operators.io.textfile that implement RecordPipelineOperator Modifier and Type Class Description classParseTextFieldsParses input text records according to a specified text schema. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.partition
Classes in com.pervasive.datarush.operators.partition that implement RecordPipelineOperator Modifier and Type Class Description classGatherHintForces parallel streams of data to be gathered into a single non-parallel stream.classPartitionHintForces the input data to be partitioned into parallel streams of data for subsequent parallel operations.classRandomizeOperator that re-orders its input in a random fashion. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.record
Classes in com.pervasive.datarush.operators.record that implement RecordPipelineOperator Modifier and Type Class Description classColumnsToRowsNormalize records by transposing values from row columns into multiple rows.classDeriveFieldsApplies one or more functions to the input record data.classFilterFieldsBase class for operators which filter fields in the input records.classRemapFieldsRearranges and renames fields in a record.classRemoveFieldsRemoves a subset of fields from the input records.classRetainFieldsPreserves a subset of fields from the input records.classRowsToColumnsThe RowsToColumns operator is used to pivot data from a narrow representation (rows) into a wider representation (columns).classSelectFieldsPreserves a subset of fields from the input records. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.scripting
Classes in com.pervasive.datarush.operators.scripting that implement RecordPipelineOperator Modifier and Type Class Description classRunJavaScriptProcesses rows using user-defined scripts written in JavaScript.classRunScriptProcesses rows using user-defined scripts. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.select
Classes in com.pervasive.datarush.operators.select that implement RecordPipelineOperator Modifier and Type Class Description classFilterRowsFilters records based on a specified predicate.classLimitRowsTruncates a flow to a fixed number of records.classSampleRandomRowsApply random sampling to the input data. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.sort
Classes in com.pervasive.datarush.operators.sort that implement RecordPipelineOperator Modifier and Type Class Description classSortSorts the input data. -
Uses of RecordPipelineOperator in com.pervasive.datarush.operators.string
Classes in com.pervasive.datarush.operators.string that implement RecordPipelineOperator Modifier and Type Class Description classSplitFieldSplits a string field into multiple fields, based on a specified pattern.
-