Running cell 4 of notebook 3.1 - Structured Streaming fails, because the table is not being registered within the setup notebook /Includes/Copy-Datasets or within this notebook.

Running the following code first is solves that, but it needs integrating into the setup notebook ideally
spark.sql( f""" CREATE EXTERNAL TABLE IF NOT EXISTS books USING PARQUET OPTIONS ( header "true", inferSchema "true", recursiveFileLookup "true" ) LOCATION '{dataset_bookstore}/orders-streaming' """ )

Running cell 4 of notebook 3.1 - Structured Streaming fails, because the table is not being registered within the setup notebook /Includes/Copy-Datasets or within this notebook.
Running the following code first is solves that, but it needs integrating into the setup notebook ideally
spark.sql( f""" CREATE EXTERNAL TABLE IF NOT EXISTS books USING PARQUET OPTIONS ( header "true", inferSchema "true", recursiveFileLookup "true" ) LOCATION '{dataset_bookstore}/orders-streaming' """ )