Open pastelcolors opened 6 months ago
Hi @pastelcolors, the weaviate-client@3.x
library makes use of Weaviate's new gRPC API and so depends on the HTTP/2
protocol used by gRPC as a hard requirement. It is therefore only usable in a server-side environment, e.g. node
.
Yours is a good use-case, however, and we will bear it in mind when we develop an alternative library that has the same API surface as weaviate-client@3.x
only depending on the GraphQL API under-the-hood instead. Such a library should then be usable in the browser and in serverless environments that do not support the HTTP/2
protocol.
As such, I will leave this issue open as a description of this limitation until the alternative library is released as a solution!
P.S. Are you able to reconfigure your Cloudflare Worker to be Node.js compatible? (I do not have experience with Cloudflare Workers so this suggestion may be unhelpful!)
Description
I am trying to use the
weaviate-client
library in a Cloudflare Worker, but I am encountering issues related to thehttp2
module. The error message suggests that thehttp2
package is built into Node.js and is not available in the Cloudflare Workers environment.Context
I have added the following configuration to my
wrangler.toml
file to enable Node.js compatibility:However, even with this configuration, I am still facing the
http2
related error.Steps to Reproduce
weaviate-client
library using npm or yarn.wrangler.toml
with the appropriatecompatibility_date
andnode_compat
settings.weaviate-client
library to make requests to a Weaviate instance.wrangler dev
.Expected Behavior
The Cloudflare Worker should be able to use the
weaviate-client
library to make requests to a Weaviate instance without any issues related to thehttp2
module.Actual Behavior
The Worker fails to execute due to the missing
http2
module, which is not available in the Cloudflare Workers environment.Possible Solution
One potential solution is to use the native
fetch
API provided by Cloudflare Workers instead of relying on thehttp2
module used by theweaviate-client
library.Additional Information
weaviate-client
library version:3.0.0-rc.3