Overview. ATCA Reference Architectures Real-time Acquisition and Recording. Reference Architectures. Inside contents. AdvancedTCA Technology

Size: px
Start display at page:

Download "Overview. ATCA Reference Architectures Real-time Acquisition and Recording. Reference Architectures. Inside contents. AdvancedTCA Technology"

Transcription

1 SAN Technology, Inc. ATCA Reference Architectures Real-time Acquisition and Recording Reference Architectures Magma PCI Express 10Gb ATCA platforms Overview Inside contents Overview 1 Recording Architectures 2 Local Storage 2 Shared Storage 3 Virtualization 4 Equipment summary 5 Summary 6 Real-time data acquisition and recording is a key part of numerous military applications such as radars, radio, wireless or virtually any task that involves digitizing analog signals. Once digitized, data is sent to computers for real-time processing or archived to disks for post processing. Sometimes customers want to play back data through D-A converters, reproducing the original analog output signals at full bandwidth. When decomposing the functional building blocks of such applications, we found significant overlap in wish-list feature requirements that included: Need recording/playback speeds 500 to 2000MB/s Preference for using COTS acquisition cards (A/D converters, FPGA etc) Wanted modern OS development environments (Windows 2012, Linux, VMware) Wanted Moderately rugged operating environments (0-55C) This paper explains how to combine a commercial-off-the-shelf (COTS) technology called ATCA with virtualization and standard PCI-express cards (for application specific ) to fulfill the technical requirements of many data acquisition applications, while also meeting Department of Defense (DoD) goals for Modular Open Systems Approach (MOSA) designs that reduce R&D costs and accelerate time to market. AdvancedTCA Technology ATCA is an open standards specification that defines a moderately rugged blade computing environment with literally hundreds of suppliers, 10 years in the making. ATCA blades aren t anemic, struggling to fit enterprise class computing into spaces too small to accommodate the technology. Rather, these blades feature Intel s newest 64-bit XEON CPUs, terabytes of storage, 10 Gb Ethernet networks and modern operating systems. System designers can construct custom platforms by combining multiple compute, network or storage blades to create scalable platforms with as few as two blades or groups of many dozens. ATCA was originally conceived to fulfill the computing needs of the US and European telecommunications Industry, replacing monolithic proprietary systems with reusable COTS products that enable faster development, easier technology refresh and to foster a competitive supplier environment to keep costs down. ATCA platforms offer redundancy, remote monitoring and consume less space, weight and power than an equivalent set of commercial desktops or rack servers. It is these same innate attributes that attracts DoD projects seeking acquisition reform, lower development costs, and 7+ year life cycles to satisfy the technology demands of 21 st century net-centric warfare. 1 ATCA Advanced Telecommunication Architecture ( ) 1

2 ATCA Recording Architectures BOX2 The recording architectures discussed in this paper can be built with the same two building blocks installed in a single 19 rack chassis. This two-box setup supports a variety of recording requirements and system architectures that share a common physical appearance. The first box contains a backplane with slots for ATCA compute and storage blades. The second box, manufactured by Magma, provides PCI-Express expansion slots to accommodate application specific cards. Cables are used to interconnect ATCA blade rear transition modules (RTM) with the Magma enclosures, bridging standard PCI Express cards with ATCA host blades. Magma product details are presented later in this paper. BOX1 BLADE RTM PCI-Express Cable System architects select and combine blades in an arrangement that best fits their performance, scalability and cost goals. There are several system design considerations and trade-offs which are discussed in the next sections. Local Storage Architecture When an application collects sampled data (bit streams) from acquisition cards, it can be stored to local (private) disk pools, or to networked disk pools. In testing, local disk pools delivered the most bandwidth and were integrated with the CPU slot saving space and power. An example of this architecture, shown below, uses one SANBlaze ATCA blade (ATCA2000) which combines a processor (4 CPU), 16 GB of memory and 3.8TB of RAID storage. Acquisition ATCA Storage Blade PCI-Express 4 Core XEON 16 GB DDR3 3.8TB SSD The blades disk performance was measured by installing Linux and configuring a RAID0 volume with (8) eight Intel SSD, Model 520. The RAID volume was then split into two logical volumes lva0 and lvb0. Linux dd command was used to simulate 2 data acquisition bit-streams; measured results appear below. Bit streams Measured Read bandwidth Measured Write bandwidth MB/Sec 1200 MB/Sec MB/Sec 1660 MB/Sec 2 One bit stream write/read: echo noop > /sys/block/sdb/queue/scheduler; echo noop > /sys/block/sdc/queue/scheduler blockdev --setra /dev/sdb; blockdev --setra /dev/sdc sync; echo 0 > /proc/sys/vm/drop_caches; dd of=/dev/vgb/lvb0 if=/dev/zero bs=1m count=30k oflag=direct sync; echo 0 > /proc/sys/vm/drop_caches;dd if=/dev/vgb/lvb0 of=/dev/null bs=1m count=30k iflag=direct Two bit streams write/read: sync; echo 0 > /proc/sys/vm/drop_caches dd of=/dev/vgb/lvb0 if=/dev/zero bs=1m count=30k oflag=direct & dd of=/dev/vga/lva0 if=/dev/zero bs=1m count=30k oflag=direct sync; echo 0 > /proc/sys/vm/drop_caches; dd if=/dev/vgb/lvb0 of=/dev/null bs=1m count=30k iflag=direct & dd if=/dev/vga/lva0 of=/dev/null bs=1m count=30k iflag=direct 2

