I'd like to set the prefix based on some of the data coming from event hub.
My data is something like: {"id":"1234",...}
I'd like to write a blob prefix that is something like: foo/{id}/guid....
Ultimately I'd like to have one blob for each id. This will help how it gets consumed downstream by a couple of things.
What I don't see is a way to create prefixes that aren't related to date and time. In theory I can write another job to pull from blobs and break it up after the stream analytics step. However, it feels like SA should allow me to break it up immediately.
Any ideas?