Home Technology peripherals AI Serverless and AI-driven, Alibaba Cloud database core capabilities have been fully upgraded!

Serverless and AI-driven, Alibaba Cloud database core capabilities have been fully upgraded!

Nov 01, 2023 pm 08:33 PM
database ai serverless

On November 1, 2023, Alibaba Cloud Yaochi Database announced at the Hangzhou Yunqi Conference that it has fully realized serverless and has successfully accessed large model capabilities such as Tongyi, making the database one-stop and intelligent. Significant improvement. At the same time, the PolarDB AlwaysOn series also launched three major upgrades, and the first data intelligent assistant DMSCopilot also made a stunning debut. Li Feifei, head of Alibaba Cloud's database product division, said at the meeting: "Driven by Serverless and AI, cloud-native databases are accelerating their evolution into a one-stop intelligent data platform."

Li Feifei said that the data platform should be as convenient and easy to use as "building blocks", and the use of serverless technology is the key way to achieve this goal. At present, the core products of Alibaba Cloud's Yaochi database have launched serverless versions, and have further achieved comprehensive upgrades, making the system faster, more stable, more extensive and more detailed, and can reduce costs by 60% compared to traditional architectures

In order to meet all the needs of developers, Alibaba Cloud database has been fully upgraded. This upgrade includes the improvement of three important capabilities: HTAP integration, DB Cache integration, and DB storage integration. At the same time, it also integrates OLTP, OLAP, NoSQL and other technologies in multiple business scenarios, greatly improving the ease of use of the product. This series of improvements further simplifies development, management and operation and maintenance costs

At this Yunqi Conference, Alibaba Cloud also announced three major technology upgrades: PolarDB implements Multi-Master three-layer decoupling architecture, increasing memory usage by 50%; Multi-Master rotating upgrade, reducing unavailable time by 50% ; High compression ratio data storage, saving up to 80% of storage costs.

Serverless and AI-driven, Alibaba Cloud database core capabilities have been fully upgraded!

Li Feifei said that through breakthroughs in large-scale model technology, it can better drive the iterative upgrade of the underlying technology. He also said that the database in the underlying infrastructure will fully embrace the changes in AI technology

At present, Alibaba Cloud Yaochi Database has comprehensively improved its vector retrieval capabilities, integrating vector functions in products such as PolarDB, RDS, AnalyticDB, Lindorm, Tair, etc., to realize structured data, semi-structured data, multi-modal data, and vector data. Integrated processing. Alibaba Cloud's newly released 8 major industry models and the "Bai Lian" platform use AnalyticDB as the built-in vector retrieval engine. The performance is 2 to 5 times higher than that of open source, accelerating the implementation of AIGC applications.

Serverless and AI-driven, Alibaba Cloud database core capabilities have been fully upgraded!

At the conference, the data intelligence assistant DMSCopilot also made an amazing appearance. It is understood that DMSCopilot supports more than 30 database types and provides functions such as NL2SQL, SQL comment generation, SQL error correction, and SQL optimization, which greatly reduces the difficulty of SQL writing and improves development efficiency. In the evaluation of the Spider data set released by Yale University, the success rate and accuracy rate of DMSCopilot reached 99.5% and 78% respectively, which is 4% higher than the open source model.

In addition, Alibaba Cloud also announced strategic cooperation with SelectDB, MongoDB and Clickhouse respectively to promote technical cooperation and ecological collaboration and build a win-win ecosystem for cooperation.

Alibaba Cloud Yaochi database has been successfully used in the core business of thousands of industries. It provides financial, government affairs, telecommunications services such as the natural person tax management system, 60% of the country's provincial medical insurance information platforms, Guangdong Mobile, AIA, Southern Fund, Shanghai New Energy Vehicle Data Platform, Zhangyue Technology, Lilith Games, Shihuo APP, etc. Provide services to customers in many fields such as , Internet and so on

