Hey :wave: , I am trying the `INCREMENT` upsert co...
# troubleshooting
k
Hey 👋 , I am trying the
INCREMENT
upsert config type using something like
Copy code
"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?
Hmm maybe I misunderstood? the doc says:
Copy code
INCREMENT
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.