kaivalya apte
02/23/2022, 3:39 PMINCREMENT
upsert config type using something like
"upsertConfig": {
"mode": "PARTIAL",
"partialUpsertStrategies": {
"countOfEvents": "INCREMENT",
"type": "OVERWRITE"
},
"defaultPartialUpsertStrategy": "OVERWRITE",
"hashFunction": "MURMUR3"
},
On upserts I see that the type
field was overwritten however countOfEvents
didn’t increment
. Am I missing something?kaivalya apte
02/23/2022, 3:49 PMINCREMENT
Add the new value to the existing values
this field isn’t coming from Kafka so it will be no value, defaultNullValue is set 1 so I’d expect it will add 1 to the value.