Is there a Node Palette for QuestDB?

Hi,

i have switched form InfluxDB to QuestDB, is there a Node Palette to write into QuestDB like the InfluxDB Node ?

I don't believe there is, but you can use the nodejs client package, by importing it in a function node.

In the On Message tab you can use it like:

const {Sender} =  questDb

const conf = "http::addr=localhost:9000;username=admin;password=quest;"
const sender = Sender.fromConfig(conf);

node.warn({payload:sender})

It will install the package the first time you deploy it (the nodes will be non-interactive while it is installing)

1 Like