Lakehouse1 という名前のレイクハウスを含む Fabric テナントがあります。
100台のIoTデバイスからの読み取りデータは、Lakehouse1のDeltaテーブルに追加されます。各読み取りデータセットは約25KBです。1日あたり約10GBのデータが受信されます。
すべてのテーブルと SparkSession 設定はデフォルトに設定されています。
クエリの実行速度が遅いことに気づきました。さらに、レイクハウスストレージには、使用されなくなったデータとログファイルが含まれています。
使用されなくなったファイルを削除し、小さなファイルを、ファイルあたり 1 GB を目標サイズとする大きなファイルに結合する必要があります。
どうすればいいでしょうか? 適切なアクションを正しい要件にドラッグしてください。各アクションは1回、複数回、またはまったく使用されない場合があります。コンテンツを表示するには、ペイン間の分割バーをドラッグするか、スクロールする必要がある場合があります。
注意: 正しい選択ごとに 1 ポイントが付与されます。

正解:

Explanation:
* Remove the files: Run the VACUUM command on a schedule.
* Combine the files: Set the optimizeWrite table setting. or Run the OPTIMIZE command on a schedule.
To remove files that are no longer used, the VACUUM command is used in Delta Lake to clean up invalid files from a table. To combine smaller files into larger ones, you can either set the optimizeWrite setting to combine files during write operations or use the OPTIMIZE command, which is a Delta Lake operation used to compact small files into larger ones.