-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Closed as not planned
Description
Affected Version
The Druid version where the problem was encountered.
Druid-0.20.1
Description
Hi,
I am trying to use Druid . I have one question. Suppose there are fields as below
Amount userName transactionId
Now i want to ingest data based on sum of amount group by user, but i want store all transaction id as well like . T1,T2,T3... after aggregation. Is it possible to do it in druid?
For example:
Amount userName transactionId
10 abc 12
20 abc 13
10 bcd 14
After ingestion row shd be like this
Amount userName transactionIds
30 abc [12,13]
10 bcd 14
Reactions are currently unavailable