Jackie-Jiang commented on a change in pull request #5175: add pinot upsert features to pinot common URL: https://github.com/apache/incubator-pinot/pull/5175#discussion_r397360233
########## File path: pinot-common/src/main/java/org/apache/pinot/common/config/TableConfig.java ########## @@ -75,6 +79,9 @@ private Map<InstancePartitionsType, InstanceAssignmentConfig> _instanceAssignmentConfigMap; private List<FieldConfig> _fieldConfigList; + @JsonPropertyDescription(value = "The update semantic of the table, either append or upsert, default as append") + private UpdateSemantic _updateSemantic; Review comment: Is this for real-time? We already have push type of either APPEND or REFRESH for offline; aggregateMetrics for real-time. What does UPSERT stand for? ---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
