Skip to Main Content
  • Questions
  • Oracle Cloud Always Free Tier - Apex max simultaneous connections

Breadcrumb

Question and Answer

Connor McDonald

Thanks for the question.

Asked: January 28, 2021 - 12:20 pm UTC

Last updated: July 14, 2022 - 1:50 am UTC

Version: 20.2.0.00.20

Viewed 10K+ times! This question is

You Asked

Hi Tom,

I have an Oracle Cloud Always Free account with an ATP Database with an Apex application associated.

After reading with attention the Details of the Always Free Resources https://docs.oracle.com/en-us/iaas/Content/FreeTier/resourceref.htm#database I have a question about one point.

In the Database area it refers "Maximum Simultaneous Database Sessions: 20". My question is if my Apex application use one of this sessions when an User logs in, if so I can assume that I will only be able to have 20 simultaneous Users in the Apex application right?

Thanks for your help.

Best Regards

and Chris said...

Yes and no :)

You are limited to 20 database session, but there's not a 1:1 relationship between application users and database sessions. APEX uses connection pooling.

So when a user logs in, the app briefly uses a database session to authenticate them and load the homepage. This session is then released back to the pool. It's only used again when they do something that accesses the DB in the app (submit a form, load a new page, filter a report, ...).

It's not like a car where someone stays in their seat for the entire journey, so you can have e.g. 5 passengers max. It's more like musical chairs, but everyone is listening to their own music which starts and stops and different times. Only a fraction of the people are sitting down at any time, so many more people could be "using" five seats (as long as the music doesn't stop for them all at the same time ;)

Exactly how many users these 20 sessions can support depends on the app. If it's processing heavy, where most of the time is on database access, you may not be able to get more. But it's common for people to load a page and spend a few moments reading it before clicking; in these scenarios, 20 database connections could support hundreds of end-users.




Rating

  (2 ratings)

Is this answer out of date? If it is, please let us know via a Comment

Comments

A reader, January 28, 2021 - 4:28 pm UTC

Thanks for the quick and clarifying response, I didn't know that APEX uses connection pooling.

Good job with the car analogy, even non technical person will understand it ;)
Chris Saxon
January 28, 2021 - 5:52 pm UTC

You're welcome and thanks :)

20 simultaneous database connections limit

Arun, July 13, 2022 - 11:27 am UTC

I have built a time entry app on Oracle Apex on Cloud Free Tier, for internal time tracking purposes.
The application will be used by 60-70 team members spread across the US and India, for recording time entries on a daily basis.
It has a simple screen for time entry insert, update and delete, and a login, search and report screen.

The 20 simultaneous database connections limit for Apex on free tier, is that something I need to be concerned with for this requirement?

Please aadvise.

Thanks and regards,
Arun