I have a question about amplitude and the background is: Due to some dev issue, we posted wrong user_id for some session. For example, user ‘abc’ have 10 events, but we posted 5 events to user:‘abc’ and another 5 events to user:‘abcc’.Now I want to merge the 10 events together to user ‘abc’. I know that merging user is not allowed in Amplitude. So I think that the only way to do is to find which 5 events are sent to ‘abcc’ and resent them to ‘abc’. In the same time, I will delete user:’abcc’ to remove the redundant data.
The hardest part is to find which events are sent to ‘abcc’ in my database, so I’m wondering if I can download all events of ‘abcc’ in amplitude and send them to ‘abc’.
My solution to my problem may not be the best way. if you have better solutions can also tell me.