-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to Download Files from File Dataset - Error: C stack usage 160275245380 is too close to the limit #402
Comments
I have the same error, but in this case, my datastore is an Azure SQL DB. I am creating a tabular dataset from that datastore and trying to read that into a data frame. Interestingly, this works fine on Python, and I think the R package is calling the same python code. Right now, I am using a workaround where I download the files locally and read them into R data frames.
I am trying to understand why I am running into a C stack error when I try to to the conversion to R data frame from a |
I have use |
I am encountering the same error when trying to load a dataset on a compute cluster. When run on an ML compute instance via RStudio, the code below runs fine. When executed as part of a pipeline in an
|
Also: Attempting to use |
For anyone else blocked by the same issue, I was able to work around it by downloading files directly from the Instead of
I used
|
Also seeing the same error when attempting to use |
I'm now seeing the same error after deploying previously working R script and |
Blocked by same issue, when mounting a file dataset. |
|
I get also the same C stack error when trying to get some data from the workspace Datastore using a simple sql query: qry_str <- "SELECT * FROM ws_sql_view" The code fails in the last line where we directly use python module in R to get the dataset object (i.e, Any news for a possible solution for this issue? |
For anyone else blocked by this issue, I discovered that the difference between the two workspaces mentioned above was that one used a datasource that accessed blob storage via an account key and the other used a datasource that accessed blob storage with a SAS token. Attempting to use a datasource with a SAS key from R SDK triggered the 'C stack' error. Using the datasource with an account key did not. |
Tabular datasets support in the R SDK and RScriptStep are experimental and we will not be triaging issues for them at this time - please do not take a dependency on them. We willfollow up on the file datasets issue with recommended approach. |
Describe the bug
Unable to download files to compute instance using
download_from_file_dataset
Screenshots
![image](https://user-images.githubusercontent.com/717900/97822898-67e77580-1d0b-11eb-9981-137a8f264f05.png)
![image](https://user-images.githubusercontent.com/717900/97822910-75046480-1d0b-11eb-8aef-4cff2f6b9e77.png)
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: