storage1 という名前の Azure Data Lake Storage Gen2 アカウントと、storage2 という名前の Amazon S3 バケットがあります。
次の表に示す Delta Parquet ファイルがあります。

Workspace1 という名前の Fabric ワークスペースがあり、ショートカットのキャッシュが有効になっています。Workspace1 には Lakehouse1 という名前のレイクハウスが含まれています。Lakehouse1 には以下のショートカットがあります。
Products という別名を持つ ProductFile へのショートカット
Stores という別名の StoreFile へのショートカット
Trips という別名の TripsFile へのショートカット
ショートカットがキャッシュから取得されるデータは何ですか?
正解:B
When the cache for shortcuts is enabled in Fabric, the data retrieval is governed by the caching behavior, which generally retains data for a specific period after it was last accessed. The data from the shortcuts will be retrieved from the cache if the data is stored in locations that support caching. Here's a breakdown based on the data's location:
Products: The ProductFile is stored in Azure Data Lake Storage Gen2 (storage1). Since Azure Data Lake is a supported storage system in Fabric and the file is relatively small (50 MB), this data is most likely cached and can be retrieved from the cache.
Stores: The StoreFile is stored in Amazon S3 (storage2), and even though it is stored in a different cloud provider, Fabric can cache data from Amazon S3 if caching is enabled. This data (25 MB) is likely cached and retrievable.
Trips: The TripsFile is stored in Amazon S3 (storage2) and is significantly larger (2 GB) compared to the other files. While Fabric can cache data from Amazon S3, the larger size of the file (2 GB) may exceed typical cache sizes or retention windows, causing this file to likely be retrieved directly from the source instead of the cache.