3 Shared Storage Architecture Networked disk pools provide the ability to share storage capacity and bandwidth between several blades using 10Gb Ethernet connections. All applications can access the storage pool, but you control how much capacity they each get. With Networked storage you can amortize the disk cost across several applications, but maximum bandwidth is limited by 10Gb Ethernet connections (~1100MB/Sec). An example of this architecture appears in the figure below. A single Magma box holds all acquisition cards, but electronically isolates expansion slots so each card is exposed to only one PCI-Express computer master (root complex). The compute blades each contain two Intel Westmere processors (12 cores) and 192GB of memory. All of the compute blades connect to a single storage blade, sharing its capacity and bandwidth. Acquisition PCI-Express ATCA Compute Blade ATCA Network Blade ATCA Storage Blade 12 Core XEON 192GB DDR3 10Gb switch 4 Core XEON 16 GB DDR3 6TB SSD PCI-Express 12 Core XEON 192GB DDR3 The recording performance of this configuration was measured by installing Linux on each of compute blades. These connected to the SANBlaze storage blade (ATCA2000) using iscsi over switched Ethernet connections. The storage blade contained (8) eight Intel SSD Model 520, configured in a RAID0, and then sub-divided into two targets. Linux dd command was used to simulate 3 data acquisition bit-streams; measured results appear below. Bit streams Measured Read bandwidth Measured Write bandwidth MB/Sec 366 MB/Sec MB/Sec 689 MB/Sec MB/Sec 1366 MB/Sec (Two 10Gb ports) 3 One bit stream write/read: iscsiadm -m node --targetname Target iqn com.sanblaze:atca2000-d06f42.target0 --portal :3260 login iscsiadm -m node --targetname Target iqn com.sanblaze:atca2000-d06f42.target1 --portal : login echo noop > /sys/block/sdc/queue/scheduler; echo noop > /sys/block/sdd/queue/scheduler blockdev --setra /dev/sdc; blockdev --setra /dev/sdd dd of=/dev/vga/lva0 if=/dev/zero bs=1m count=30k oflag=direct dd if=/dev/vga/lva0 of=/dev/null bs=1m count=30k iflag=direct Two bit streams write/read: dd of=/dev/vga/lva0 if=/dev/zero bs=1m count=30k oflag=direct & dd of=/dev/vgb/lvb0 if=/dev/zero bs=1m count=30k oflag=direct & dd if=/dev/vga/lva0 of=/dev/null bs=1m count=30k iflag=direct & dd if=/dev/vgb/lvb0 of=/dev/null bs=1m count=30k iflag=direct & Four bit streams write/read: dd of=/dev/vga/lva0 if=/dev/zero bs=1m count=30k oflag=direct & dd of=/dev/vga/lva0 if=/dev/zero bs=1m count=30k oflag=direct skip=30k & dd of=/dev/vgb/lvb0 if=/dev/zero bs=1m count=30k oflag=direct & dd of=/dev/vgb/lvb0 if=/dev/zero bs=1m count=30k oflag=direct skip=30k & dd if=/dev/vga/lva0 of=/dev/null bs=1m count=30k iflag=direct & dd if=/dev/vga/lva0 of=/dev/null bs=1m count=30k iflag=direct seek=30k & dd if=/dev/vgb/lvb0 of=/dev/null bs=1m count=30k iflag=direct & dd if=/dev/vgb/lvb0 of=/dev/null bs=1m count=30k iflag=direct seek=30k & 3

4 ATCA and Virtualization ATCA combined with virtualization represents a strategic opportunity for consolidation and cost reductions at a system level. Data acquisition and recording may represent only one subsystem function of a larger project. With ATCA, a single computer blade with 12 CPU core can provide the same processing power as two or three computers designed 5 years ago. It becomes reasonable for embedded designers to consider hardware consolidation by running multiple tasks on a single ATCA blade. However, the system architect will need answers to some practical implementation questions: 1) How does someone map multiple standalone subsystems onto one physical computer platform? Solving this is fundamental to scaling applications that can fully utilize processor technology capabilities. 2) How does someone physically add many peripheral functions into single ATCA computer without designing form factor specific hardware? The ideal solution would accommodate high volume COTS PCI-Express cards. 3) As a single computer takes on more tasks, how can someone add tolerance and reliability? Virtualization addresses all these concerns. Consider for example, an existing rack containing 6 VME backplanes, dedicated to 6 monolithic tasks. With virtualization packages from VMware, it s possible to port these tasks to virtual machines (VM) with resources equal to the original VME source computers, but utilizing physically fewer ATCA blades. A VMware hypervisor called ESXi is loaded onto the raw ATCA blade(s). The hypervisor abstracts physical computer resources (CPU, memory, networking etc.) and makes them available to a community of users. Using a simple GUI, users define their dream machine with processors, memory, storage, and install an OS like Linux or windows on the virtual machine. Once complete, users can interact with the virtual machine in the same fashion as a physical one. They can ping it, open remote shells, and run applications. Legacy Virtualized VME Backplane #1 ATCA Backplane MAGMA CHASSIS Processor VM TB RAID 0,1,5,6 Dual 10Gb switch Domain 1 PCIe PCIe Processor VM 2 12 Core XEON 192GB DDR3 RTM VM X-1 VM X Domain x Virtual machines boot from a shared ATCA storage blades with up to 12TB of total storage; this storage pool uses RAID algorithms to boost performance and protect user data. Pooled storage also makes it easier to deliver right sized disks to each virtual machine and its application(s). Data recording is accomplished by installing data acquisition cards in a Magma PCI-Express expansion box, and assigning their status to pass-through using the VMware GUI interface. In this way, a VM can own the card(s). By utilizing magma expansion technology, users can utilize standard PCI express cards and save the R&D costs of developing form-factor specific solutions. Virtualization did not impact storage performance; Measured Bit stream recording and playback was equal to the nonvirtualized shared storage results presented in the previous section. 4

