npawar opened a new pull request #5793:
URL: https://github.com/apache/incubator-pinot/pull/5793


   ## Description
   Issue: https://github.com/apache/incubator-pinot/issues/5553
   Tiered storage support in Pinot - Phase 1.
   This phase supports default tag based instance assignments only, which are 
not persisted in zk. 
   
   Phase 2 will introduce instanceAssignmentConfig for tiers, which will allow 
us to support replica groups for tiers and also let us persist the 
InstancePartitions
   
   Example:
   This example show how to configure segments older than 15 days move to 
`tier_b_OFFLINE` and segments older than 7 days move to `tier_a_OFFLINE`
   ```
   {
     "tableName": "myTable",
     "tableType": ...,
     ...
     "tierConfigs": [{
       "name": "tierA",
       "segmentSelectorType": "timeBased",
       "segmentAge": "7d",
       "storageType": "pinotServer",
       "serverTag": "tier_a_OFFLINE"
     }, {
       "name": "tierB",
       "segmentSelectorType": "timeBased",
       "segmentAge": "15d",
       "storageType": "pinotServer",
       "serverTag": "tier_b_OFFLINE"
     }] 
   }
   ```
   
   ## Release Notes
   Tiered storage phase 1 - default tag based instance assignment for tiers
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to