Need to know the error message when HubDB table has reached 10,000 rows limit.
SOLVE
Hi,
We are planning to create a new HubDB table when the existing HubDB table has reached its limit (10,000 rows per HubDB table).
So, I would like to know what error message will come in the API response when we try to add rows to the table that has reached the limit. On receiving that particular error message we will create a new table.
We are planning to create a new HubDB table when the existing HubDB table has reached its limit (10,000 rows per HubDB table).
So, I would like to know what error message will come in the API response when we try to add rows to the table that has reached the limit. On receiving that particular error message we will create a new table.
Thanks.
When you try to add rows to a HubDB table that has reached its 10,000-row limit, the API response will typically return an error message indicating that the table has exceeded its row capacity. The exact error message may vary, but you should look for a response code related to "limit exceeded" or a similar message. Once you receive this error, you can trigger the creation of a new table as planned. It's advisable to handle this in your code to automate the transition smoothly.
We are planning to create a new HubDB table when the existing HubDB table has reached its limit (10,000 rows per HubDB table).
So, I would like to know what error message will come in the API response when we try to add rows to the table that has reached the limit. On receiving that particular error message we will create a new table.
Thanks.
When you try to add rows to a HubDB table that has reached its 10,000-row limit, the API response will typically return an error message indicating that the table has exceeded its row capacity. The exact error message may vary, but you should look for a response code related to "limit exceeded" or a similar message. Once you receive this error, you can trigger the creation of a new table as planned. It's advisable to handle this in your code to automate the transition smoothly.