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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
patoduck
Helper III
Helper III

R Script error

I have an R Script running on SQL 2017 ML R Server (So no memory problem, etc)

PowerBI connects to a file containing a dataset with product number and URL. Upon inspection it will fail with timeout, but 

 

 

library(readxl)
library(jpeg)
library(scales)
library(plotrix)
library(gridExtra)
library(dplyr)
library(data.table)

dataset = read_excel("C:/Temp/Products.xlsx", sheet = "Sheet1")

datalist = list()

nRowsDf <- nrow(dataset)

for (i in 1:nRowsDf) {
tryCatch({
#Convert this from Data.frame to Vector
avector <- as.vector(dataset$URL)
varenummer <- as.vector(dataset$Varenr)
Sku <- as.vector(varenummer[[i]])
download.file(avector[[i]], "image.jpg", mode = "wb")
painting <- readJPEG("image.jpg")
dimension <- dim(painting)
painting_rgb <- data.frame(
  x = rep(1:dimension[2], each = dimension[1]),
  y = rep(dimension[1]:1, dimension[2]),
  R = as.vector(painting[,, 1]), #slicing our array into three
  G = as.vector(painting[,, 2]),
  B = as.vector(painting[,, 3])
)

k_means = kmeans(painting_rgb[, c("R", "G", "B")], algorithm = "Lloyd", centers = 6, iter.max = 300)
test = (sapply(rgb(k_means$centers), color.id))

Color = lapply(test, `[[`, 1)
Values = k_means$size
Percentage = k_means$size / sum(k_means$size)
Final = do.call(rbind, Map(data.frame, Color = lapply(test, `[[`, 1), Values = k_means$size, ProductNumber = Sku, Percentage = Percentage))

Final$i <- i # keep track of  iteration 
datalist[[i]] <- Final # add iteration to list

#R = Final[with(Final, order(-Percentage)),]
}, error = function(e) { })
closeAllConnections() 

}

big_data = rbindlist(datalist)

 

 

 

Upon inspection it will fail with timeout, but opening the script is Rstudio o Visual Studio shows the folling error :

 

Error in file(file, ifelse(append, "a", "w")) : 
cannot open the connection
In addition: Warning message:
In file(file, ifelse(append, "a", "w")) :
cannot open file 'myDF.csv': Too many open files

I have also posted the error in Stackoverflow so if you can solve it you can also get some point overthere 🙂

 

 

 

 

 

1 ACCEPTED SOLUTION

The issue at the end is not related to Power BI. It is a limitation with R and Windows. It will affect even if you run the code in ML services.

 

If I find another solution I will post it accordingly.

View solution in original post

3 REPLIES 3
patoduck
Helper III
Helper III

It looks like is not possible to use R in windows. The OS will lock itself!

 

 

This is an issue with Windows that locked files. The best things is to avoid Windows. For people that need to use Windows there is a solution. I tested it with Windows 7:

Hi @patoduck,

 

Thanks for sharing with us. Why not run the code in the ML server? We can just use Power BI to retrieve plain data. The R in Power BI focus on data modeling. I would suggest doing unnecessary data manipulation outside of Power BI.

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

The issue at the end is not related to Power BI. It is a limitation with R and Windows. It will affect even if you run the code in ML services.

 

If I find another solution I will post it accordingly.

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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