forked from chroma-core/chroma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description of changes Base PR to release sqlite refactor, which spans many stacked PRs. Remaining - [x] Merge this to main - [x] Layered Persistent Index chroma-core#761 - [x] Remove old impls (In chroma-core#781 ) - [x] Remove persist() API (In chroma-core#787) - [x] Add telemetry to SegmentAPI, it was not included. (chroma-core#788) - [x] New clients chroma-core#805 - [x] locking and soak tests for thread-safety - [x] Migration tool - [x] Fix chroma-core#739 - [x] Fix metadata None vs empty - [x] Fix persist directory (addressed in chroma-core#761) - [x] Leave files open in chroma-core#761 (merge stacked PR) Post Release - [ ] Un xfail cross version tests once we cut the release - [x] Documentation updates for new silent ADD failure. - [x] Update all documentation for new API instantiation - [x] Update all documentation for settings changes - [ ] Update terraform deployment - [ ] Update cloudformation deployment --------- Co-authored-by: Luke VanderHart <[email protected]> Co-authored-by: Jeffrey Huber <[email protected]> Co-authored-by: Anton Troynikov <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Sebastian Sosa <[email protected]> Co-authored-by: Russell Pollari <[email protected]> Co-authored-by: russell-pollari <[email protected]>
- Loading branch information
1 parent
e171591
commit 46de479
Showing
80 changed files
with
2,229 additions
and
3,142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
pull_request: | ||
branches: | ||
- main | ||
- '*' | ||
- '**' | ||
|
||
jobs: | ||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
pull_request: | ||
branches: | ||
- main | ||
- '*' | ||
- '**' | ||
|
||
jobs: | ||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
pull_request: | ||
branches: | ||
- main | ||
- '*' | ||
- '**' | ||
|
||
jobs: | ||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/bin/bash | ||
|
||
echo "Rebuilding hnsw to ensure architecture compatibility" | ||
pip install --force-reinstall --no-cache-dir hnswlib | ||
pip install --force-reinstall --no-cache-dir chroma-hnswlib | ||
export IS_PERSISTENT=1 | ||
uvicorn chromadb.app:app --workers 1 --host 0.0.0.0 --port 8000 --proxy-headers --log-config log_config.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.