Show HN: Query Google Sheet data using PostgreSQL clients
roapi.github.io
Show HN: Query Google Sheet data using PostgreSQL clients
1–10 of 24 posts
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#2Re: Show HN: Query Google Sheet data using PostgreSQL clients
#3Does this client do something smart to mitigate that, have the limits been relaxed, or is it still a problem?
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#4Last time I tried to do the moral equivalent of this (not using SQL, just some custom python), I ran afoul of the rate limits really quickly. Does this client do something smart to mitigate that, have the limits been relaxed, or is it still a problem?
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#5Last time I tried to do the moral equivalent of this (not using SQL, just some custom python), I ran afoul of the rate limits really quickly. Does this client do something smart to mitigate that, have the limits been relaxed, or is it still a problem?
We cache all the data in memory in Arrow format so queries don't need to go through google api, it will only hit google api when a data refresh is needed.
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#6Last time I tried to do the moral equivalent of this (not using SQL, just some custom python), I ran afoul of the rate limits really quickly. Does this client do something smart to mitigate that, have the limits been relaxed, or is it still a problem?
We cache all the data in memory in Arrow format so queries don't need to go through google api, it will only hit google api when a data refresh is needed.
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#7Earlier quoted context omitted.
We cache all the data in memory in Arrow format so queries don't need to go through google api, it will only hit google api when a data refresh is needed.
How does cache invalidation work?
I have plan to add automated streaming data update in the background, starting with delta lake tables. It should all be very straight forward to implement.
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#8Re: Show HN: Query Google Sheet data using PostgreSQL clients
#9This is cool; from reading the descriptions I presume this doesn't support writing - is there any intention to do so?
Re: Show HN: Query Google Sheet data using PostgreSQL clients
#10The great thing about it is that you get a very versatile admin UI for free. The downsides however are rate limits and the fact that I can't think of any way to build in some sort of safety that would prevent people from accidentally deleting a bunch of data with a mouse click. I would love to hear if anyone has real life experience with the approach.