0
votes

I have set up an event hub which I store some events and an Azure Stream Analytics Job which processes them and outputs into a blob container. Given that the message retention in the hub is set to 5 days, how can I process these events again, i.e. to output them into a database?

1

1 Answers

0
votes

OK, for a simple scenario you just have to set the job output start time to an earlier time, as in:

az stream-analytics job start
--resource-group MyResourceGroup
--name MyJobName
--output-start-mode CustomTime
--output-start-time 2020-12-04T08:30:00Z