[PR #5419] feat: add oceanbase vector database support #5439

Open
opened 2026-06-05 15:21:21 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5419
Author: @xxsc0529
Created: 4/13/2026
Status: 🔄 Open

Base: masterHead: master


📝 Commits (3)

  • 1893917 feat: add oceanbase vector database support
  • e977481 Merge branch 'master' into master
  • b2ea57c Merge branch 'master' into master

📊 Changes

13 files changed (+836 additions, -2 deletions)

View changed files

📝 README.md (+1 -0)
📝 docker/.env.example (+8 -0)
📝 frontend/src/components/ProviderPrivacy/constants.js (+9 -0)
frontend/src/components/VectorDBSelection/OceanBaseOptions/index.jsx (+127 -0)
frontend/src/media/vectordbs/oceanbase.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx (+10 -0)
📝 server/.env.example (+8 -0)
📝 server/models/systemSettings.js (+7 -0)
📝 server/utils/helpers/index.js (+4 -1)
📝 server/utils/helpers/updateENV.js (+23 -0)
server/utils/vectorDbProviders/oceanbase/SETUP.md (+58 -0)
server/utils/vectorDbProviders/oceanbase/index.js (+579 -0)
📝 server/utils/vectorStore/resetAllVectorStores.js (+2 -1)

📄 Description

Pull Request Type

  • feat (New feature)
  • 🐛 fix (Bug fix)
  • ♻️ refactor (Code refactoring without changing behavior)
  • 💄 style (UI style changes)
  • 🔨 chore (Build, CI, maintenance)
  • 📝 docs (Documentation updates)

Relevant Issues

resolves #5417

Description

Added support for the Oceanbase vector library, which has powerful storage and distribution capabilities, as well as strong multi-channel recall capabilities

Visuals (if applicable)

image image image

Additional Information

Oceanbase has powerful vector storage and retrieval capabilities. Please refer to our official website for details https://en.oceanbase.com/docs/common-oceanbase-database-10000000003450339

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated (if applicable)
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/5419 **Author:** [@xxsc0529](https://github.com/xxsc0529) **Created:** 4/13/2026 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`1893917`](https://github.com/Mintplex-Labs/anything-llm/commit/1893917a989276c1a3cde59b95543673a166709a) feat: add oceanbase vector database support - [`e977481`](https://github.com/Mintplex-Labs/anything-llm/commit/e97748119c77994fb55e64eb2c03d2edc9f75c13) Merge branch 'master' into master - [`b2ea57c`](https://github.com/Mintplex-Labs/anything-llm/commit/b2ea57cf4dd72116307c40d29b2077fb58e6130b) Merge branch 'master' into master ### 📊 Changes **13 files changed** (+836 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+8 -0) 📝 `frontend/src/components/ProviderPrivacy/constants.js` (+9 -0) ➕ `frontend/src/components/VectorDBSelection/OceanBaseOptions/index.jsx` (+127 -0) ➕ `frontend/src/media/vectordbs/oceanbase.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx` (+10 -0) 📝 `server/.env.example` (+8 -0) 📝 `server/models/systemSettings.js` (+7 -0) 📝 `server/utils/helpers/index.js` (+4 -1) 📝 `server/utils/helpers/updateENV.js` (+23 -0) ➕ `server/utils/vectorDbProviders/oceanbase/SETUP.md` (+58 -0) ➕ `server/utils/vectorDbProviders/oceanbase/index.js` (+579 -0) 📝 `server/utils/vectorStore/resetAllVectorStores.js` (+2 -1) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat (New feature) - [ ] 🐛 fix (Bug fix) - [ ] ♻️ refactor (Code refactoring without changing behavior) - [ ] 💄 style (UI style changes) - [ ] 🔨 chore (Build, CI, maintenance) - [ ] 📝 docs (Documentation updates) ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #5417 ### Description <!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? --> Added support for the Oceanbase vector library, which has powerful storage and distribution capabilities, as well as strong multi-channel recall capabilities ### Visuals (if applicable) <!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. --> <img width="2892" height="1250" alt="image" src="https://github.com/user-attachments/assets/49315ccc-652c-43ce-b0b0-4acef3e38357" /> <img width="2640" height="1144" alt="image" src="https://github.com/user-attachments/assets/97b1696e-3641-4ebb-821c-f3bf0884a35c" /> <img width="2778" height="1318" alt="image" src="https://github.com/user-attachments/assets/f46a746a-477d-4e87-b967-60736c4a9a4a" /> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> Oceanbase has powerful vector storage and retrieval capabilities. Please refer to our official website for details https://en.oceanbase.com/docs/common-oceanbase-database-10000000003450339 ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated (if applicable) - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 15:21:21 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#5439