When creating a Stream Job which outputs to Blob Storage, one has to specify a "Path Pattern", such as:
telemetry/{date}/{time}
This appears to be in UTC, and even when specifying just a {date}, the timezone is relevant.
What time is it using for this and is it possible to reference a timezone? Is it using the TIMESTAMP, and if so, can I modify that with a timezone?
EDIT: 2/27/2017 - here is a typical query I'm working with:
SELECT
measurement.ArrayValue.Taken,
event.HubId,
measurement.ArrayValue.CollectorId,
measurement.ArrayValue.SensorId,
measurement.ArrayValue.SensorValue
INTO
[BlobStorage]
FROM
[IoTHub] as event
CROSS APPLY GetArrayElements(event.Measurements) as measurement
Thanks
-John