Methods in com.splout.db.hadoop that return TablespaceSpec |
TablespaceSpec |
TablespaceBuilder.build()
After specifying everything, call this method for building the final tablespace spec. |
TablespaceSpec |
JSONTablespaceDefinition.build(org.apache.hadoop.conf.Configuration hadoopConf)
Use this method for obtaining a TablespaceSpec through TablespaceBuilder . |
static TablespaceSpec |
TablespaceSpec.of(org.apache.hadoop.conf.Configuration conf,
java.lang.String[] partitionFields,
org.apache.hadoop.fs.Path input,
org.apache.hadoop.mapreduce.InputFormat<com.datasalt.pangool.io.ITuple,org.apache.hadoop.io.NullWritable> inputFormat,
int nPartitions)
Schema-less quick tablespace builder that samples the first record of the first InputSplit in order to obtain the Table Schema. |
static TablespaceSpec |
TablespaceSpec.of(com.datasalt.pangool.io.Schema schema,
java.lang.String[] partitionFields,
org.apache.hadoop.fs.Path input,
org.apache.hadoop.mapreduce.InputFormat<com.datasalt.pangool.io.ITuple,org.apache.hadoop.io.NullWritable> inputFormat,
int nPartitions)
|
static TablespaceSpec |
TablespaceSpec.of(com.datasalt.pangool.io.Schema schema,
java.lang.String partitionField,
org.apache.hadoop.fs.Path input,
org.apache.hadoop.mapreduce.InputFormat<com.datasalt.pangool.io.ITuple,org.apache.hadoop.io.NullWritable> inputFormat,
int nPartitions)
(Common case that can be built without using the builder) |