Tags: infiniflow/infinity
Tags
Fix total_hits_count issue for PhysicalTop (#3077) ### What problem does this PR solve? 'total_his_count' of query with limit and sort is wrong. ``` builder = table_object.output(selectFields) builder.sort([("create_time", 1)]) builder.offset(offset).limit(limit) kb_res1, extra_result = builder.option({"total_hits_count": True}).to_df() ``` Issue link:#3076 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
Fix deadlock of append and dump in bottom executor (#3067) ### What problem does this PR solve? **Issue** Multiple Append operations are executed and lots of dump tasks are triggered in bottom executor as the row count exceeds quota. Then the dump task queue is full and append is waiting for the queue in bottom executor. While dump wants to do CommitBottom in bottom executor. There is deadlock. **Solution** 1) Increase the dump task queue capacity to 1024 * 1024 2) When the dump task queue is full, skip the task. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
Update version to 0.6.0 (#3026) ### What problem does this PR solve? Update version to 0.6.0 ### Type of change - [x] Documentation Update - [x] Python SDK impacted, Need to update PyPI - [x] Other (please describe): Signed-off-by: Jin Hai <[email protected]>
Update version to 0.6.0 (#3026) ### What problem does this PR solve? Update version to 0.6.0 ### Type of change - [x] Documentation Update - [x] Python SDK impacted, Need to update PyPI - [x] Other (please describe): Signed-off-by: Jin Hai <[email protected]>
Update version before release (#3018) ### What problem does this PR solve? Update version to 0.6.0-dev7 ### Type of change - [x] Documentation Update - [x] Python SDK impacted, Need to update PyPI Signed-off-by: Jin Hai <[email protected]>
Update version info (#3005) ### What problem does this PR solve? Update to 0.6.0-dev6 ### Type of change - [x] Documentation Update - [x] Refactoring - [x] Python SDK impacted, Need to update PyPI --------- Signed-off-by: Jin Hai <[email protected]>
PreviousNext