rm -r dp-203 -f
git clone https://github.com/MicrosoftLearning/dp-203-azure-data-engineer dp-203
cd dp-203/Allfiles/labs/17
./setup.ps1
node ~/dp-203/Allfiles/labs/17/orderclient
SELECT
DateAdd(second,-10,System.TimeStamp) AS StartTime,
System.TimeStamp AS EndTime,
ProductID,
SUM(Quantity) AS Orders
INTO
[blobstore]
FROM
[orders] TIMESTAMP BY EventProcessedUtcTime
GROUP BY ProductID, TumblingWindow(second, 10)
HAVING COUNT(*) > 1
node ~/dp-203/Allfiles/labs/17/orderclient