Hi there,
I had defined schema having an array of object & created profile dataset.
I have single attribute to be attached with profile having multiple values.
Now Ingesting data in batch mode with x values causing it to retain just last value in array not all of them. Ideally next batch insertion having x values should replace older x values. Here they replace themselves & holds just last element in same batch
**data [.csv]
MV
-----
valueFirst
valueSecond
valueThird
What happening is :
AEP Profile Attribute
---------------------------
sandbox.data.0.MV = valueThird // replaces its own batch data valueFirst->valueSecond->valueThird
What I want is :
sandbox.data.0.MV = valueFirst
sandbox.data.1.MV = valueSecond
sandbox.data.2.MV = valueThird
Thoughts please......
Solved! Go to Solution.
Views
Replies
Total Likes