Slackbot
09/12/2023, 2:00 AMElijah Ben Izzy
09/12/2023, 2:31 AMextract_columns
on that. Then you can conduct the rest of the map operation.
That said, I’d actually continue doing it simliarly to how you’re doing it — it makes a lot of sense to keep the operations having the same index, especially if you have the filter on, say, some sentinal value. In that case, you could:
1. Write a custom results_builder to join them and filter, handling the index specially
2. Actually do that within a node (write a dataframe join that does the filtering)
You could pass along the filter values, or just utilize the index to do the join.
Makes sense?Stefan Krawczyk
09/12/2023, 2:33 AMMichael Chmutov
09/12/2023, 2:48 AMresults_builder
is exactly what I was missing - thank you for the pointer!Stefan Krawczyk
09/12/2023, 2:52 AMStefan Krawczyk
09/12/2023, 4:23 AM