I created a Task which write the result of a query into another bucket. Is it possible to add some new Tags to the query result before I write in to the new destination?
@Iceman Sure, you can use either set() or map(). If the tag is going to be the same for every point in the stream, I’d recommend set(). One thing to note is that, in order for the new column to be written as a tag, you need to add it to the group key. Also, you don’t need a yield() here. It will just unncessarily double the number of points you send in the the write request.