This is an automated email from the ASF dual-hosted git repository. apucher pushed a commit to branch data-generator-thirdeye-metadata-fix in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit 7aee2ecadfeb0d19634d5df7da7e8c352dc17367 Author: Alexander Pucher <[email protected]> AuthorDate: Thu Aug 13 13:05:01 2020 -0700 add timeColumnName to tableConfig to enable TE auto-detection --- pinot-tools/src/main/resources/generator/complexWebsite_config.json | 3 ++- pinot-tools/src/main/resources/generator/simpleWebsite_config.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pinot-tools/src/main/resources/generator/complexWebsite_config.json b/pinot-tools/src/main/resources/generator/complexWebsite_config.json index cbe7e5a..63e6b9f 100644 --- a/pinot-tools/src/main/resources/generator/complexWebsite_config.json +++ b/pinot-tools/src/main/resources/generator/complexWebsite_config.json @@ -2,7 +2,8 @@ "tableName": "complexWebsite", "segmentsConfig" : { "replication" : "1", - "schemaName" : "complexWebsite" + "schemaName" : "complexWebsite", + "timeColumnName": "hoursSinceEpoch" }, "tableIndexConfig" : { "invertedIndexColumns" : [], diff --git a/pinot-tools/src/main/resources/generator/simpleWebsite_config.json b/pinot-tools/src/main/resources/generator/simpleWebsite_config.json index 66f9cbe..9237997 100644 --- a/pinot-tools/src/main/resources/generator/simpleWebsite_config.json +++ b/pinot-tools/src/main/resources/generator/simpleWebsite_config.json @@ -2,7 +2,8 @@ "tableName": "simpleWebsite", "segmentsConfig" : { "replication" : "1", - "schemaName" : "simpleWebsite" + "schemaName" : "simpleWebsite", + "timeColumnName": "hoursSinceEpoch" }, "tableIndexConfig" : { "invertedIndexColumns" : [], --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
