'Azure Stream Analytic Output
Solution 1:[1]
When you configure the Azure Stream Analytic Output you can mention the Path pattern, Date format, and Time format. All are optional properties we can use to filter out.
Path pattern
- You can mention the Path pattern which is used to locate the blob within the specified container.
- Do not include a path pattern if you wish to read blobs from the container's root.
- You can specify one or more instances of the following three variables within the path:{date}
,{time}, or{partition}`
Example : cluster1/logs/{date}/{time}/{partition}
Date format
The date format in which the files are structured if you utilize the date variable in the path.
Example:
YYYY/MM/DD
Time format
The date format in which the files are structured if you utilize the Time variable in the path. Currently, it supports only HH (Hours).
References:
- Configure the blob storage as a stream
- SO Thread for Dynamic Path pattern.
- Stream analysis Custom path pattern
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | DelliganeshS-MT |

