mirror of
https://github.com/apache/druid.git
synced 2025-02-06 10:08:26 +00:00
d69533dbd9
* first pass compaction refactor. includes updated behavior for queryGranularity. removes duplicated doc * fix links, typos, some reorganization * fix spelling. TBD still there for work in progress * updates tutorial examples, adds more clarification around compaction use cases * add granularity spec to automatic compaction config * final edits * spelling fixes * apply suggestions from review * upadtes from review * last edits * move note * clarify null * fix links & spelling * latest review * edits to auto-compaction config * add back rollup * fix links & spelling * Update compaction.md add granularityspec to example
16 lines
359 B
JSON
16 lines
359 B
JSON
{
|
|
"type": "compact",
|
|
"dataSource": "compaction-tutorial",
|
|
"interval": "2015-09-12/2015-09-13",
|
|
"tuningConfig" : {
|
|
"type" : "index_parallel",
|
|
"maxRowsPerSegment" : 5000000,
|
|
"maxRowsInMemory" : 25000,
|
|
"forceExtendableShardSpecs" : true
|
|
},
|
|
"granularitySpec" : {
|
|
"segmentGranularity" : "DAY",
|
|
"queryGranularity" : "none"
|
|
}
|
|
}
|