瀏覽代碼

Fix window size issue of ES. (#5175)

### What problem does this PR solve?

#5152

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.17.0
Kevin Hu 8 月之前
父節點
當前提交
39b96849a9
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      graphrag/utils.py

+ 1
- 1
graphrag/utils.py 查看文件

@@ -524,7 +524,7 @@ def rebuild_graph(tenant_id, kb_id):
src_ids = []
flds = ["entity_kwd", "entity_type_kwd", "from_entity_kwd", "to_entity_kwd", "weight_int", "knowledge_graph_kwd", "source_id"]
bs = 256
for i in range(0, 10000, bs):
for i in range(0, 39*bs, bs):
es_res = settings.docStoreConn.search(flds, [],
{"kb_id": kb_id, "knowledge_graph_kwd": ["entity", "relation"]},
[],

Loading…
取消
儲存