observablehq / feedback

Customer submitted bugs and feature requests
42 stars 3 forks source link

Is there plan about support DoltDB and public DoltHub data ? #534

Closed Code2Life closed 1 year ago

Code2Life commented 1 year ago

DoltDB is a new distributed database that combining features of Git & MySQL. Dolt also have a DoltHub which hosts public data:

https://www.dolthub.com/discover https://docs.dolthub.com/concepts/dolthub/api

Seems all public data could be queried through Dolthub GraphQL/API endpoint.

If this could be supported on Observablehq as alternative to SQLite, it would be really cool.

Some pros I came up with comparing with SQLite:

CobusT commented 1 year ago

Since there is an API interface to Dolthub-hosted databases (limited to 200 rows, though) you can use it already using the DoltDatabaseClient here: https://observablehq.com/@observablehq/dolt

The nice thing is that this can be used in Public notebooks!

Code2Life commented 1 year ago

Awesome, thanks a lot !