I need to increase the daily request limit, which is currently set at 20,000. Are these limits applicable to GET requests, or do they also apply to PUT/POST requests? What are the possible solutions for raising this limit? Additionally, could you provide the default rate limits for requests per minute and per hour? I’m currently using the default embedded H2 database for reference.
@ganeshthirumani5 , the limit of 20,000 does include both reads and writes (GET, PUT, POST). It’s a recommendation for the scale at which you should be using an external PostgreSQL database, which is a Nexus Repository Pro feature. This is not an enforced limit, so there’s no per-hour or per-minute rate limiting. The reason we recommend using PostgreSQL is that it handles concurrency much better—there are some situations where we’ve seen the embedded database options experience corruption, usually because of either too-high concurrency or repeated sudden shutdowns.