unique on dask fails to gather results properly
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Idoneità per principianti
- 35/100
- Tipo di issue
- Bug
- Chiarezza
- Abbastanza chiara
- Stato di attività
- Ferma
- Stack tecnologico
- python
- Ambito
- stream-processing
Direzione di ricerca
Run the supplied DaskStream reproducer, comparing scatter().unique().buffer(10).gather() with the working Stream and scatter().buffer(10).gather() paths. Trace the unique and gather entry points and verify that the gathered sink_to_list output contains plain values rather than futures.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
It seems that when gathering after a unique on a DaskStream the results fail to be returned to their non future state. However, this seems limited to only unique on dask, running either with unique in a standard Stream or without in a DaskStream seems to do the trick.
Working example:
In [1]: from dask.distributed import Client
...: client = Client()
...:
In [2]: from streamz import Stream
In [3]: s = Stream()
In [4]: b = s.unique()
In [5]: c = s.scatter().unique().buffer(10).gather()
In [6]: l = b.sink_to_list()
In [8]: ll = c.sink_to_list()
In [9]: for i in range(10):
...: s.emit(i)
In [10]: l
Out[10]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
In [11]: ll
Out[11]:
[<Future: status: finished, type: int, key: int-5c8a950061aa331153f4a172bbcbfd1b>,
<Future: status: finished, type: int, key: int-c0a8a20f903a4915b94db8de3ea63195>,
<Future: status: finished, type: int, key: int-58e78e1b34eb49a68c65b54815d1b158>,
<Future: status: finished, type: int, key: int-d3395e15f605bc35ab1bac6341a285e2>,
<Future: status: finished, type: int, key: int-5cd9541ea58b401f115b751e79eabbff>,
<Future: status: finished, type: int, key: int-ce9a05dd6ec76c6a6d171b0c055f3127>,
<Future: status: finished, type: int, key: int-7ec5d3339274cee5cb507a4e4d28e791>,
<Future: status: finished, type: int, key: int-06e5a71c9839bd98760be56f629b24cc>,
<Future: status: finished, type: int, key: int-ea1fa36eb048f89cc9b6b045a2a731d2>,
<Future: status: finished, type: int, key: int-c56e7bae3484c9b6750417fbf89d6509>]
In [12]: d = s.scatter().buffer(10).gather()
In [13]: lll = d.sink_to_list()
In [14]: for i in range(10):
...: s.emit(i)
...:
In [15]: lll
Out[15]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
This was produced with Python 3.5.5 | packaged by conda-forge | (default, Feb 13 2018, 05:02:37) and latest master Streamz.
- Lingua principale
- Python
- Stelle
- 1.3k
- Fork
- 149
- Merge medio
- 17h 39m
- PR unite (30g)
- 1
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di python-streamz/streamz
-
pkg_resources warning Aperta
Difficoltà 3/5 1-2 giorni Idoneità per principianti 35/100
python-streamz/streamz#481 · 4 commenti ·
-
Combining the streamz.Stream.filenames() and streamz.Stream.from_textfile() using dask scatter? Aperta
Difficoltà 5/5 Più di una settimana Idoneità per principianti 25/100
python-streamz/streamz#480 · 2 commenti ·
-
Compile the code into c++ Aperta
Difficoltà 5/5 Più di una settimana Idoneità per principianti 20/100
python-streamz/streamz#479 · 1 commento ·
-
Difficoltà 5/5 Più di una settimana Idoneità per principianti 20/100
python-streamz/streamz#478 · 6 commenti ·
-
Difficoltà 4/5 3-5 giorni Idoneità per principianti 10/100
python-streamz/streamz#476 · 17 commenti · 2 reazioni ·
Tutte le issue di python-streamz/streamz
Issue simili
-
bug confirmed issue
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
open-webui/open-webui#30750 · 1 commento ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
enhancement
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
OpenwaterHealth/openmotion-bloodflow-app#604 · 1 commento ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
-
good first issue
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 90/100