I have a system collecting data from a device and sending data in a JSON format to an Azure Eventhub. There is an Azure stream analytics stream, that takes the data from the eventhub and outputs it to PowerBI. It sends data every second. Sometimes, Internet connection is lost and the system keeps collecting data from the device. When the Internet connection comes back up, it sends all the collected data to eventhub. I would like it to zip or compress the data before sending.
But the Stream analytic input formats are only JSON,CVS or Avro. Would compressed Json be automatically un-compressed? Or we cannot send compressed data to Azure stream analytics?