Hi!
I’ve been going through the event manager and noticed that ~80% of my what used to be numeric custom event parameters are now treated as strings. In some cases they are even duplicated in the data manager (1 numeric field, 1 string field with the same name).
From what I can see in the Data Manager (see below), the change started around the 11th of January.
It seems like the data manager handles this pretty well as it looks like the purple curve corresponds to the sum of the green curves.
Where it gets weird, though, is in the raw data. Where I used to have long or double JSON fields for numeric values:
"custom_params": {"waveId": "Wave15", "waveSuccess": 0.0416666679}
I now have strings:
"custom_params": {"waveId": "Wave15", "waveSuccess": __**"**__0.0416666679__"__}
I might be overthinking this, but this seems like a pretty drastic data contract change that has the potential to mess up with some data analysis pipelines…
It looks like this is related to the recent change in data processing limits.
But is this a bug or a feature? ![]()
