Uses of Class
com.ebay.erl.mobius.core.MobiusJob

Packages that use MobiusJob
com.ebay.erl.mobius.core Contains the main class MobiusJob of the Mobius core API; refer to MobiusJob to see how to create an analysis flow using Mobius. 
com.ebay.erl.mobius.core.builder Provides built-in builders to build Datasets. 
 

Uses of MobiusJob in com.ebay.erl.mobius.core
 

Methods in com.ebay.erl.mobius.core with parameters of type MobiusJob
 Dataset Persistable.build(MobiusJob job, java.lang.Class<? extends org.apache.hadoop.mapred.FileOutputFormat> outputFormat, Projectable... projections)
          Build the dataset and store the projections into a temporal path (under hadoop.tmp.dir) in the format of the given outputFormat.
 Dataset Persistable.build(MobiusJob job, java.lang.Class<? extends org.apache.hadoop.mapred.FileOutputFormat> outputFormat, TupleCriterion criteria, Projectable... projections)
          Build the dataset and store the projections into a temporal path (under hadoop.tmp.dir) in the format of SequenceFileOutputFormat.
 Dataset Persistable.build(MobiusJob job, Projectable... projections)
          Build the dataset and store the projections into a temporal path (under hadoop.tmp.dir) in the format of SequenceFileOutputFormat.
 Dataset Persistable.build(MobiusJob job, TupleCriterion criteria, Projectable... projections)
          Build the dataset and store the projections into a temporal path (under hadoop.tmp.dir) in the format of SequenceFileOutputFormat.
 Dataset SortPersistable.save(MobiusJob job, org.apache.hadoop.fs.Path output)
          Save the sort result to the given output.
 Dataset SortPersistable.save(MobiusJob job, org.apache.hadoop.fs.Path output, java.lang.Class<? extends org.apache.hadoop.mapred.FileOutputFormat> outputFormat)
          Save the sort result to the given output with the specified outputFormat.
 Dataset Persistable.save(MobiusJob job, org.apache.hadoop.fs.Path output, java.lang.Class<? extends org.apache.hadoop.mapred.FileOutputFormat> outputFormat, Projectable... projections)
          Save the dataset and store the projections into a the specified output path in the format of the given outputFormat.
 Dataset Persistable.save(MobiusJob job, org.apache.hadoop.fs.Path output, java.lang.Class<? extends org.apache.hadoop.mapred.FileOutputFormat> outputFormat, TupleCriterion criteria, Projectable... projections)
          Save the dataset and store the projections into a the specified output path in the format of the given outputFormat.
 Dataset Persistable.save(MobiusJob job, org.apache.hadoop.fs.Path output, Projectable... projections)
          Save the dataset and store the projections into a the specified output path in the format of TextOutputFormat.
 Dataset Persistable.save(MobiusJob job, org.apache.hadoop.fs.Path output, TupleCriterion criteria, Projectable... projections)
          Save the dataset and store the projections into a the specified output path in the format of TextOutputFormat.
 

Uses of MobiusJob in com.ebay.erl.mobius.core.builder
 

Fields in com.ebay.erl.mobius.core.builder declared as MobiusJob
protected  MobiusJob Dataset.job
          The mobius job contains the ananlysis flow.
protected  MobiusJob AbstractDatasetBuilder.mobiusJob
          An instance of MobiusJob which contains the analysis flow.
 

Methods in com.ebay.erl.mobius.core.builder with parameters of type MobiusJob
static DatasetBuildersFactory DatasetBuildersFactory.getInstance(MobiusJob job)
          Get the singleton instance of DatasetBuildersFactory.
static TSVDatasetBuilder TSVDatasetBuilder.newInstance(MobiusJob job, java.lang.String name, java.lang.String[] schema)
          Create a new instance of TSVDatasetBuilder to build a text based dataset.
static SeqFileDatasetBuilder SeqFileDatasetBuilder.newInstance(MobiusJob job, java.lang.String name, java.lang.String[] schema)
          Get an new instance of SeqFileDatasetBuilder to build a dataset which is stored as Hadoop sequence file.
 

Constructors in com.ebay.erl.mobius.core.builder with parameters of type MobiusJob
AbstractDatasetBuilder(MobiusJob aJob, java.lang.String datasetName)
          Constructor for creating a dataset builder.
Dataset(MobiusJob job, java.lang.String name)
           
SeqFileDataset(MobiusJob job, java.lang.String name, java.lang.Class<? extends SequenceFileMapper> mapperClass)
          Creating an instance of SeqFileDataset with SequenceFileInputFormat as its input format.
SeqFileDatasetBuilder(MobiusJob aJob, java.lang.String datasetName)
           
TSVDataset(MobiusJob job, java.lang.String name)
          Create an instance of dataset with TextInputFormat and TSVMapper as default.
TSVDatasetBuilder(MobiusJob job, java.lang.String datasetName)