Skip to content

[seekdb][deps] Switch al8 x86 SDKs to source submodule - #1196

Open
hnwyllmm wants to merge 338 commits into
master.bakfrom
task/2026072400117698283
Open

[seekdb][deps] Switch al8 x86 SDKs to source submodule#1196
hnwyllmm wants to merge 338 commits into
master.bakfrom
task/2026072400117698283

Conversation

@hnwyllmm

Copy link
Copy Markdown
Member

Task Description

Currently, the development library dependencies are recorded via al8 x86_64 RPMs under deps/init, leading to unclear maintenance boundaries between source code versions and package versions.

Solution Description

Added a deps/dependencies submodule pinned to the uploaded and pushed source dependency versions. build.sh now builds the Linux x86_64 source SDK during initialization and uses the corresponding installation prefix. Removed development library package records from oceanbase.al8.x86_64.deps [deps], while retaining tool dependencies. For VSAG linking items built from source, linking is now optional and based on actual build artifacts, specifically for x86_64.

Passed Regressions

Passed bash -n build.sh, git diff --check, and git diff --cached --check. Verification of source dependency repository origin locking and Linux x86_64 dependency building is complete.

Upgrade Compatibility

Only adjusts the method of obtaining development dependencies; does not change runtime protocols. This demo only covers al8 x86_64.

Other Information

This MR contains only one commit relative to the master branch. Dependency description files for other platforms remain unchanged. Untracked local environment hint files are not included in the commit.

Release Note

LINxiansheng and others added 30 commits June 4, 2026 11:04
* xi

* fixed error message not visable

* optimize windows alert

* fix uninstall

* fixed seekdbctl

* support copy path in settings

* fixed clean data

* remove cleandata

* fixed bash

* optimize operation logic

* optimize operation logic

* prevent conflict between gui and cli

* fix error message

* fix uninstall

* fix error message

* remove dir settings,optimize unistall

* clean code

* fix restart bug after setting dir

* gui use seekdbctl

* fix getpid bug

* fix starting bug

* fixed prevlige bug

* update follow log to save log

* add timeout error message

* fix killself problem

* fix killself bug

* undo core change

---------

Co-authored-by: ep-12221 <ep-12221@users.noreply.github.com>
Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
… tenant_id mismatch (oceanbase#871)

Node::tenant_id_ is initialized to OB_INVALID_TENANT_ID(0) and never set
causing ObKVCacheHazardSlot::retire condition
`tenant_id == temp_node->tenant_id_` to always match (0 == 0) when called
from release path with tenant_id=OB_INVALID_TENANT_ID. This bypasses
the version-based protection entirely, allowing Nodes still referenced by
concurrent readers to be freed prematurely, leading to use-after-free crash.

Fix: add `tenant_id != OB_INVALID_TENANT_ID` guard in retire condition
and set tenant_id_ = OB_SYS_TENANT_ID when creating Node in put.

Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* optimize memory usage about dagmap

* use smaller value for ls

* delete transfer&split in compaction

* delete ObProhibitScheduleMediumMap

* reduce the bucket number of FastFrezCkr

* fix unittest test_log_mode_mgr

* fix dag scheduler HA handling and test_dag_scheduler hang

Skip uninitialized HA prio schedulers unconditionally, guard scheduling loops with is_inited, and remove HA-specific unit tests that no longer apply in observer-lite.

* fix unittest test_log_config_mgr for single-member config

* fix unittest test_log_meta_info for single-member config

---------

Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
LINxiansheng and others added 28 commits July 20, 2026 11:06
Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
…eanbase#1154)

* refactor: remove legacy CDC data dictionary and liboblog remnants

* fix farm

---------

Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
…268769

# Conflicts
# test/ci/scripts/generate_run_jobs.py
# test/ci/templates/farm_for_standalone_src.yml
Co-authored-by: footka <footka@users.noreply.github.com>
* remove obsolete ddl queue threads

* remove unused optimizer stat refresh queue

* reduce tablet gc flush wait latency

* simplify unix socket login queue

---------

Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
* fix(mac): Fix macOS compilation failure

Root cause: telemetry compiled the Linux libcurl implementation on macOS without including the libcurl header, and the `std::min` parameters for the transaction retry interval had mismatched types on macOS.

Fix: Compile the libcurl implementation only on non-Apple platforms and explicitly specify the `int64_t` type for `std::min`.

Impact: macOS compilation compatibility; Linux telemetry behavior and transaction retry logic remain unchanged.

DIMA: 2026072100117597473

* fix(mac): use embedded libcurl for telemetry

Use the bundled libcurl implementation on macOS instead of invoking the system curl command, preserving bootstrap installation telemetry while fixing the missing curl declarations.

DIMA: 2026072100117597473

---------

Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
* refactor: remove dup table support

* fix farm

* Merge branch 'master' into task/2026072000117563862

---------

Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
…ceanbase#1088)

* Reorganize schema fetch dependency table IDs

* Track normal schema version for DDL visibility

* Break schema bootstrap dependency cycles

* test: update mysqltest results for schema definition changes

* Fix information schema metadata for core history tables

* test: update mysqltest results for schema definition changes

* Store versioned core schemas in logical history tables

* test: update mysqltest

* Remove advance_normal_schema_version

* Remove MemContext in ObSchemaCache

* Refactor core history row tracking into a single array

* Replace check_sys_variable flag with inner SQL detection

* test: update mysqltest

* Fix hybrid search to inherit caller session context

---------

Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
* Advertise autocommit in MySQL handshake

* Use a consistent autocommit snapshot during connection setup

* fix comments

---------

Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
Trim cluster, tenant, catalog, external XA, remote execution, and related compatibility surfaces for standalone seekdb while preserving local PX, DAS, DDL, auto-increment caching, and retained SHOW behavior. Update affected unit and mysqltest coverage accordingly.

Co-authored-by: footka <footka@users.noreply.github.com>
* refactor: remove XA transaction support

* refactor: remove remaining XA savepoint and session state

---------

Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
…nbase#1191)

* refactor: prune legacy compatibility code for standalone seekdb

* Merge branch 'master' into task/2026072300117686580

* fix farm

---------

Co-authored-by: LINxiansheng <LINxiansheng@users.noreply.github.com>
* test: stabilize vector mysqltest results across platforms

* test: restore full vector result assertions

---------

Co-authored-by: hnwyllmm <hnwyllmm@users.noreply.github.com>
@hnwyllmm

Copy link
Copy Markdown
Member Author

The issue with the mapping Dima is that it depends on development libraries in source code form.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants