-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fail to ingest data to index after index created #4256
Comments
How many split files are in this index? Is it over 10K? BTY, you can join this Discord channel at https://discord.com/channels/908281611840282624/908281611840282627 |
The index is just created. No data has been ingested to it. |
@mingshun thanks for the report. So, the control plane is retrieving all indexes metadata in one request and if the payload is too big, you will get this error. How many indexes do you have? We can provide a quick fix by increasing the max size of gRPC messages but we first need to be sure if my assumption is correct. |
@fmassot There are 1027 indexes. Using PostgreSQL metastore. |
Ok, I think increasing the max size of gRPC messages should solve your issue. (I'm preparing a release 0.6.5 here main...release-0.6) |
@mingshun, we just released the 0.6.5. Can you try it and see if it solves your issue? You should not see this problem up to 5000k indexes. |
@dojiong : you might be interested in the 0.6.5 release too. |
@fmassot 0.6.5 works. |
Describe the bug
I deploy the quickwit in my prod env with k8s. It works for months normally. But I cannot ingest data to recently created index with rest api. The
POST /api/v1/indexes
respond200
, butPOST /api/v1/my-index/ingest
respond404
with following response body:I can get index info with
GET /api/v1/indexes/my-index/describe
. I seems the index has been created.I found quickwit-metastore reports the following error everytime I create a new index:
I tried to restart quickwit-control-plane. After restarted, I found quickwit-control-plane reports the following error:
Steps to reproduce (if applicable)
The problem is still in my prod env, but I cannot reproduce in my local env.
Expected behavior
How to fix it?
Configuration:
Please provide:
quickwit --version
The text was updated successfully, but these errors were encountered: