Login
Remember
Register
Ask a Question
Which transformation returns a new DStream by selecting only those records of the source DStream for which the function returns true?
0
votes
asked
Aug 25, 2022
by
sharadyadav1986
Which transformation returns a new DStream by selecting only those records of the source DStream for which the function returns true?
1. map(func)
2. transform(func)
3. filter(func)
4. count()
apache-spark
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 25, 2022
by
sharadyadav1986
The correct answer is c) filter(func).
...