garvitg
garvitg
CDCloudflare Developers
Created by Victor on 2/14/2025 in #vectorize
https://discord.com/channels/
Hey @Victor. Thank you for reporting this. I am wondering if this is related to caching. Normally, caches get invalidated automatically within seconds of an index being deleted/recreated and that may explain why a subsequent upsert request succeeds. However, you may occasionally observe a delay longer than a few seconds. Please feel free to DM with more details about your index if you notice this happening frequently.
2 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/30/2025 in #vectorize
Hi, I wanted to know about pricing of
^ This calculation is valid as long as we are scoping these vectors/queries within a single Vectorize index.
7 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/30/2025 in #vectorize
Hi, I wanted to know about pricing of
It will be the former (10000+1000) * 376
7 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/30/2025 in #vectorize
Hi, I wanted to know about pricing of
If you have a Vectorize index with dimensionality 376 and 10k vectors stored, and if you make 10 queries against this index, the queried vector dims for that index would be: (10000 + 10) * 376 = 3,763,760 dimensions Still unsure what you mean by text elements. Do you mean to refer each text element as a separate Vectorize index with 10k vectors each?
7 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/30/2025 in #vectorize
Hi, I wanted to know about pricing of
Hi @Utkarsh Saxena. Could you please explain what you mean by the document? Are you using the terms document and a Vectorize index interchangeably?
7 replies
CDCloudflare Developers
Created by Eric on 2/6/2025 in #vectorize
https://developers.cloudflare.com/api/
Hey @Eric. What would you like to see fixed here?
2 replies
CDCloudflare Developers
Created by Jorgo on 1/24/2025 in #vectorize
Hello anyone can help me with a
Hi @Jorgo. We have implemented a fix, could you please share your index details over DM so we can validate it for your index?
8 replies
CDCloudflare Developers
Created by Jorgo on 1/24/2025 in #vectorize
Hello anyone can help me with a
Hi @Jorgo, thank you for reporting! We are looking into this.
8 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/15/2025 in #vectorize
Hi, I am having issue in inserting
Hi @Utkarsh Saxena, the processedUpToDatetime value for your index does seem a bit unexpected and I can help look into that. Could you please DM the name of your index and the account id you are using?
15 replies
CDCloudflare Developers
Created by Noam on 1/23/2025 in #vectorize
Hello,
Hi @Noam. Thanks for reaching out! The Vectorize platform limits are described in https://developers.cloudflare.com/vectorize/platform/limits/. The global rate limit for Cloudflare APIs is 1200 requests per 5 minutes (https://developers.cloudflare.com/fundamentals/api/reference/limits/) and the Vectorize HTTP APIs fall under that limit. If you would like a higher throughput of query operations in Vectorize, we recommend the use of Vectorize Bindings in Workers: https://developers.cloudflare.com/vectorize/get-started/intro/#3-bind-your-worker-to-your-index. Vectorize queries received through a worker binding would not be rate limited, and you could potentially receive a throughput higher than 10k queries per second (as long as your requests are spread out geographically). Please feel free to add more details on this thread or over DM if you'd like to discuss your use case further. We'd also be happy to record any feedback that you have for Vectorize or the Developer Platform as a whole.
1 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/15/2025 in #vectorize
Hi, I am having issue in inserting
Happy to help! 🙂
15 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/15/2025 in #vectorize
Hi, I am having issue in inserting
Well that probably explains it. Please use the Vectorize interface for V2 indexes and not VectorizeIndex interface (which is used for V1 indexes). For V2 indexes, inserts would not work if you use the VectorizeIndex interface. Also, there are no res.count or res.ids fields for V2 indexes, since insertions are asynchronous. Please define your worker environment as:
export interface Env {
VECTORIZE_INDEX_2: Vectorize;
}
export interface Env {
VECTORIZE_INDEX_2: Vectorize;
}
For more details about the transition from V1 to V2 indexes, please refer to https://developers.cloudflare.com/vectorize/reference/transition-vectorize-legacy/.
15 replies
CDCloudflare Developers
Created by Utkarsh Saxena on 1/15/2025 in #vectorize
Hi, I am having issue in inserting
No description
15 replies
CDCloudflare Developers
Created by Bob on 1/17/2025 in #vectorize
Hello 🙂
Hi @Bob. You cannot create a Vectorize index from the UI as of now. You can create one via the Wrangler CLI or via an REST API call. Please refer to https://developers.cloudflare.com/vectorize/best-practices/create-indexes/ for more guidance on creating indexes.
1 replies