312 questions
0
votes
0
answers
59
views
Azure Container Apps native Functions in R
I am trying to use Azure Container Apps native Functions (announced earlier this year) to run some R code in response to messages on a Service Bus queue. I have a working trigger but it is not making ...
0
votes
1
answer
55
views
How to avoid Plumber filters blocking non-existent routes before returning 404?
I am developing an internal API using Plumber that is accessed by our public API which handles all authentication. Basically, we receive information about what role a user has as a header, e.g. 100 ...
2
votes
1
answer
124
views
How do I parse text from my front-end into R?
I'm building a Vue app that uses R for the back-end. I was able to successfully pull in data from a form into R. I'm using the plumber library. However, I don't know how to parse text.
Here is the R ...
0
votes
0
answers
33
views
Getting error trying to use plumberDeploy::do_provision function
I am using plumberDeploy to deploy a plumber api into digital ocean. Unfortunately, I am getting this error I do not know how to solve. I have created new public and private keys and these are set in ...
-1
votes
1
answer
110
views
How to Keep a Plumber API Running on AWS EC2 or Explore Alternative Deployment Options?
I am new to AWS and currently working on deploying a Plumber API written in R. This API serves predictions using a pre-trained GAMLSS model. I have set up an EC2 instance with Amazon Linux 2 where R ...
1
vote
0
answers
69
views
R Plumber API: Dealing with query string input that uses array syntax
I'm building a Plumber API that interfaces with output from a survey platform. The survey platform passes variables as a query string appended to the URL redirect.
If the survey question only has one ...
1
vote
0
answers
70
views
Plumber ignores custom error for fromJSON
I am working on building custom error handling using plumber. I have one custom error function that is working. missing_val_check checks the dataframe for missing columns and if anything is missing, ...
0
votes
0
answers
50
views
What is the default environment for Plumber in Docker?
I ran into an issue where I run the following at the top of my entrypoints.R file:
load("some_file.Rdata") but the objects never seem to load. I made this endpoint to check for what is ...
0
votes
0
answers
124
views
Show messages from plumber API in shiny APP
I have API in plumber which has msg endpoint which executes slow_function. I also have shiny APP in which I make msg endpoint request. Is it possible to somehow capture messages from API and display ...
1
vote
0
answers
163
views
React Post + Plumber API resulting in CORS Error:
I am working on my very first React project (as a frontend) combined with R (Backend) + Plumber (API).
My Get HTTP request works fine but as soon as I make a POST request I get the following error ...
0
votes
0
answers
89
views
Troubleshooting Memory Allocation Issues in Deployed Plumber API with Large Datasets"
I have previously inquired about this issue without obtaining a solution. To provide more details in the hope of resolving the problem:
I have developed a Plumber API that is deployed on a private ...
1
vote
0
answers
64
views
error in png() Rmarkdown Word with Plumber API
I am creating a Plumber API to generate a MS Word document with images, however, I get the following error in Swagger
"message": "\u001b[1m\u001b[33mError\u001b[39m in `png()`:\u001b[...
0
votes
0
answers
68
views
How to schedule a function to run every hour on Plumber?
I have a Plumber web hosting with no access to cron command.
How can I execute some R function every day?
P.S. I'm aware of cronR package but this requires to have access to the cron command, in my ...
1
vote
0
answers
110
views
Is there any way to parallelize with plumber in windows?
I want to parallelize a task with plumber, handling multiple requests at the same time. I have found an example that I have put in practice in windows and it doesn't work, but taking the same example ...
0
votes
0
answers
155
views
How do I receive CSV file using Plumber API to send back a report?
I am currently working on a project involving a Plumber API, and I've encountered a challenge related to handling CSV files sent to the API.
I have a Plumber API where I need to receive two CSV files ...