Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Tdawg90
Microsoft Employee
Microsoft Employee

How to read a directory of Parquet files in power Bi? ie with their changing GUIDs

The new Parquet connector is fine, however a common scenario is using Scala/spark/bricks ect in the production on the data files.  In all cases that I'm familiar with, files are written per partition with guids.  

 

In my specific case, because this is cooked data for dashboards, I can keep it to a single partition on an ADLS Gen2 Blob storage.  However the GUID will change with each set of daily data.  And then the refresh will 404 on the subsequent refreshes. 

 

How can I have PBI read a directory of parquet files, or supply wild signs in the path?

5 REPLIES 5
MezTemplar
New Member

Here is the query I use

let

    Source = AzureStorage.Blobs("https://mystorageaccount.blob.core.windows.net"),

    AuditLogs = Source{[Name="logsfolder"]}[Data],

    LogContent = Table.Column(AuditLogs,"Content"),

    CombineFiles = List.Transform(LogContent , (row) => Parquet.Document(row)),

    LogTable = Table.Combine(CombineFiles)

in

    LogTable

alicanerturk
New Member

Hi,

I retrieve a Parquet file from a URL. If you need to do the same, you can follow these instructions:

  1. Click on Transform Data.

  2. Create a Blank Query.

  3. Enter the following code in the query editor:let
    // URL of the Parquet file
    Source = Binary.Buffer(Web.Contents(""YOUR URL"")),
    // Load the Parquet file into a table
    Table = Parquet.Document(Source)
    in
    Table

  4. Replace "YOUR URL" with the actual URL of your Parquet file.

     

    Thank you.

Azure_newbie
Helper II
Helper II

Did you found the solution?

amitchandak
Super User
Super User

@Tdawg90 , You can add azure data lake gen 2 folder and try out

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

I'm guessing you're referring to ADLS Gen2 File Share? Or is there another connector I'm not seeing.  The Local 'folder' option only seems to all local directories

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors