Row Count exceeded 100000 #579
Unanswered
SriramItrend
asked this question in
Q&A
Replies: 2 comments
-
Hello @SriramItrend, Is the query involved here a We do have our 100K row limit documented here: But typically the workaround needed is to use a |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi Omar ,
If I try to select the 1,00,000 above table values I get an error ( Row
Count exceeded 100000 ) .
Regards,
Sriram Jayavel
…On Tue, Dec 19, 2023 at 11:08 PM Omar Ramos ***@***.***> wrote:
Hello @SriramItrend <https://github.com/SriramItrend>,
Is the query involved here a SELECT query or some type of INSERT / UPDATE
/ DELETE query?
We do have our 100K row limit documented here:
https://planetscale.com/docs/reference/planetscale-system-limits
But typically the workaround needed is to use a LIMIT / OFFSET, or
pagination options that could be built-in to your ORM if you are using one,
so that you can retrieve or operate on a subset of rows at a time (e.g. 100
/ 1000 / 10000) until you work through the entire result set.
—
Reply to this email directly, view it on GitHub
<#579 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BDVZA74KY2TJEVSRYT23LBLYKHGHVAVCNFSM6AAAAABA2WTUJ6VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TSMBQGM3TG>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using planetscale - Mysql Server
if trying to add more than 1,00,000 rows in my table , throw the error
"
Mysql:target:itrenddb.-.primary:vttablet:rpc error :code = Aborted desc = Row Count exceeded 100000 (CallerID: 1vcsx0eo349iqhfcw4c0)
"
Please be suggest how to solve
Beta Was this translation helpful? Give feedback.
All reactions