You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As title says, I'm having a hard time trying to configure the mosaic client to hit a remote duckdb server instance. Is there a way to configure mosaic client to do so?
Docs says it's done through the Connectors , but I cannot find a connection between the connectors code and the astToDom function.
The docs say the astToDom function can receive a vgplot api context but the code does not accept it.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
First, by default astToDOM will use the singleton Coordinator instance returned by the coordinator() method. So if you first register your desired connector with that Coordinator (instantiate the connector and register it with the coordinator) it should then get used downstream by astToDOM.
Second, astToDOMshould accept your own API context as well. The astToDOM method takes both an AST and an options object as arguments. If the options object includes an api property, the value of that property will be passed down as the API instance to use. If unspecified, a new default API context is created.
Let us know if these aren't working, ideally with some minimal code to reproduce the issue.
Hi!
As title says, I'm having a hard time trying to configure the mosaic client to hit a remote duckdb server instance. Is there a way to configure mosaic client to do so?
Docs says it's done through the Connectors , but I cannot find a connection between the connectors code and the
astToDom
function.The docs say the
astToDom
function can receive avgplot api context
but the code does not accept it.Thanks in advance.
The text was updated successfully, but these errors were encountered: