Increase default max file paths from 30 to 100 and improve documentation
- Bump DEFAULT_MAX_FILE_PATHS to 100 - Add clarifying comment about display
This commit is contained in:
parent
e5e16b7bd1
commit
88a45523e2
2 changed files with 5 additions and 4 deletions
|
|
@ -142,8 +142,9 @@ SUMMARY_LANGUAGE=English
|
||||||
### FIFO: First in first out
|
### FIFO: First in first out
|
||||||
### KEEP: Keep oldest (less merge action and faster)
|
### KEEP: Keep oldest (less merge action and faster)
|
||||||
# SOURCE_IDS_LIMIT_METHOD=FIFO
|
# SOURCE_IDS_LIMIT_METHOD=FIFO
|
||||||
### Maximum number of file paths stored in entity/relation file_path field
|
|
||||||
# MAX_FILE_PATHS=30
|
# Maximum number of file paths stored in entity/relation file_path field (For displayed only, does not affect query performance)
|
||||||
|
# MAX_FILE_PATHS=100
|
||||||
|
|
||||||
### maximum number of related chunks per source entity or relation
|
### maximum number of related chunks per source entity or relation
|
||||||
### The chunk picker uses this value to determine the total number of chunks selected from KG(knowledge graph)
|
### The chunk picker uses this value to determine the total number of chunks selected from KG(knowledge graph)
|
||||||
|
|
|
||||||
|
|
@ -70,8 +70,8 @@ VALID_SOURCE_IDS_LIMIT_METHODS = {
|
||||||
SOURCE_IDS_LIMIT_METHOD_KEEP,
|
SOURCE_IDS_LIMIT_METHOD_KEEP,
|
||||||
SOURCE_IDS_LIMIT_METHOD_FIFO,
|
SOURCE_IDS_LIMIT_METHOD_FIFO,
|
||||||
}
|
}
|
||||||
# Default file_path limit in meta data for entity and relation (Use same limit method as source_ids)
|
# Maximum number of file paths stored in entity/relation file_path field (For displayed only, does not affect query performance)
|
||||||
DEFAULT_MAX_FILE_PATHS = 30
|
DEFAULT_MAX_FILE_PATHS = 100
|
||||||
|
|
||||||
# Field length of file_path in Milvus Schema for entity and relation (Should not be changed)
|
# Field length of file_path in Milvus Schema for entity and relation (Should not be changed)
|
||||||
# file_path must store all file paths up to the DEFAULT_MAX_FILE_PATHS limit within the metadata.
|
# file_path must store all file paths up to the DEFAULT_MAX_FILE_PATHS limit within the metadata.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue