Reputation: 5366
I have an Azure Stream Analytics resource with a Blob Storage as input (so not output I can read enough docs about that). The problem is that my path pattern is dynamic. We make directories in this Blob Storage to identify batches like so:
/batch-1234/ /batch-5678/ and so on...
I've tried to put "batch-*" in the input path pattern to dynamically assign directories, but this is not allowed.
Is this possible to do with Stream Analytics somehow?
Thank you advance for helping me.
Upvotes: 2
Views: 1325
Reputation: 23782
Unfortunately,*
is not supported by ASA so far which is stated in the document.
So only date,time and partition
are supported in file path,no support with wildcard
.If it is acceptable,you could classify batch-* directory in one root container and leave the Path Pattern
empty.
Upvotes: 1