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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Retrieve data from DynamoDB

Has anyone in the community successfully established a direct connection from Power BI to DynamoDB? If so, could you please share your approach or any insights you might have?

1 REPLY 1
freginier
Super User
Super User

There's no native DynamoDB connector in Power BI, and DynamoDB (being a NoSQL key-value store) isn't really built for the scan-heavy analytical queries Power BI throws at a source, so "direct" connections tend to be painful. The approaches people use, roughly best to worst for analytics:

 

1) Export to S3 + Amazon Athena (recommended). Use DynamoDB's point-in-time "Export to S3" (or a Glue job), then query that data in S3 with Athena. Power BI has a native Amazon Athena connector (via the Athena ODBC driver), so this gives you a clean, refreshable connection and keeps the load off your live table.

 

2) Third-party ODBC driver. CData and Simba both sell DynamoDB ODBC drivers; install one, then use Power BI's ODBC connector. It works for direct access, but it's a paid driver and the queries hit the live table.

 

3) Replicate to a relational store (Redshift / RDS / Fabric) via AWS Glue, DMS or AppFlow, then point Power BI at that. Best if you need scheduled, governed reporting.

 

4) REST via API Gateway + the Web connector. Possible with Web.Contents, but you have to handle AWS SigV4 signing and paging yourself, so it's generally not worth it unless the dataset is tiny.

 

If this is for reporting/dashboards, option 1 (export to S3, then Athena) is usually the most reliable and cost-effective.

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors