You can write it to the memory sink.

df.writeStream.format("memory").queryName("myStream").start()

spark.table("myStream").show()

On Wed, May 17, 2017 at 7:55 PM, kant kodali <kanth...@gmail.com> wrote:

> Hi All,
>
> How to see the full contents of dataset or dataframe is structured
> streaming just like we normally with *df.show(false)*? Is there any
> parameter I can pass in to the code below?
>
> val df1 = df.selectExpr("payload.data.*");
>
> df1.writeStream().outputMode("append").format("console").start()
>
>
> Thanks!
>
>

Reply via email to