MySQL 8.0-compatible kernel
Based on MySQL 8.0.44 and InnoDB, preserving familiar protocols, transactions, and row storage.
Explore MySQL / InnoDBMySQL / InnoDB at the core, with DuckDB columnar analytics and native HNSW indexes.
A MySQL-compatible core, plus opt-in DuckDB analytics and native vector search.
Based on MySQL 8.0.44 and InnoDB, preserving familiar protocols, transactions, and row storage.
Explore MySQL / InnoDBDuckDB 1.4.4 provides columnar storage and vectorized execution for analytical tables and replicas.
Explore DuckDBInnoDB stores VECTOR data and HNSW indexes, queried through SQL with transaction visibility.
Explore Vector IndexUse one MySQL connection for InnoDB, DuckDB, and Vector Index.
CREATE TABLE orders (
id BIGINT PRIMARY KEY,
customer_id BIGINT NOT NULL,
amount DECIMAL(18,2) NOT NULL,
status VARCHAR(16) NOT NULL
) ENGINE=InnoDB;
START TRANSACTION;
INSERT INTO orders VALUES (1001, 42, 299.00, 'PAID');
SELECT id, amount, status FROM orders WHERE customer_id = 42;
COMMIT;Release notes and implementation stories.
Upgrades DuckDB to 1.4.4 and adds native vector search, Native Flashback, and two binlog optimizations.
How AliSQL integrates DuckDB across queries, replication, and recovery.
How VECTOR data and HNSW indexes work with InnoDB transactions.
Build AliSQL, then evaluate each capability independently.