getting following error
HTTP response headers: HTTPHeaderDict({‘content-type’: ‘text/plain; charset=utf-8’, ‘access-control-allow-origin’: ‘’, ‘vary’: ‘origin,access-control-request-method,access-control-request-headers’, ‘access-control-expose-headers’: ‘’, ‘x-pinecone-api-version’: ‘2024-04’, ‘x-cloud-trace-context’: ‘9af4b93305af93d3a454db4035c2885e’, ‘date’: ‘Wed, 06 Aug 2025 21:34:16 GMT’, ‘server’: ‘Google Frontend’, ‘Content-Length’: ‘198’, ‘Via’: ‘1.1 google’, ‘Alt-Svc’: ‘h3=“:443”; ma=2592000,h3-29=“:443”; ma=2592000’})
HTTP response body: Request failed. You’ve reached the max pods allowed in project Default (0). To increase this limit, adjust your project settings in the console. Contact a project owner if…
My question is should we try to increase pod limit and is it possible to increase pod limit in starter plan as I am not able to find the option in setting as mentioned in doc Manage pod-based indexes - Pinecone Docs
Thanks again @admin16 , I’ll have to check internally since you shouldn’t be receiving any error related to pod indexes (or their quota) when creating a Serverless index.
@admin16 - I had a check with our engineering team and we’re unable to reproduce creating a new Serverless index without issue.
One thing we did notice is that your code sample might not be working properly because of the if “quiz” … line, do you have more to the code that might be executing without you realising?
Can you try:
list_index_res = pc.list_indexes() existing_indexes = [ index["name"] for index in list_index_res.indexes ]