Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the difference between bounded and unbounded streams?
Home
Apache
What is the difference between bounded and unbounded streams?
0
votes
asked
Sep 16
in
Apache
by
rajeshsharma
What is the difference between bounded and unbounded streams?
bounded
unbounded
streams
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 16
by
rajeshsharma
Bounded Streams
Unbounded Streams
Bounded streams are datasets that have a defined start and end.
Unbounded streams are datasets that have a defined start but no defined end.
Bounded streams can be processed by ingesting the complete data and them preforming any computations.
Unbounded streams have to be processed continuously as new data comes in.
In most cases, unbounded streams have to be process in the order in which messages are received.
Bounded messages can be processed in any order since the messages can be sorted as needed.
...