I am a novice so apologizing ahead if the questions are too simplistic . I have a MEAN stack application from where I can upload a Model (R) to production (AWS EC2/S3 bucket and R container).
- How do I deploy the Model to AWS on the fly.
I can add Plumber code to the model and place it on AWS S3 R Environment but how do I deploy multiple R Models to existing containers ?
(Kind of like in this thread
R code in production - options)
** Note economics does not allow us to use RConnect or Domino, hence looking for more programmatic/open-source approach.
- I have different models to be deployed and the plumber service to be running on say port '8000'. What is the standard way to deploy the plumber files for the different models .
--> Plumber_api1.R
=> entrypoint (p$run(port = 8000))
--> Plumber_api2.R
While port 8000 is running the service can I deploy Plumber_api3.R .
Thanks you.
regards