search
HomeDatabaseMysql TutorialOracle收购Xsigo VMware、Cisco竞争加剧

【CSDN编译报导】Oracle本周一宣布收购了Xsigo,但并未透露收购金额。上周,VMware抢在Cisco之前将Nicira收入麾下,SDN的争夺战进入了高潮。 Xsigo提供被称之为DCF的产品,DCF专为虚拟化网络设计,可将物理网卡和网线尽可能减少。在传统的数据中心,一台物理

【CSDN编译报导】Oracle本周一宣布收购了Xsigo,但并未透露收购金额。上周,VMware抢在Cisco之前将Nicira收入麾下,SDN的争夺战进入了高潮。

Oracle收购Xsigo VMware、Cisco竞争加剧

Xsigo提供被称之为DCF的产品,DCF专为虚拟化网络设计,可将物理网卡和网线尽可能减少。在传统的数据中心,一台物理机上运行多台虚拟机,而每个虚拟机都需要使用一个物理网卡,很多时候一台物理机需要6到8个物理网卡。而Xsigo这样的虚拟I/O系统,通过创建多个虚拟网卡,让管理员可以轻松调用。Xsigo与HP的虚拟连接产品异曲同工,但后者只支持HP的产品,而Xsigo支持许多供应商的产品。

CSDN发现,在Xsigo官网只有一个简单介绍SDN的页面,进一步调查发现Xsigo甚至不是ONF的成员,后者是定义SDN的重要组织。

无论是刚刚被VMware收购的Nicira还是Xsigo都对网络巨头Cisco造成冲击。Nicira可以用普通的硬件替代Cisco昂贵的交换机和路由器。它的网络控制器可以在任何的网络设备上运行,这当然包括从中国大陆及台湾采购的相对廉价网络设备。Xsigo还可以减少使用交换机的数量。

受到Oracle宣布收购了Xsigo消息的影响,周一VMware和Citrix股票分别大跌3.48%和5.86%,Oracle股票微跌0.62。Cisco微涨1.15%,不过在上周Cisco的股价下跌了4.1%。瑞穗证券分析师Gabriel Lowy表示,投资者对SDN市场的变化表现的过于担忧。

此番收购,将进一步加剧Oracle与VMware在虚拟化管理系统的竞争。

CSDN获得的消息源显示,有Cisco员工投资了Nicira,Nicira拒绝了CSDN的采访请求。

Cisco并非在SDN市场毫无建树,今年四月Cisco对SDN新军Insieme投资了1亿美元,后者由三名前Cisco工程师Mario Mazzola、Luca Cafiero和Prem Jain领导。(文/包研)

参考资源:

http://www.wired.com/wiredenterprise/2012/07/oracle-acquires-xsigo-systems/

http://gigaom.com/cloud/oracle-snaps-up-xsigo-for-sdn-smarts/

http://www.networkworld.com/news/2012/041812-cisco-insieme-258384.html

http://www.thevarguy.com/2012/07/23/vmware-nicira-vs-cisco-insieme-virtualized-network-war/

market@csdn.net。

Statement
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
How to use MySQL functions for data processing and calculationHow to use MySQL functions for data processing and calculationApr 29, 2025 pm 04:21 PM

MySQL functions can be used for data processing and calculation. 1. Basic usage includes string processing, date calculation and mathematical operations. 2. Advanced usage involves combining multiple functions to implement complex operations. 3. Performance optimization requires avoiding the use of functions in the WHERE clause and using GROUPBY and temporary tables.

An efficient way to batch insert data in MySQLAn efficient way to batch insert data in MySQLApr 29, 2025 pm 04:18 PM

Efficient methods for batch inserting data in MySQL include: 1. Using INSERTINTO...VALUES syntax, 2. Using LOADDATAINFILE command, 3. Using transaction processing, 4. Adjust batch size, 5. Disable indexing, 6. Using INSERTIGNORE or INSERT...ONDUPLICATEKEYUPDATE, these methods can significantly improve database operation efficiency.

Steps to add and delete fields to MySQL tablesSteps to add and delete fields to MySQL tablesApr 29, 2025 pm 04:15 PM

In MySQL, add fields using ALTERTABLEtable_nameADDCOLUMNnew_columnVARCHAR(255)AFTERexisting_column, delete fields using ALTERTABLEtable_nameDROPCOLUMNcolumn_to_drop. When adding fields, you need to specify a location to optimize query performance and data structure; before deleting fields, you need to confirm that the operation is irreversible; modifying table structure using online DDL, backup data, test environment, and low-load time periods is performance optimization and best practice.

How to analyze the execution plan of MySQL queryHow to analyze the execution plan of MySQL queryApr 29, 2025 pm 04:12 PM

Use the EXPLAIN command to analyze the execution plan of MySQL queries. 1. The EXPLAIN command displays the execution plan of the query to help find performance bottlenecks. 2. The execution plan includes fields such as id, select_type, table, type, possible_keys, key, key_len, ref, rows and Extra. 3. According to the execution plan, you can optimize queries by adding indexes, avoiding full table scans, optimizing JOIN operations, and using overlay indexes.

How to use MySQL subquery to improve query efficiencyHow to use MySQL subquery to improve query efficiencyApr 29, 2025 pm 04:09 PM

Subqueries can improve the efficiency of MySQL query. 1) Subquery simplifies complex query logic, such as filtering data and calculating aggregated values. 2) MySQL optimizer may convert subqueries to JOIN operations to improve performance. 3) Using EXISTS instead of IN can avoid multiple rows returning errors. 4) Optimization strategies include avoiding related subqueries, using EXISTS, index optimization, and avoiding subquery nesting.

How to configure the character set and collation rules of MySQLHow to configure the character set and collation rules of MySQLApr 29, 2025 pm 04:06 PM

Methods for configuring character sets and collations in MySQL include: 1. Setting the character sets and collations at the server level: SETNAMES'utf8'; SETCHARACTERSETutf8; SETCOLLATION_CONNECTION='utf8_general_ci'; 2. Create a database that uses specific character sets and collations: CREATEDATABASEexample_dbCHARACTERSETutf8COLLATEutf8_general_ci; 3. Specify character sets and collations when creating a table: CREATETABLEexample_table(idINT

How to uninstall MySQL and clean residual filesHow to uninstall MySQL and clean residual filesApr 29, 2025 pm 04:03 PM

To safely and thoroughly uninstall MySQL and clean all residual files, follow the following steps: 1. Stop MySQL service; 2. Uninstall MySQL packages; 3. Clean configuration files and data directories; 4. Verify that the uninstallation is thorough.

How to rename a database in MySQLHow to rename a database in MySQLApr 29, 2025 pm 04:00 PM

Renaming a database in MySQL requires indirect methods. The steps are as follows: 1. Create a new database; 2. Use mysqldump to export the old database; 3. Import the data into the new database; 4. Delete the old database.

See all articles

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool