Is there a good way to have multiple partitions in...
# singer-tap-development
r
Is there a good way to have multiple partitions in a stream? For instance, if I need an
id
and a
year
and it needs to process all
ids
for all
years
. I currently have it working by serializing each permutation as a JSON string, passing it along as a partition, and unpacking the partition from the context. Just thinking if that is the best approach.