mirror of https://github.com/apache/druid.git
Merge pull request #1348 from druid-io/fix-typo
fix typos with batch ingestion in docs
This commit is contained in:
commit
ed8cfbf74d
|
@ -126,13 +126,13 @@ This field is required.
|
|||
|Field|Type|Description|Required|
|
||||
|-----|----|-----------|--------|
|
||||
|type|String|This should always be 'hadoop'.|yes|
|
||||
|pathSpec|Object|a specification of where to pull the data in from|yes|
|
||||
|inputSpec|Object|a specification of where to pull the data in from. See below.|yes|
|
||||
|segmentOutputPath|String|the path to dump segments into.|yes|
|
||||
|metadataUpdateSpec|Object|a specification of how to update the metadata for the druid cluster these segments belong to.|yes|
|
||||
|
||||
#### Path specification
|
||||
#### InputSpec specification
|
||||
|
||||
There are multiple types of path specification:
|
||||
There are multiple types of inputSpecs:
|
||||
|
||||
##### `static`
|
||||
|
||||
|
|
|
@ -551,7 +551,7 @@ public class HadoopDruidIndexerConfig
|
|||
Preconditions.checkNotNull(schema.getDataSchema().getParser().getParseSpec(), "parseSpec");
|
||||
Preconditions.checkNotNull(schema.getDataSchema().getParser().getParseSpec().getTimestampSpec(), "timestampSpec");
|
||||
Preconditions.checkNotNull(schema.getDataSchema().getGranularitySpec(), "granularitySpec");
|
||||
Preconditions.checkNotNull(pathSpec, "pathSpec");
|
||||
Preconditions.checkNotNull(pathSpec, "inputSpec");
|
||||
Preconditions.checkNotNull(schema.getTuningConfig().getWorkingPath(), "workingPath");
|
||||
Preconditions.checkNotNull(schema.getIOConfig().getSegmentOutputPath(), "segmentOutputPath");
|
||||
Preconditions.checkNotNull(schema.getTuningConfig().getVersion(), "version");
|
||||
|
|
Loading…
Reference in New Issue