Hi All,
I am new to R and RShiny.
I deployed a basic app, which takes input from user about a table name in hive, and gives first 1000 records for today using a data table.
I have a problem with the session, when more than one user is using the shiny web app, then both users sessions conflict and one of the user have to wait untill other users request is completed.
Also the promises package provides methods for asynchronous programming that can be used to keep long running events from blocking other users' sessions.
When an app is created using RShiny, opens single R instance for multiple users.
So, any number of concurrent users will have to wait for that one single R instance.
How to overcome this case? any ideas?