The above is the detailed content of Serverless and AI-driven, Alibaba Cloud database core capabilities have been fully upgraded!. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the complexity of WordPress installation and update using Composer How to solve the complexity of WordPress installation and update using Composer Apr 17, 2025 pm 10:54 PM

When managing WordPress websites, you often encounter complex operations such as installation, update, and multi-site conversion. These operations are not only time-consuming, but also prone to errors, causing the website to be paralyzed. Combining the WP-CLI core command with Composer can greatly simplify these tasks, improve efficiency and reliability. This article will introduce how to use Composer to solve these problems and improve the convenience of WordPress management.

How to solve SQL parsing problem? Use greenlion/php-sql-parser! How to solve SQL parsing problem? Use greenlion/php-sql-parser! Apr 17, 2025 pm 09:15 PM

When developing a project that requires parsing SQL statements, I encountered a tricky problem: how to efficiently parse MySQL's SQL statements and extract the key information. After trying many methods, I found that the greenlion/php-sql-parser library can perfectly solve my needs.

How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! Apr 17, 2025 pm 09:54 PM

In Laravel development, dealing with complex model relationships has always been a challenge, especially when it comes to multi-level BelongsToThrough relationships. Recently, I encountered this problem in a project dealing with a multi-level model relationship, where traditional HasManyThrough relationships fail to meet the needs, resulting in data queries becoming complex and inefficient. After some exploration, I found the library staudenmeir/belongs-to-through, which easily installed and solved my troubles through Composer.

How to solve the complex problem of PHP geodata processing? Use Composer and GeoPHP! How to solve the complex problem of PHP geodata processing? Use Composer and GeoPHP! Apr 17, 2025 pm 08:30 PM

When developing a Geographic Information System (GIS), I encountered a difficult problem: how to efficiently handle various geographic data formats such as WKT, WKB, GeoJSON, etc. in PHP. I've tried multiple methods, but none of them can effectively solve the conversion and operational issues between these formats. Finally, I found the GeoPHP library, which easily integrates through Composer, and it completely solved my troubles.

How to solve the problem of virtual columns in Laravel model? Use stancl/virtualcolumn! How to solve the problem of virtual columns in Laravel model? Use stancl/virtualcolumn! Apr 17, 2025 pm 09:48 PM

During Laravel development, it is often necessary to add virtual columns to the model to handle complex data logic. However, adding virtual columns directly into the model can lead to complexity of database migration and maintenance. After I encountered this problem in my project, I successfully solved this problem by using the stancl/virtualcolumn library. This library not only simplifies the management of virtual columns, but also improves the maintainability and efficiency of the code.

Solve CSS prefix problem using Composer: Practice of padaliyajay/php-autoprefixer library Solve CSS prefix problem using Composer: Practice of padaliyajay/php-autoprefixer library Apr 17, 2025 pm 11:27 PM

I'm having a tricky problem when developing a front-end project: I need to manually add a browser prefix to the CSS properties to ensure compatibility. This is not only time consuming, but also error-prone. After some exploration, I discovered the padaliyajay/php-autoprefixer library, which easily solved my troubles with Composer.

How to solve PHP's phar://stream processing security problem? Use typo3/phar-stream-wrapper! How to solve PHP's phar://stream processing security problem? Use typo3/phar-stream-wrapper! Apr 17, 2025 pm 08:24 PM

I'm having a serious problem when dealing with a PHP project: There is a security vulnerability in phar://stream processing, which can lead to the execution of malicious code. After some research and trial, I found an effective solution - using the typo3/phar-stream-wrapper library. This library not only solves my security issues, but also provides a flexible interceptor mechanism, making managing phar files more secure and controllable.

MySQL: Key Features and Capabilities Explained MySQL: Key Features and Capabilities Explained Apr 18, 2025 am 12:17 AM

MySQL is an open source relational database management system that is widely used in Web development. Its key features include: 1. Supports multiple storage engines, such as InnoDB and MyISAM, suitable for different scenarios; 2. Provides master-slave replication functions to facilitate load balancing and data backup; 3. Improve query efficiency through query optimization and index use.

See all articles