ankitsultana opened a new issue, #11408: URL: https://github.com/apache/pinot/issues/11408
After https://github.com/apache/pinot/pull/10234/files, we started supporting both `comparisonColumn` and `comparisonColumns` as config properties. But table config validate API call marks the comparisonColumn as a unrecognizedProperty. If the table-config has something like: ``` "upsertConfig": { "mode": "PARTIAL", "partialUpsertStrategies": {}, "defaultPartialUpsertStrategy": "OVERWRITE", "comparisonColumn": "upsert_ts", "hashFunction": "NONE" }, ``` Then we get: ``` .... "upsertConfig": { "mode": "PARTIAL", "hashFunction": "NONE", "partialUpsertStrategies": {}, "defaultPartialUpsertStrategy": "OVERWRITE", "enableSnapshot": false, "comparisonColumns": [ "upsert_ts" ] }, "isDimTable": false }, "unrecognizedProperties": { "/realtime/upsertConfig/comparisonColumn": "upsert_ts" } ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