5 Recorder Equipment Details Magma PCI-Express Technology Overview Magma develops and manufactures rack mount PCI Express Expansion Systems which are central to SANBlaze data recorder architectures. The product extends PCI Express signals from multiple ATCA blades over a cable to a chassis containing multiple card slots and installed peripherals. (see Magma expansion products incorporate PCI-Express switch technology that interconnects up to 16 slots. Users can install PCI-Express cards (end points) in these slots, noting that some slots are wired to support x16 traffic lanes, while others support only x8. Magma software can group slots into domains. Domains are managed by a single ATCA computer called a root complex. Each ATCA server connection consumes one slot, and all the cards assigned to the domain. In the topology example below, the Magma box is configured to present three domain trees, each with a single root, terminating at the ATCA blade. Blade 1 Blade 2 Blade 3 Domain color Grey Red Green Example PCI-Express Slot assignment 1 host, 2 cards 1 host, 1 cards 1 host, 1 cards SANBlaze Storage Blade Overview SANBlaze developed the ATCA2000 as a dual purpose product that operates either as an endpoint in an iscsi storage area network (SAN) or as a CPU with direct attach storage (DAS). If deployed in the latter configuration, users can install any OS which executes on its 64-bit Intel 4 core XEON processor. Examples include Windows, Linux or VMware. Other standard features include an Intel dual 10Gb Ethernet controller, a MegaRAID SAS controller from LSI and eight (8) userserviceable 2.5 SSD. In a recorder application, the blade sustained over 1600MB/Sec when recording bit streams and over 2200 MB/Sec for playback. 4 core XEON processor 6 TB SSD max 16GB DDR3 memory SANBlaze Compute Blade Overview SANBlaze developed the ATCA7300 to tackle more processor intensive applications. The dual processor design features 12 XEON cores, and up to 192 GB of DDR3 memory, making it an ideal blade for virtualization. These blades run commercial OS including windows, Linux and VMware. SANBlaze Network Blade Overview The SANBlaze ATS1936 features two separate 20 port Ethernet switches, one operating at 10Gb (fabric), and other 1Gb (base). Two switch blades provide a fully redundant star fabric that keeps connections available, even if one blade fails or is removed. 5

6 SANBlaze Technology, Inc. One Monarch Drive Suite 204 Littleton, MA Phone (978) Fax (978) Web Summary Numerous embedded applications utilize acquisition cards which create bit-streams of data that are processed by computers and often stored to disk. Often times, the target operating environment means commercial hardware cannot be used because it cannot meet requirements for operating temperature, mobility or ruggedness. To address these needs, designers turn to embedded computing products. ATCA is an embedded computing technology, with over 300 suppliers. Today, customers can choose from a large selection of computer, storage and network blades and interconnect them with 10Gb Ethernet fabrics. 10Gb Ethernet provides a ubiquitous, reliable, very fast, and cost effective method for moving data between computer and storage. Ethernet is also ideal for managing serial bit streams. The final challenge is adapting acquisition functions to the ATCA form factor, ideally without designing new daughter cards or accessory modules. Magma PCI-Expansion products can be used for this purpose. They enable customers to connect standard PCI-express cards with ATCA embedded computer with a cable. This paper explains how the two box system (ATCA and Magma) fits neatly into a 19 rack, providing the hardware basis for numerous applications including data recorder and playback with sustain speeds exceeding 2200MB/Sec. For more information please visit the SANBlaze web site at: or send info@sanblaze.com SANBlaze Technology, Inc. is a leading provider of storage, networking and multifunction solutions for embedded systems. SANBlaze embedded computing products include a complete line of ATCA storage and compute blades, multifunction RTMs for ATCA blades, and AMC storage and networking controllers and modules. Additionally, the company provides fully configured and integrated ATCA systems and services. Copyright 2012 SANBlaze Technology Inc. All rights reserved. Referenced products are trademarks or registered trademarks of their respective owners UC 125 r00 6

Product Catalog Embedded Computing Products

Product Catalog Embedded Computing Products www.sanblaze.com 2016 Product Catalog Embedded Computing Products Te c hno l o g y, I n c. Custom and OEM Services SANBlaze OEM Services provide the right solution to meet and exceed the needs of our OEM

More information

Extending PCI-Express in MicroTCA Platforms. Whitepaper. Joey Maitra of Magma & Tony Romero of Performance Technologies

Extending PCI-Express in MicroTCA Platforms. Whitepaper. Joey Maitra of Magma & Tony Romero of Performance Technologies Extending PCI-Express in MicroTCA Platforms Whitepaper Joey Maitra of Magma & Tony Romero of Performance Technologies Introduction: The introduction of MicroTCA platforms has opened the door for AdvancedMC

More information

AdvancedTCA for Defense Deployable COTS Solution - Overview. SANBlaze. Inside contents. AdvancedTCA: Meeting DoD Requirements

AdvancedTCA for Defense Deployable COTS Solution - Overview. SANBlaze. Inside contents. AdvancedTCA: Meeting DoD Requirements SAN Technology, Inc. AdvancedTCA for Defense Deployable COTS Solution - SANBlaze Overview AdvancedTCA: Meeting DoD Requirements Inside contents Overview 1 ATCA Anatomy 2 MOSA 3 COTS 4 SWaP-C 4 Rugged Platform

More information

vstart 50 VMware vsphere Solution Specification

vstart 50 VMware vsphere Solution Specification vstart 50 VMware vsphere Solution Specification Release 1.3 for 12 th Generation Servers Dell Virtualization Solutions Engineering Revision: A00 March 2012 THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

More information

Design a Remote-Office or Branch-Office Data Center with Cisco UCS Mini

Design a Remote-Office or Branch-Office Data Center with Cisco UCS Mini White Paper Design a Remote-Office or Branch-Office Data Center with Cisco UCS Mini February 2015 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 9 Contents

More information

Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision

Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision At-A-Glance Unified Computing Realized Today, IT organizations assemble their data center environments from individual components.

More information

Design a Remote-Office or Branch-Office Data Center with Cisco UCS Mini

Design a Remote-Office or Branch-Office Data Center with Cisco UCS Mini White Paper Design a Remote-Office or Branch-Office Data Center with Cisco UCS Mini June 2016 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 9 Contents

More information

Cisco HyperFlex HX220c M4 Node

Cisco HyperFlex HX220c M4 Node Data Sheet Cisco HyperFlex HX220c M4 Node A New Generation of Hyperconverged Systems To keep pace with the market, you need systems that support rapid, agile development processes. Cisco HyperFlex Systems

More information

Sun Fire X4170 M2 Server Frequently Asked Questions

Sun Fire X4170 M2 Server Frequently Asked Questions Overview Faced with ever increasing computing needs and budget constraints, companies today want to set up infrastructures that offer optimal value, can easily be re-purposed, and have reduced complexity.

More information

MicroTCA / AMC Solutions for Real-Time Data Acquisition

MicroTCA / AMC Solutions for Real-Time Data Acquisition THE MAGAZINE OF RECORD FOR THE EMBEDDED COMPUTING INDUSTRY May 2013 TECHNOLOGY IN SYSTEMS MicroTCA / AMC Solutions for Real-Time Data Acquisition MicroTCA has evolved out of the world of ATCA to become

More information

Cisco UCS B460 M4 Blade Server

Cisco UCS B460 M4 Blade Server Data Sheet Cisco UCS B460 M4 Blade Server Product Overview The new Cisco UCS B460 M4 Blade Server uses the power of the latest Intel Xeon processor E7 v3 product family to add new levels of performance

More information

JMR ELECTRONICS INC. WHITE PAPER

JMR ELECTRONICS INC. WHITE PAPER THE NEED FOR SPEED: USING PCI EXPRESS ATTACHED STORAGE FOREWORD The highest performance, expandable, directly attached storage can be achieved at low cost by moving the server or work station s PCI bus

More information

VSTOR Vault Mass Storage at its Best Reliable Mass Storage Solutions Easy to Use, Modular, Scalable, and Affordable

VSTOR Vault Mass Storage at its Best Reliable Mass Storage Solutions Easy to Use, Modular, Scalable, and Affordable VSTOR Vault Mass Storage at its Best Reliable Mass Storage Solutions Easy to Use, Modular, Scalable, and Affordable MASS STORAGE AT ITS BEST The ARTEC VSTOR Vault VS Mass Storage Product Family ARTEC s

More information

2 to 4 Intel Xeon Processor E v3 Family CPUs. Up to 12 SFF Disk Drives for Appliance Model. Up to 6 TB of Main Memory (with GB LRDIMMs)

2 to 4 Intel Xeon Processor E v3 Family CPUs. Up to 12 SFF Disk Drives for Appliance Model. Up to 6 TB of Main Memory (with GB LRDIMMs) Based on Cisco UCS C460 M4 Rack Servers Solution Brief May 2015 With Intelligent Intel Xeon Processors Highlights Integrate with Your Existing Data Center Our SAP HANA appliances help you get up and running

More information

Dell PowerEdge R720xd with PERC H710P: A Balanced Configuration for Microsoft Exchange 2010 Solutions

Dell PowerEdge R720xd with PERC H710P: A Balanced Configuration for Microsoft Exchange 2010 Solutions Dell PowerEdge R720xd with PERC H710P: A Balanced Configuration for Microsoft Exchange 2010 Solutions A comparative analysis with PowerEdge R510 and PERC H700 Global Solutions Engineering Dell Product

More information

UCS M-Series + Citrix XenApp Optimizing high density XenApp deployment at Scale

UCS M-Series + Citrix XenApp Optimizing high density XenApp deployment at Scale In Collaboration with Intel UCS M-Series + Citrix XenApp Optimizing high density XenApp deployment at Scale Aniket Patankar UCS Product Manager May 2015 Cisco UCS - Powering Applications at Every Scale

More information

Veritas NetBackup on Cisco UCS S3260 Storage Server

Veritas NetBackup on Cisco UCS S3260 Storage Server Veritas NetBackup on Cisco UCS S3260 Storage Server This document provides an introduction to the process for deploying the Veritas NetBackup master server and media server on the Cisco UCS S3260 Storage

More information

Lowering Cost per Bit With 40G ATCA

Lowering Cost per Bit With 40G ATCA White Paper Lowering Cost per Bit With 40G ATCA Prepared by Simon Stanley Analyst at Large, Heavy Reading www.heavyreading.com sponsored by www.radisys.com June 2012 Executive Summary Expanding network

More information

Vess. Architectural & Engineering Specifications For Video Surveillance. A2600 Series. Version: 1.2 Sep, 2012

Vess. Architectural & Engineering Specifications For Video Surveillance. A2600 Series.  Version: 1.2 Sep, 2012 Vess A2600 Series Architectural & Engineering Specifications Version: 1.2 Sep, 2012 www.promise.com Copyright 2012 Promise Technology, Inc. All Rights Reserved. No part of this document may be reproduced

More information

Surveillance Dell EMC Storage with Cisco Video Surveillance Manager

Surveillance Dell EMC Storage with Cisco Video Surveillance Manager Surveillance Dell EMC Storage with Cisco Video Surveillance Manager Configuration Guide H14001 REV 1.1 Copyright 2015-2017 Dell Inc. or its subsidiaries. All rights reserved. Published May 2015 Dell believes

More information

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment FAST SHIPPING AND DELIVERY TENS OF THOUSANDS OF IN-STOCK ITEMS EQUIPMENT DEMOS HUNDREDS OF MANUFACTURERS SUPPORTED

More information

Next Generation Computing Architectures for Cloud Scale Applications

Next Generation Computing Architectures for Cloud Scale Applications Next Generation Computing Architectures for Cloud Scale Applications Steve McQuerry, CCIE #6108, Manager Technical Marketing #clmel Agenda Introduction Cloud Scale Architectures System Link Technology

More information

Achieve Optimal Network Throughput on the Cisco UCS S3260 Storage Server

Achieve Optimal Network Throughput on the Cisco UCS S3260 Storage Server White Paper Achieve Optimal Network Throughput on the Cisco UCS S3260 Storage Server Executive Summary This document describes the network I/O performance characteristics of the Cisco UCS S3260 Storage

More information

ATCA-7540-D Data Sheet Bladed server platform with flexible I/O connectivity and ultimate processing performance

ATCA-7540-D Data Sheet Bladed server platform with flexible I/O connectivity and ultimate processing performance COMPUTING Data Sheet Bladed server platform with flexible I/O connectivity and ultimate processing performance Two Intel Xeon Scalable processors (codename Skylake) Scalable performance range/ core count

More information

Overview. Cisco UCS Manager User Documentation

Overview. Cisco UCS Manager User Documentation Cisco UCS Manager User Documentation, page 1 Infrastructure Management Guide, page 2 Cisco Unified Computing System, page 3 Cisco UCS Building Blocks and Connectivity, page 5 Cisco UCS Manager User Documentation

More information

EMC STORAGE FOR MILESTONE XPROTECT CORPORATE

EMC STORAGE FOR MILESTONE XPROTECT CORPORATE Reference Architecture EMC STORAGE FOR MILESTONE XPROTECT CORPORATE Milestone multitier video surveillance storage architectures Design guidelines for Live Database and Archive Database video storage EMC

More information

Cisco UCS C210 M2 General-Purpose Rack-Mount Server

Cisco UCS C210 M2 General-Purpose Rack-Mount Server Cisco UCS C210 M2 General-Purpose Rack-Mount Server Product Overview Cisco UCS C-Series Rack-Mount Servers extend unified computing innovations to an industry-standard form factor to help reduce total

More information

Cisco HyperFlex HX220c M4 and HX220c M4 All Flash Nodes

Cisco HyperFlex HX220c M4 and HX220c M4 All Flash Nodes Data Sheet Cisco HyperFlex HX220c M4 and HX220c M4 All Flash Nodes Fast and Flexible Hyperconverged Systems You need systems that can adapt to match the speed of your business. Cisco HyperFlex Systems

More information

Vblock Architecture. Andrew Smallridge DC Technology Solutions Architect

Vblock Architecture. Andrew Smallridge DC Technology Solutions Architect Vblock Architecture Andrew Smallridge DC Technology Solutions Architect asmallri@cisco.com Vblock Design Governance It s an architecture! Requirements: Pretested Fully Integrated Ready to Go Ready to Grow

More information

Sugon TC6600 blade server

Sugon TC6600 blade server Sugon TC6600 blade server The converged-architecture blade server The TC6600 is a new generation, multi-node and high density blade server with shared power, cooling, networking and management infrastructure

More information

SAP High-Performance Analytic Appliance on the Cisco Unified Computing System

SAP High-Performance Analytic Appliance on the Cisco Unified Computing System Solution Overview SAP High-Performance Analytic Appliance on the Cisco Unified Computing System What You Will Learn The SAP High-Performance Analytic Appliance (HANA) is a new non-intrusive hardware and

More information

EMC SYMMETRIX VMAX 40K SYSTEM

EMC SYMMETRIX VMAX 40K SYSTEM EMC SYMMETRIX VMAX 40K SYSTEM The EMC Symmetrix VMAX 40K storage system delivers unmatched scalability and high availability for the enterprise while providing market-leading functionality to accelerate

More information

EMC SYMMETRIX VMAX 40K STORAGE SYSTEM

EMC SYMMETRIX VMAX 40K STORAGE SYSTEM EMC SYMMETRIX VMAX 40K STORAGE SYSTEM The EMC Symmetrix VMAX 40K storage system delivers unmatched scalability and high availability for the enterprise while providing market-leading functionality to accelerate

More information

VPXI epc. Datasheet. AmpliconBenelux.com. Air Cooled 4U 1/2 Rack OpenVPX Windows/Linux Computer with Four Expansion Slots DESCRIPTION

VPXI epc. Datasheet. AmpliconBenelux.com. Air Cooled 4U 1/2 Rack OpenVPX Windows/Linux Computer with Four Expansion Slots DESCRIPTION V1.2 04/6/13 Air Cooled 4U 1/2 Rack OpenVPX Windows/Linux Computer with Four Expansion Slots FEATURES VPX for Instrumentation 3U OpenVPX embedded computer system Integrated timing and triggering Advanced

More information

Introduction to Virtualization. From NDG In partnership with VMware IT Academy

Introduction to Virtualization. From NDG In partnership with VMware IT Academy Introduction to Virtualization From NDG In partnership with VMware IT Academy www.vmware.com/go/academy Why learn virtualization? Modern computing is more efficient due to virtualization Virtualization

More information

Microsoft SQL Server in a VMware Environment on Dell PowerEdge R810 Servers and Dell EqualLogic Storage

Microsoft SQL Server in a VMware Environment on Dell PowerEdge R810 Servers and Dell EqualLogic Storage Microsoft SQL Server in a VMware Environment on Dell PowerEdge R810 Servers and Dell EqualLogic Storage A Dell Technical White Paper Dell Database Engineering Solutions Anthony Fernandez April 2010 THIS

More information

RAIDIX Data Storage System. Entry-Level Data Storage System for Video Surveillance (up to 200 cameras)

RAIDIX Data Storage System. Entry-Level Data Storage System for Video Surveillance (up to 200 cameras) RAIDIX Data Storage System Entry-Level Data Storage System for Video Surveillance (up to 200 cameras) 2017 Contents Synopsis... 2 Introduction... 3 Challenge... 4 Suggested Architecture... 5 Solution...

More information

VT816 1U µtca.4 Chassis with 2 AMC Slots, PCIe Gen 3

VT816 1U µtca.4 Chassis with 2 AMC Slots, PCIe Gen 3 1U µtca.4 Chassis, 2 AMCs KEY FEATURES MicroTCA.4 low-profile chassis platform, 19 x 1U x 14.2 deep Integrated Intel Xeon E3-1125 v2 processor @2.5 GHz Compliant to µtca.4 specifications with rear IO Supports

More information

Cisco HyperFlex HX220c M4 and HX220c M4 All Flash Nodes

Cisco HyperFlex HX220c M4 and HX220c M4 All Flash Nodes Data Sheet Cisco HyperFlex HX220c M4 and HX220c M4 All Flash Nodes Fast and Flexible Hyperconverged Systems You need systems that can adapt to match the speed of your business. Cisco HyperFlex Systems

More information

Microsoft Exchange Server 2010 workload optimization on the new IBM PureFlex System

Microsoft Exchange Server 2010 workload optimization on the new IBM PureFlex System Microsoft Exchange Server 2010 workload optimization on the new IBM PureFlex System Best practices Roland Mueller IBM Systems and Technology Group ISV Enablement April 2012 Copyright IBM Corporation, 2012

More information

Cisco UCS C210 M1 General-Purpose Rack-Mount Server

Cisco UCS C210 M1 General-Purpose Rack-Mount Server Cisco UCS C210 M1 General-Purpose Rack-Mount Server Product Overview Cisco UCS C-Series Rack-Mount Servers extend unified computing innovations to an industry-standard form factor to help reduce total

More information

Cisco UCS Mini Software-Defined Storage with StorMagic SvSAN for Remote Offices

Cisco UCS Mini Software-Defined Storage with StorMagic SvSAN for Remote Offices Solution Overview Cisco UCS Mini Software-Defined Storage with StorMagic SvSAN for Remote Offices BENEFITS Cisco UCS and StorMagic SvSAN deliver a solution to the edge: Single addressable storage pool

More information

Virtual Security Server

Virtual Security Server Data Sheet VSS Virtual Security Server Security clients anytime, anywhere, any device CENTRALIZED CLIENT MANAGEMENT UP TO 50% LESS BANDWIDTH UP TO 80 VIDEO STREAMS MOBILE ACCESS INTEGRATED SECURITY SYSTEMS

More information

HP0-S15. Planning and Designing ProLiant Solutions for the Enterprise. Download Full Version :

HP0-S15. Planning and Designing ProLiant Solutions for the Enterprise. Download Full Version : HP HP0-S15 Planning and Designing ProLiant Solutions for the Enterprise Download Full Version : http://killexams.com/pass4sure/exam-detail/hp0-s15 QUESTION: 174 Which rules should be followed when installing

More information

VXS-621 FPGA & PowerPC VXS Multiprocessor

VXS-621 FPGA & PowerPC VXS Multiprocessor VXS-621 FPGA & PowerPC VXS Multiprocessor Xilinx Virtex -5 FPGA for high performance processing On-board PowerPC CPU for standalone operation, communications management and user applications Two PMC/XMC

More information

Altos T310 F3 Specifications

Altos T310 F3 Specifications Product overview The Altos T310 F3 delivers proactive management tools matched by best priceperformance technology ideal for SMB and branch office operations. This singlesocket tower server features an

More information

You could fill your storage lab with racks of PCs, disks and arrays...

You could fill your storage lab with racks of PCs, disks and arrays... INNOVATIVE TARGET AND INITIATOR EMULATION SOLUTIONS You could fill your storage lab with racks of PCs, disks and arrays... or you could use our solution. The Storage Emulation Company IF YOU NEED TO TEST

More information

Promentum MPCBL0050 PRODUCT BENEFITS. Dual-Core Intel Xeon Processor LV Dual Core Xeon processor module FEATURE SUMMARY. [Print This Datasheet]

Promentum MPCBL0050 PRODUCT BENEFITS. Dual-Core Intel Xeon Processor LV Dual Core Xeon processor module FEATURE SUMMARY. [Print This Datasheet] [Print This Datasheet] Promentum MPCBL0050 Dual Core Xeon processor module FEATURE SUMMARY High performance AdvancedTCA blade based on the Dual-Core Intel Xeon LV5138 processor that provides 4 processor

More information

A Comparative Study of Microsoft Exchange 2010 on Dell PowerEdge R720xd with Exchange 2007 on Dell PowerEdge R510

A Comparative Study of Microsoft Exchange 2010 on Dell PowerEdge R720xd with Exchange 2007 on Dell PowerEdge R510 A Comparative Study of Microsoft Exchange 2010 on Dell PowerEdge R720xd with Exchange 2007 on Dell PowerEdge R510 Incentives for migrating to Exchange 2010 on Dell PowerEdge R720xd Global Solutions Engineering

More information

AXIe : AdvancedTCA Extensions for Instrumentation and Test. Autotestcon 2016

AXIe : AdvancedTCA Extensions for Instrumentation and Test. Autotestcon 2016 AXIe : AdvancedTCA Extensions for Instrumentation and Test Autotestcon 2016 Copyright 2016 AXIe Consortium, Inc. * AdvancedTCA is a registered trademark of PICMG. AXIe is a registered trademark of the

More information

Surveillance Dell EMC Storage with Bosch Video Recording Manager

Surveillance Dell EMC Storage with Bosch Video Recording Manager Surveillance Dell EMC Storage with Bosch Video Recording Manager Sizing and Configuration Guide H13970 REV 2.1 Copyright 2015-2017 Dell Inc. or its subsidiaries. All rights reserved. Published December

More information

Cisco UCS B230 M2 Blade Server

Cisco UCS B230 M2 Blade Server Data Sheet Cisco UCS B230 M2 Blade Server Product Overview The Cisco UCS B230 M2 Blade Server is one of the industry s highest-density two-socket blade server platforms. It is a critical new building block

More information

Agenda. Sun s x Sun s x86 Strategy. 2. Sun s x86 Product Portfolio. 3. Virtualization < 1 >

Agenda. Sun s x Sun s x86 Strategy. 2. Sun s x86 Product Portfolio. 3. Virtualization < 1 > Agenda Sun s x86 1. Sun s x86 Strategy 2. Sun s x86 Product Portfolio 3. Virtualization < 1 > 1. SUN s x86 Strategy Customer Challenges Power and cooling constraints are very real issues Energy costs are

More information

Dell Fluid Data solutions. Powerful self-optimized enterprise storage. Dell Compellent Storage Center: Designed for business results

Dell Fluid Data solutions. Powerful self-optimized enterprise storage. Dell Compellent Storage Center: Designed for business results Dell Fluid Data solutions Powerful self-optimized enterprise storage Dell Compellent Storage Center: Designed for business results The Dell difference: Efficiency designed to drive down your total cost

More information

NST6000 UNIFIED HYBRID STORAGE. Performance, Availability and Scale for Any SAN and NAS Workload in Your Environment

NST6000 UNIFIED HYBRID STORAGE. Performance, Availability and Scale for Any SAN and NAS Workload in Your Environment DATASHEET TM NST6000 UNIFIED HYBRID STORAGE Performance, Availability and Scale for Any SAN and NAS Workload in Your Environment UNIFIED The Nexsan NST6000 unified hybrid storage system is ideal for organizations

More information

A Reference Architecture for SAP Solutions on Dell and SUSE

A Reference Architecture for SAP Solutions on Dell and SUSE A Reference Architecture for SAP Solutions on Dell and SUSE This Dell white paper describes small, medium and large reference architectures for SAP solutions running on Dell hardware and SUSE Linux Enterprise

More information

DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE VSAN INFRASTRUCTURE

DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE VSAN INFRASTRUCTURE DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE VSAN INFRASTRUCTURE Design Guide APRIL 2017 1 The information in this publication is provided as is. Dell Inc. makes no representations or warranties

More information

Cisco UCS B200 M3 Blade Server

Cisco UCS B200 M3 Blade Server Data Sheet Cisco UCS B200 M3 Blade Server Product Overview The Cisco Unified Computing System (Cisco UCS ) combines Cisco UCS B-Series Blade Servers and C- Series Rack Servers with networking and storage

More information

M100 GigE Series. Multi-Camera Vision Controller. Easy cabling with PoE. Multiple inspections available thanks to 6 GigE Vision ports and 4 USB3 ports

M100 GigE Series. Multi-Camera Vision Controller. Easy cabling with PoE. Multiple inspections available thanks to 6 GigE Vision ports and 4 USB3 ports M100 GigE Series Easy cabling with PoE Multiple inspections available thanks to 6 GigE Vision ports and 4 USB3 ports Maximized acquisition performance through 6 GigE independent channels Common features

More information

Air Cooled 4U 1/2 Rack OpenVPX Windows/Linux Computer with Four Expansion Slots DESCRIPTION

Air Cooled 4U 1/2 Rack OpenVPX Windows/Linux Computer with Four Expansion Slots DESCRIPTION V1.2 04/6/13 Air Cooled 4U 1/2 Rack OpenVPX Windows/Linux Computer with Four Expansion Slots FEATURES VPX for Instrumentation 3U OpenVPX embedded computer system Integrated timing and triggering Advanced

More information

Oracle s Full Line of Integrated Sun Servers, Storage, and Networking Systems. See Beyond the Limits

Oracle s Full Line of Integrated Sun Servers, Storage, and Networking Systems. See Beyond the Limits Oracle s Full Line of Integrated Sun Servers, Storage, and Networking Systems See Beyond the Limits See Beyond the Limits Many enterprises are managing demanding applications and accessing increasing

More information

Cisco UCS C240 M3 Server

Cisco UCS C240 M3 Server Data Sheet Cisco UCS C240 M3 Rack Server Product Overview The form-factor-agnostic Cisco Unified Computing System (Cisco UCS ) combines Cisco UCS C-Series Rack Servers and B-Series Blade Servers with networking

More information

Product Specification Sheet

Product Specification Sheet High-performing NVR platform with scalable software The Milestone Husky M500/M550 Advanced NVRs go beyond the ordinary all-in-one network video recorders (NVRs). Designed in a 2U rack form factor, they

More information

DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE AND FIBRE CHANNEL INFRASTRUCTURE

DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE AND FIBRE CHANNEL INFRASTRUCTURE DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE AND FIBRE CHANNEL INFRASTRUCTURE Design Guide APRIL 0 The information in this publication is provided as is. Dell Inc. makes no representations or warranties

More information

GV STRATUS Virtualized Systems. Alex Lakey November 2016

GV STRATUS Virtualized Systems. Alex Lakey November 2016 GV STRATUS Virtualized Systems Alex Lakey November 2016 Introduction With the introduction of version 4.5 of GV STRATUS, Grass Valley, a Belden Brand, gives users the option of running the GV STRATUS video

More information

IBM s Data Warehouse Appliance Offerings

IBM s Data Warehouse Appliance Offerings IBM s Data Warehouse Appliance Offerings RChaitanya IBM India Software Labs Agenda 1 IBM Smart Analytics System (D5600) System Overview Technical Architecture Software / Hardware stack details 2 Netezza

More information

Storage Update and Storage Best Practices for Microsoft Server Applications. Dennis Martin President, Demartek January 2009 Copyright 2009 Demartek

Storage Update and Storage Best Practices for Microsoft Server Applications. Dennis Martin President, Demartek January 2009 Copyright 2009 Demartek Storage Update and Storage Best Practices for Microsoft Server Applications Dennis Martin President, Demartek January 2009 Copyright 2009 Demartek Agenda Introduction Storage Technologies Storage Devices

More information

Matrox Supersight Solo

Matrox Supersight Solo Matrox Supersight Solo Entry-level high-performance computing (HPC) platform for industrial imaging Matrox Supersight Solo at a glance Harness the full power of today s multi-core CPU, GPU, and FPGA technology

More information

Cisco UCS C24 M3 Server

Cisco UCS C24 M3 Server Data Sheet Cisco UCS C24 M3 Rack Server Product Overview The form-factor-agnostic Cisco Unified Computing System (Cisco UCS ) combines Cisco UCS C-Series Rack Servers and B-Series Blade Servers with networking

More information

COMPUTING ATCA-7368-CE. AdvancedTCA Processor Blade

COMPUTING ATCA-7368-CE. AdvancedTCA Processor Blade COMPUTING Data Sheet The ATCA-7368-CE processor blade is an ideal solution for data processing applications requiring powerful processing performance, flexible I/O functionality plus mass srage and network

More information

Paul Hodge 25 Oct 2016 RUN FAST. NEVER STOP. The Next Generation Virtual Platform

Paul Hodge 25 Oct 2016 RUN FAST. NEVER STOP. The Next Generation Virtual Platform Paul Hodge 25 Oct 2016 RUN FAST. NEVER STOP The Next Generation Virtual Platform Premium Platform Refresh Initial Release of Premium Platform 6/30/2013 Upgrade to the drive subsystem 10/30/2014 End of

More information

Overview. About the Cisco UCS S3260 System

Overview. About the Cisco UCS S3260 System About the Cisco UCS S3260 System, on page 1 How to Use This Guide, on page 3 Cisco UCS S3260 System Architectural, on page 4 Deployment Options, on page 5 Management Through Cisco UCS Manager, on page

More information

Video Surveillance EMC Storage with Digifort Enterprise

Video Surveillance EMC Storage with Digifort Enterprise Video Surveillance EMC Storage with Digifort Enterprise Sizing Guide H15229 01 Copyright 2016 EMC Corporation. All rights reserved. Published in the USA. Published August 2016 EMC believes the information

More information

Vendor must indicate at what level its proposed solution will meet the College s requirements as delineated in the referenced sections of the RFP:

Vendor must indicate at what level its proposed solution will meet the College s requirements as delineated in the referenced sections of the RFP: Vendor must indicate at what level its proposed solution will the College s requirements as delineated in the referenced sections of the RFP: 2.3 Solution Vision Requirement 2.3 Solution Vision CCAC will

More information

An Introduction to PICMG 3.7 ATCA Base Extensions PENTAIR

An Introduction to PICMG 3.7 ATCA Base Extensions PENTAIR An Introduction to PICMG 3.7 ATCA Base Extensions PICMG SPECIFICATION HIERARCHY PICMG 3.0 ATCA PICMG 3.1 Ethernet PICMG 3.4 PCIe PICMG 3.5 SRIO PICMG 3.7 ATCA Extensions PICMG 3.8 RTM PICMG 3.0 ADVANCEDTCA

More information

Surveillance Dell EMC Storage with Cisco Video Surveillance Manager

Surveillance Dell EMC Storage with Cisco Video Surveillance Manager Surveillance Dell EMC Storage with Cisco Video Surveillance Manager Sizing Guide H14000 REV 1.1 Copyright 2015-2017 Dell Inc. or its subsidiaries. All rights reserved. Published May 2015 Dell believes

More information

VDI PERFORMANCE COMPARISON: DELL POWEREDGE FX2 AND FC430 SERVERS WITH VMWARE VIRTUAL SAN (ABRIDGED)

VDI PERFORMANCE COMPARISON: DELL POWEREDGE FX2 AND FC430 SERVERS WITH VMWARE VIRTUAL SAN (ABRIDGED) VDI PERFORMANCE COMPARISON: DELL POWEREDGE FX2 AND FC430 SERVERS WITH VMWARE VIRTUAL SAN (ABRIDGED) The rapid adoption of virtual desktop infrastructure (VDI) across enterprises is forcing IT admins to

More information

Market Focus Complete Solution Certified Solution Purpose Built Patented Technologies Industry experts Right Size Rasilient s Mission

Market Focus Complete Solution Certified Solution Purpose Built Patented Technologies Industry experts Right Size Rasilient s Mission Market Focus Rasilient is 100% focused on providing products for the physical security market. With this focus we have an expert understanding of our security customer s unique needs and requirements.

More information

Data Protection for Cisco HyperFlex with Veeam Availability Suite. Solution Overview Cisco Public

Data Protection for Cisco HyperFlex with Veeam Availability Suite. Solution Overview Cisco Public Data Protection for Cisco HyperFlex with Veeam Availability Suite 1 2017 2017 Cisco Cisco and/or and/or its affiliates. its affiliates. All rights All rights reserved. reserved. Highlights Is Cisco compatible

More information

Assessing performance in HP LeftHand SANs

Assessing performance in HP LeftHand SANs Assessing performance in HP LeftHand SANs HP LeftHand Starter, Virtualization, and Multi-Site SANs deliver reliable, scalable, and predictable performance White paper Introduction... 2 The advantages of

More information

Sun Dual Port 10GbE SFP+ PCIe 2.0 Networking Cards with Intel GbE Controller

Sun Dual Port 10GbE SFP+ PCIe 2.0 Networking Cards with Intel GbE Controller Sun Dual Port 10GbE SFP+ PCIe 2.0 Networking Cards with Intel 82599 10GbE Controller Oracle's Sun Dual Port 10 GbE PCIe 2.0 Networking Cards with SFP+ pluggable transceivers, which incorporate the Intel

More information

Cisco UCS Virtual Interface Card 1225

Cisco UCS Virtual Interface Card 1225 Data Sheet Cisco UCS Virtual Interface Card 1225 Cisco Unified Computing System Overview The Cisco Unified Computing System (Cisco UCS ) is a next-generation data center platform that unites compute, networking,

More information

SUN CUSTOMER READY HPC CLUSTER: REFERENCE CONFIGURATIONS WITH SUN FIRE X4100, X4200, AND X4600 SERVERS Jeff Lu, Systems Group Sun BluePrints OnLine

SUN CUSTOMER READY HPC CLUSTER: REFERENCE CONFIGURATIONS WITH SUN FIRE X4100, X4200, AND X4600 SERVERS Jeff Lu, Systems Group Sun BluePrints OnLine SUN CUSTOMER READY HPC CLUSTER: REFERENCE CONFIGURATIONS WITH SUN FIRE X4100, X4200, AND X4600 SERVERS Jeff Lu, Systems Group Sun BluePrints OnLine April 2007 Part No 820-1270-11 Revision 1.1, 4/18/07

More information

Dell PowerVault MD Family. Modular storage. The Dell PowerVault MD storage family

Dell PowerVault MD Family. Modular storage. The Dell PowerVault MD storage family Dell PowerVault MD Family Modular storage The Dell PowerVault MD storage family Dell PowerVault MD Family The affordable choice The Dell PowerVault MD family is an affordable choice for reliable storage.

More information

Configuring a Single Oracle ZFS Storage Appliance into an InfiniBand Fabric with Multiple Oracle Exadata Machines

Configuring a Single Oracle ZFS Storage Appliance into an InfiniBand Fabric with Multiple Oracle Exadata Machines An Oracle Technical White Paper December 2013 Configuring a Single Oracle ZFS Storage Appliance into an InfiniBand Fabric with Multiple Oracle Exadata Machines A configuration best practice guide for implementing

More information

COMPUTING ATCA G ATCA Server Blade

COMPUTING ATCA G ATCA Server Blade COMPUTING Data Sheet The ATCA-7367 processor blade is an ideal solution for communications equipment requiring powerful processing performance, flexible I/O functionality plus mass storage and network

More information

M100 GigE Series. Multi-Camera Vision Controller. Easy cabling with PoE. Multiple inspections available thanks to 6 GigE Vision ports and 4 USB3 ports

M100 GigE Series. Multi-Camera Vision Controller. Easy cabling with PoE. Multiple inspections available thanks to 6 GigE Vision ports and 4 USB3 ports M100 GigE Series Easy cabling with PoE Multiple inspections available thanks to 6 GigE Vision ports and 4 USB3 ports Maximized acquisition performance through 6 GigE independent channels Common features

More information

Upgrade to Microsoft SQL Server 2016 with Dell EMC Infrastructure

Upgrade to Microsoft SQL Server 2016 with Dell EMC Infrastructure Upgrade to Microsoft SQL Server 2016 with Dell EMC Infrastructure Generational Comparison Study of Microsoft SQL Server Dell Engineering February 2017 Revisions Date Description February 2017 Version 1.0

More information

Microsoft SQL Server 2012 Fast Track Reference Architecture Using PowerEdge R720 and Compellent SC8000

Microsoft SQL Server 2012 Fast Track Reference Architecture Using PowerEdge R720 and Compellent SC8000 Microsoft SQL Server 2012 Fast Track Reference Architecture Using PowerEdge R720 and Compellent SC8000 This whitepaper describes the Dell Microsoft SQL Server Fast Track reference architecture configuration

More information

Dell PowerVault MD Family. Modular Storage. The Dell PowerVault MD Storage Family

Dell PowerVault MD Family. Modular Storage. The Dell PowerVault MD Storage Family Modular Storage The Dell PowerVault MD Storage Family The affordable choice The Dell PowerVault MD family is an affordable choice for reliable storage. The new MD3 models improve connectivity and performance

More information

DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE AND ISCSI INFRASTRUCTURE

DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE AND ISCSI INFRASTRUCTURE DELL EMC READY BUNDLE FOR VIRTUALIZATION WITH VMWARE AND ISCSI INFRASTRUCTURE Design Guide APRIL 2017 1 The information in this publication is provided as is. Dell Inc. makes no representations or warranties

More information

COMPUTING ATCA AdvancedTCA Processor Blade

COMPUTING ATCA AdvancedTCA Processor Blade COMPUTING Data Sheet The ATCA-7365 processor blade is an ideal solution for communications equipment requiring powerful server class processing performance, flexible mass storage and network options High

More information

PCI-X Bus PCI Express Bus Variants for Portable Computers Variants for Industrial Systems

PCI-X Bus PCI Express Bus Variants for Portable Computers Variants for Industrial Systems PCI Bus Variants PCI-X Bus PCI Express Bus Variants for Portable Computers Variants for Industrial Systems 1 Variants for Portable Computers Mini PCI PCMCIA Standards CardBus ExpressCard 2 Specifications

More information

Exam Questions C

Exam Questions C Exam Questions C9010-250 Power Systems with POWER8 Sales Skills V1 1. A credit card company is going to implement a new application for which security is a major requirement. The company has been quoted

More information

Cisco UCS B440 M1High-Performance Blade Server

Cisco UCS B440 M1High-Performance Blade Server Cisco UCS B440 M1 High-Performance Blade Server Product Overview The Cisco UCS B440 M1 High-Performance Blade Server delivers the performance and reliability to power compute-intensive, enterprise-critical

More information

COMPUTING. Centellis Virtualization Platform An open hardware and software platform for implementing virtualized applications

COMPUTING. Centellis Virtualization Platform An open hardware and software platform for implementing virtualized applications COMPUTING Data Sheet Centellis VP provides the hardware and software platform to deploy carrier grade virtualized applications. Application virtualization software framework based on industry standard

More information

A Dell Technical White Paper Dell Virtualization Solutions Engineering

A Dell Technical White Paper Dell Virtualization Solutions Engineering Dell vstart 0v and vstart 0v Solution Overview A Dell Technical White Paper Dell Virtualization Solutions Engineering vstart 0v and vstart 0v Solution Overview THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

More information

Lot # 10 - Servers. 1. Rack Server. Rack Server Server

Lot # 10 - Servers. 1. Rack Server. Rack Server Server 1. Rack Server Rack Server Server Processor: 1 x Intel Xeon E5 2620v3 (2.4GHz/6 core/15mb/85w) Processor Kit. Upgradable to 2 CPU Chipset: Intel C610 Series Chipset. Intel E5 2600v3 Processor Family. Memory:

More information

Cisco HyperFlex HX220c Edge M5

Cisco HyperFlex HX220c Edge M5 Data Sheet Cisco HyperFlex HX220c Edge M5 Hyperconvergence engineered on the fifth-generation Cisco UCS platform Rich digital experiences need always-on, local, high-performance computing that is close

More information

Oracle <Insert Picture Here>

Oracle <Insert Picture Here> Slide 1 Oracle Slide 2 WZT-5160 SPARC T3 Based Servers Architecture and Features Welcome to the SPARC T3 Based Servers Architecture and Features module. This

More information