RateLimitException hit for all write/upload operations
See original GitHub issuecf version: 1.0b1 python version: 3.7.3
I’m not able to write (with cartocontext.write) or upload (with dataset.upload) to my carto account with v1.0b1. I keep getting RateLimitException
Looking into it, I’m not sure why this would be happening 🤷♂
@alrocar any idea?
from cartoframes.auth import set_default_context, Context
from cartoframes.data import Dataset
cc = Context(
base_url='https://eschbacher.carto.com/',
api_key='abc123'
)
set_default_context(
context=cc
)
df = pd.DataFrame({
'lat': range(10),
'lng': range(10, 0, -1),
'attr': list('abcdefghij')
})
## This will raise a RateLimitException
## Behavior is the same for new table and overwriting existing tables
cc.write(
df,
'test4',
overwrite=True
)
## This will raise a RateLimitException too
Dataset.from_dataframe(df).upload(table_name='isthisthingon')
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Rate limits | Stripe Documentation
A rate limiter that limits the number of requests received by the API within any given second. For most APIs, Stripe allows up...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for looking into this @oleurud. Yeah, another one of those strange transient ones. I’ll ping back if I see anything again.
In the last 7 days, we have only your 7 requests from a total of 3.370.
For now, I would forget this one, but I will keep an eye on the dashboard the following days.
I am going to close it, but feel free to reopen if you see something wrong or it is happening again