16 Replies
Hmmm, but these don't seem to be enough number for my use-case
Indexes per account 50,000 (Workers Paid)
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
This issue is happening from : 2024-10-25T14:36:55.873Z
whatever improvement was made on this date, caused this to break.
Triggering it from binding or api, even tho the call return succees true, it actually does nothing on the index. No delete, no insert, no upset
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
Thanks for getting back! Okay thank you.
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
I am noticing a large number of
AiError: 3001: Unknown internal error
s when doing some Vectorize queries. Is there any way to get more insight into what these are? I have no clue if it's not finding a vector by ID, if I'm getting rate limited, or if it's something I can't controlI've been browsing through messages in the past and documentations on vectorize, looks like now it's a great time to jump in, considering the beta release of workflow as well. though my concern is full RAG pipeline still needs a long way to go, so I'd prefer develop locally using llamaindex+chromadb(or equivalent)+litellm(embedding, inference, rerank, whisper, etc) first, before switching to cloudflare edge side completely, which I do need at a certain point because the product I am building requires global coverage.
may I ask guy who already had previous experiences here, that, is this a viable plan, or anything I should keep in mind for choosing tech stack or develop or doing gitops? thanks a million!
Hi, is Cloudflare Vectorize now support $in metadata filter ?
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
How can I see what vectors I have in my index? I checked the commands I could run, and none mentioned showing the vectors I got in my index. I want to be able to delete and test stuff before I run the actual thing. Any guidance would be appreciated.
Unknown User•5w ago
Message Not Public
Sign In & Join Server To View
Hello, Quick question, I get really slow response times in Vectorise. Like seconds of response time. My code is very simple, so nothing else should be slowing it down. I am in Greece btw, so not sure if that plays a role. I get the same speeds when deploying the worker.
@Kingsley Michael I removed your message as this is the channel for #vectorize, please use #off-topic for anything unrelated to Cloudflare products
The limits page says that there's a maximum of 5,000,000 vectors per index, but I'm getting a 4002 error when attempting to upsert past 240,000. any idea why or things I should change?
EDIT: RESOLVED, I was using V1 instead of V2
TypeError: vectors.map is not a function
What does this mean when it's triggered from this:
await vectorIndex.insert({
id: String(data[0][dataId]),
values: vectorArray,
metadata
});
EDIT:
I tested it on a small function:
I got the same error: vectors.map is not a function...