Azure Stream Analyticsを使用して、ストリーミングソーシャルメディアデータを取り込むことを計画しています。データはAzure Data Lake Storageのファイルに保存され、Azure SQL Data WarehouseでAzure DatabricksとPolyBaseを使用して消費されます。 ファイルに対するDatabricksおよびPolyBaseからのクエリで発生する可能性のあるエラーが最小限になるように、Stream Analyticsデータ出力形式を推奨する必要があります。このソリューションでは、ファイルにすばやくクエリを実行し、データ型情報を保持する必要があります。 何をお勧めしますか?
正解:A
Explanation The Avro format is great for data and message preservation. Avro schema with its support for evolution is essential for making the data robust for streaming architectures like Kafka, and with the metadata that schema provides, you can reason on the data. Having a schema provides robustness in providing meta-data about the data stored in Avro records which are self-documenting the data. References: http://cloudurable.com/blog/avro/index.html