Last active
October 13, 2020 19:37
-
-
Save alfrcr/f9b9a982cc54bfcbf8724ddcb5f6bdb5 to your computer and use it in GitHub Desktop.
Filter out
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| filter_in_parallel = group( | |
| filter_out.s(event_type, chunks, story_id, days_lookback) for chunks in chunks_fetch | |
| ).apply_async() | |
| device_ids = [] | |
| for result in filter_in_parallel.get(): | |
| device_ids.extend(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment