This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi Everyone!
I´m working with MongoDB as data source of my Power BI.
I created a ODBC conector with this driver:
https://www.progress.com/odbc/mongodb?sfdcid=701a0000002MkKS&cmpid=ddblog
And I have the impression that there isn´t a estable connection or it doesn´t work fine.
It takes so much time refreshing data and sometimes show me a error.
Anyone who has worded with MongoDB and Power BI together can tell me their impressions??
Work fine together ??
Thanks!
Hi @Anonymous,
Based on my research, we connect to MongoDB via MongoDB ODBC Driver generally, as this driver is not published by Microsoft. It may be have some issue when integrate with Power BI Desktop. In your scenario, when you refresh the data, which error throws out?
By the way, there is already a idea about developer built-in MongoDB data source, you can also vote on it: MongoDB.
Best Regards,
Qiuyun Yu
Thanks for the answers!
I'm trying differents ways to upload the model.
I will proof the R connection as you tell me, @Greg_Deckler.
@v-qiuyu-msft, I jus voted for the idea , I will wait for the conclusion.
Regards.
Well, anything going through ODBC is going to be slow. You might consider using R to connect to mongodb using rmongodb package:
http://stackoverflow.com/questions/35028809/connect-r-to-remote-mongodb-with-rmongodb
Hi @Greg_Deckler!
Can you explain me more about this way you told me?
I don't see exactly what steps I have to do and the interaction between R and Power BI.
Thanks!
In the Desktop, you can create entire queries based on R or individual steps within a query based upon R.
Hi @Greg_Deckler!
I have created a Query based on R script to connect with Mongo DB but the table show me an ERROR colummn.
My R-Script is like this:
library(mongolite)
m<-mongo(collection="AVE",db = "MIURA",url = "url", verbose = F)
Query<-m$find(query = "{}", fields = "{\"_id\":0}", sort = "{}", skip = 0, limit = 0, handler = NULL, pagesize = 1000)
And the resulting table is this:
I can't show the arrays inside of the clients column.
Someone can help me???
Not sure of your data in MongoDB, I take it that the "clients" column is some sort of list/array? You may have to convert whatever it is into something Power BI understands, like a Table or List.
For example, here are is some R code for processing information resulting from a Machine Learning call:
print("Result:")
result = h$value()
print(fromJSON(result))
##Return results back
inter <- do.call("rbind", finalResult$Results$output1$value$Values)
MyFinalResults <- data.frame(inter)
names(MyFinalResults) <- finalResult$Results$output1$value$ColumnNames
rm(list=setdiff(ls(), "MyFinalResults "))
Hi @Greg_Deckler!
Can you tell me what R package are you using?
I´m a begginer in all of this R-world.
Thanks!
I use Microsoft R Open:
https://mran.microsoft.com/download/
I meant to the library inside R.
What library are you using: mongolite, rmongodb, rmongo....?
I saw that there are differents options between each other.
Thanks!
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.