Map
07/29/2021, 4:51 PMsegmentPushType
set to REFRESH
, no segment build will be triggered? Once a segment is flushed, it will be dropped? However, in my test, it seems segments still get builtMayank
Map
07/29/2021, 5:48 PMMap
07/29/2021, 5:48 PMMap
07/29/2021, 5:49 PMIngestionConfig -> BatchIngestionConfig -> segmentPushType
. Does it mean that I don't need to specify this for realtime tables? I am asking because I see on the page the sample config for a realtime table has it:
pinot-table-realtime.json
"REALTIME": {
"tableName": "pinotTable",
"tableType": "REALTIME",
"segmentsConfig": {
"schemaName": "pinotTable",
"timeColumnName": "daysSinceEpoch",
"timeType": "DAYS",
"replicasPerPartition": "3",
"retentionTimeUnit": "DAYS",
"retentionTimeValue": "5",
"segmentPushType": "APPEND",
"completionConfig": {
"completionMode": "DOWNLOAD"
}
},