Pedro Silva
04/28/2021, 9:23 AM{
"schemaName": "hitexecutionview",
"dimensionFieldSpecs": [
{
"name": "id",
"dataType": "STRING"
},
{
"name": "jobId",
"dataType": "STRING"
},
{
"name": "crowdMemberId",
"dataType": "STRING"
},
{
"name": "projectId",
"dataType": "STRING"
},
{
"name": "result",
"dataTYpe": "STRING"
}
],
"dateTimeFieldSpecs": [
{
"name": "timestamp",
"dataType": "LONG",
"format": "1:MILLISECONDS:EPOCH",
"granularity": "1:MILLISECONDS"
}
],
"primaryKeyColumns": [
"id"
]
}
And the following kafka message:
{
"id": "19281-3123n1283-12312-312",
"jobId": "245d-2334-fs33-23f4",
"crowdMemberId": "xxxxxxxxxx",
"projectId": "49mf-f39f-25v2-989m",
"timestamp": "1238648237"
}
The field result is not passed, will pinot assume a null value?
What happens if there are computed fields based on this non-existing result?Kishore G
Kishore G