Questdb Nodejs Client not working
I get this error when trying to run the questdb client in miniflare. I have posted a minimum reproducible error - https://github.com/apolo-damasco/cf-workers-questdb
1 Reply
I have contacted the questdb team which came back with this
From the error stacktrace it seems like somehow node.js is messed up, like Uint8Array.fill() would have a different prototype, or could be from the a different version of node?Node source code:
In our case the fill parameter is 0, so ending up creating a new FastBuffer, which extends Uint8Array.
…and after this I am kind of lost.
According to the stacktrace Uint8Array.fill(...) is called with the wrong parameters.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/fillstart is the second parameter.
How the utf8 string gets there ???
It could also be that typescript compiles into some weird js code, so maybe it is a tsc bug?
But no one ever reported any issues with using the client from typescript.
1:27
I wonder if Cloudfare could help to investigate the issue?
Maybe it is really something to do with how they run the code, maybe the node libraries get mixed up somehow, or they bind a new prototype for the fill() function?