2

I have an analytics application written in R, using the Shiny package.I build the code using RStudio IDE in AWS SageMaker. Could you please guide the possible ways that I can deploy the web app in AWS and make it available in the public internet. We don't like to use ec2.

Any help would be highly appreciated.

Villa
  • 126
  • 2
  • 9

1 Answers1

2

For this, you will need RStudio Connect. Once you have a server up and running, you can connect your RStudio on SageMaker installation to that server and deploy seamlessly.

I know you say you don't like EC2, but your best bet at the moment is to follow the instructions of this blog Host RStudio Connect and Package Manager for ML development in RStudio on Amazon SageMaker on how to achieve this. It also includes CDK code, so you can kickstart and not even touch EC2 (just follow the instructions, assuming you are broadly familiar with CDK).

Isaiah
  • 2,091
  • 3
  • 19
  • 28
GeorgiosS
  • 46
  • 1
  • Same solution I use – Isaiah Sep 30 '22 at 22:22
  • 1
    @Isaiah Thank you both for sharing the details. I am quite new to sagemaker and R, the AWS document is overwhelming. If possible could you please share a document which would help to setup infrastructure without using CDK. In Sagemaker Rstudio the domain has been created and from AWS marketplace Rstudio connect has been procured, now i like to know how can i keep my application running all the time for external users. – Villa Nov 04 '22 at 09:00