View source: R/stream_operations.R
stream_find | R Documentation |
Finds and returns a stream based on the stream's identifier.
stream_find(sc, id)
sc |
The associated Spark connection. |
id |
The stream identifier to find. |
## Not run:
sc <- spark_connect(master = "local")
sdf_len(sc, 10) %>%
spark_write_parquet(path = "parquet-in")
stream <- stream_read_parquet(sc, "parquet-in") %>%
stream_write_parquet("parquet-out")
stream_id <- stream_id(stream)
stream_find(sc, stream_id)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.