SEIZE THE DATA SEIZE THE DATA. 2015

Size: px
Start display at page:

Download "SEIZE THE DATA SEIZE THE DATA. 2015"

Transcription

1 1 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

2 Vertica Resource Management Ramesh Narayanan, Vertica Professional Services August 10, 2015

3 Agenda 3 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

4 Agenda What are we going to talk about? Resource Manager Resource Pools Resource Pool Parameters Monitoring Resource Pools 4 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

5 Why Have a Resource Manager? System table queries DBD Recovery Ad hoc queries Vertica Cluster Refresh Web Apps Tuple Mover (moveout/mergeout) Reporting Tools Loads 5 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

6 RESOURCE MANAGER Query Execution Lifecycle Create Query Plan on Initiator Reject if request requires resources beyond availability Distribute Query Plan to Executors Create Local Query Plan on Executors Determine required resources Determine admission to Executors Run query Queue query - possible reject Launch Execution Engine on Executors Manage runtime resources Process results and send to initiator node for aggregation 6 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

7 Resource Pools 7 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

8 Resource Pools How do we manage mixed workload in Vertica? Control memory allocation, concurrency, queue timeout, and priority Control user queries and internal operations Tuned to meet different concurrency requirements User-defined pools created to reserve and prioritize system resources Users are assigned only one pool 8 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

9 Vertica Memory Allocation GENERAL Pool - 95% OS - 5% By default the General Pool gets 95% of the total system memory The remaining 5% is used by the Operating System and Vertica's catalog 9 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

10 Built-In Resource Pools GENERAL 95% of RAM 64M SYSQUERY 100M SYSDATA 200M TM (Tuple Mover) WOSDATA JVM RECOVERY REFRESH DBD Reserved Unreserved 10 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

11 Built-in Pools (1 of 2) General Default pool where user queries execute Other pools can borrow its memory to satisfy requests Capped as a percentage of system memory Sysquery System table queries use this pool during execution Sysdata System table results are stored in the pool s memory space TM Used for Tuple Mover tasks (moveout and mergeout) 11 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

12 Built-in Pools (2 of 2) WOSDAT Used to load data 2G or 25% of available memory If total RAM per node > 20G, 2G is reserved Minimize memory size if only performing bulk loads JVM Dedicated for Java UDx 2G or 10% of available memory DBD Used to control resource usage for DBD internal processing RECOVERY Used for handling node recovery (scratch and buddy recovery) REFRESH Used to allocate resources for projection refreshes 12 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

13 Resource Pool Parameters 13 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

14 Resource Pool Parameters (1 of 6) MEMORYSIZE reserved memory (set to 0 for unreserved) MAXMEMORYSIZE caps memory usage available even when borrowing from GENERAL pool 14 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

15 Resource Pool Parameters (2 of 6) MAXCONCURRENCY maximum number of concurrent queries PLANNEDCONCURRENCY Expected number of queries running against this pool 15 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

16 Resource Pool Parameters (3 of 6) EXECUTIONPARALLELISM limits the number of threads used to process any single query Query Threads Results PRIORITY Specifies order in which Resource Manager reserves memory 16 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

17 Resource Pool Parameters (4 of 6) RUNTIMEPRIORITYTHRESHOLD specifies the execution time (in seconds) before the Resource Manager assigns RUNTIMEPRIORITY RUNTIMEPRIORITY indicates the amount of resources (CPU, I/O bandwidth) dedicated to running queries in the resource pool 17 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

18 Resource Pool Parameters (5 of 6) RUNTIMECAP maximum amount of time any query on the pool can execute Also a parameter for individual users to limit query duration by specific users QUEUETIMEOUT maximum amount of queued time for a given query CASCADE TO Indicates a secondary resource pool used for queries that exceed the RUNTIMECAP of their assigned pool 18 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

19 Resource Pool Parameters (6 of 6) CPUAFFINITYMODE mode in which CPU affinity operates for this resource pool any (default), exclusive or shared CPUAFFINITYSET set of CPUs on which queries associated with this pool are executed These parameters should be changed only after consulting with Vertica technical support 19 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

20 Resource Pool Parameters PLANNEDCONCURRENCY Scenario: 6 users are assigned to a pool named "ABC" and all users are running 1G queries simultaneously What pools will the memory come from? ABC pool parameters: Query 1 1G MEMORYSIZE 4G PLANNEDCONCURRENCY 4 MAXCONCURRENCY 5 Query 2 Query 3 Query 4 1G 1G 1G ABC Allotted memory size per query So in this case 4G 4 = [MAX]MEMORYSIZE PLANNEDCONCURRENCY = 1G per query Query 5 Query 6 1G 1G General Queue 20 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

21 Resource Pool Defaults Parameter default description is_internal f the pool is not built-in memorysize null no reserved memory maxmemorysize null no maximum memory executionparallelism auto defaults to # of cores per node priority 0 no priority on queued transactions runtimepriority medium medium priority once threshold is met runtimeprioritythreshold 2 transaction runs at high priority for 2 seconds queuetimeout 300 transaction will time out if queued for 5 minutes plannedconcurrency auto defaults to # of cores per node maxconcurrency null unlimited concurrency runtimecap null no transaction time limit (allows run-away queries) singleinitiator f for backwards compatibility only; retain default cpuaffinityset null Set to run all queries on any CPU cpuaffinitymode Any Queries from this pool can run on any CPU 21 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

22 Reject versus Queue Reject query when too much memory per node is required OR the query waits in queue longer than the timeout parameter Timeout default = 5 minutes, configurable Shown as ABORT in resource_rejections system table Queue query when memory requirements cannot be met with current and planned memory allocation Shown as WAIT in resource_queues system table 22 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

23 User-Defined Pools Define your own specialized pools All parameters are customizable If queries need additional resources they can pull from the General pool Can spill into general pool (since MAXMEMORY is not specified) with a relative priority of 100 CREATE RESOURCE POOL load_pool MEMORYSIZE '10G' PRIORITY 100; User-defined pool name 10 GB reserved memory 23 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

24 User Rules User queries run in General or SYSQUERY pools unless a user-defined pool is specified GENERAL/ SYSQUERY Userdefined/ SYSQUERY A user is only assigned to 1 pool Groups cannot be assigned to a pool GENERAL/ SYSQUERY Userdefined GENERAL/ SYSQUERY Admin group 24 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

25 Use Case Web Application for Cell Provider The client has a web application with an interactive portal for monthly usage reports When IT is running batch reports, the web application sometimes takes a long time to refresh and end users complain How can we provide a better user experience to web application users without stopping batch reports? 25 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

26 Use Case Web Application for Cell Provider Answer Create a pool for the web page refresh queries Associate this pool with the database user that runs the web application queries Create a pool to limit the batch reports to a fixed memory size so memory is always left available for other purposes Associate this pool with users in the IT group # CREATE RESOURCE POOL web_pool MEMORYSIZE '250M' PRIORITY 50 MAXCONCURRENCY 5 PLANNEDCONCURRENCY 1 # CREATE RESOURCE POOL batch_pool MEMORYSIZE '4G MAXMEMORYSIZE '4G' MAXCONCURRENCY 10: 26 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

27 Use Case CEO at Online Retailer Our CEO runs a report every Monday at 9AM. How can we ensure the report always runs on time? 27 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

28 Use Case CEO at Online Retailer Answer PROFILE the query to determine the estimated memory usage Create a resource pool With sufficient MEMORYSIZE Assign the CEO report user to the resource pool using ALTER USER => PROFILE SELECT region, sum(revenue) FROM sales group by region; NOTICE: Statement is being profiled. HINT: select * from v_monitor.execution_engine_profiles where transaction_id= and statement_id=6; NOTICE: Initiator memory estimate for query: [on pool general: KB, minimum: KB] => CREATE RESOURCE POOL ceo_pool MEMORYSIZE '1800M' PLANNEDCONCURRENCY 1 PRIORITY 50; => ALTER USER ceo_user RESOURCE POOL ceo_pool; What are the downsides to this approach? 28 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

29 Monitoring Resource Pools 29 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

30 Monitor Resources System Table RESOURCE_POOLS RESOURCE_REJECTIONS RESOURCE_ACQUISITIONS RESOURCE_POOL_STATUS RESOURCE_QUEUES USERS Description Parameters for all defined pools, including builtin and user-defined pools Statistics on resource rejections and reason for rejection of request Status of resources granted to running queries and queries previously run Current status of resource pools, including memory usage, number of concurrent requests running Current listing of queries waiting in the queue, along with pool and priority information Information on resource pool association to users 30 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

31 QUESTIONS? Please attend our Q&A with HP Big Data experts today Marina Ballroom, Lobby level 10:15 am 10:30 am 12:00 pm 1:00 pm 2:30 pm 3:00 pm 4:30 pm 5:00 pm

32

Workload Management for an Operational Data Warehouse Oracle Database Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing

Workload Management for an Operational Data Warehouse Oracle Database Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing Workload Management for an Operational Data Warehouse Oracle Database 11.2.0.2 Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing Agenda What is a concurrent environment? Planning for workload

More information

SEIZE THE DATA SEIZE THE DATA. 2015

SEIZE THE DATA SEIZE THE DATA. 2015 1 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Advanced Projection Design Herb Collins, Vertica Training August 10, 2015

More information

Intelligent QoS Grid for Virtualized Workloads

Intelligent QoS Grid for Virtualized Workloads Intelligent Grid for ized Workloads Gaurav Gupta Delivery Head, HiTech Industry Solution Unit Tata Consultancy Services 27 May 2016 SDC India 2016 1 Copyright 2016 Tata Consultancy Services Limited Parallel

More information

Intelligent QoS Grid for Virtualized Workloads Gaurav Gupta Tata Consultancy Services

Intelligent QoS Grid for Virtualized Workloads Gaurav Gupta Tata Consultancy Services Intelligent Grid for ized Workloads Gaurav Gupta Tata Consultancy Services Characteristics of Data Analytics BI Image Processing Multi Media Static Content OLTP BigData NoSQL ECM Cloud IOT ERP Web 2.0

More information

Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA

Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA Copyright 2011, Oracle. All rights reserved. Topics Automatic Parallelism Parallel Statement Queuing In Memory Parallel Query

More information

Using Automated Network Management at Fiserv. June 2012

Using Automated Network Management at Fiserv. June 2012 Using Automated Network Management at Fiserv June 2012 Brought to you by Join Group Vivit Network Automation Special Interest Group (SIG) Leaders: Chris Powers & Wendy Wheeler Your input is welcomed on

More information

Best Practices for HP Vertica OEM Customers

Best Practices for HP Vertica OEM Customers Best Practices for HP Vertica OEM Customers HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 4/7/2016 Legal Notices Warranty The only warranties for HP products and services

More information

Workload Manager Technical Overview

Workload Manager Technical Overview Workload Manager Technical Overview Siegfried Becker Presales Consultant 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Target Problem

More information

Performance Monitor. Version: 7.3

Performance Monitor. Version: 7.3 Performance Monitor Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Migrating to the P8 5.2 Component Manager Framework

Migrating to the P8 5.2 Component Manager Framework Migrating to the P8 5.2 Component Manager Framework Contents Migrating to the P8 5.2 Component Manager Framework... 1 Introduction... 1 Revision History:... 2 Comparing the Two Component Manager Frameworks...

More information

Workload Control Center Performance Tuning

Workload Control Center Performance Tuning Workload Control Center Performance Tuning This document includes recommendations and best practices for performance tuning for CA Workload Control Center (WCC), for the following releases: Unicenter Workload

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

More information

Vertica s Design: Basics, Successes, and Failures

Vertica s Design: Basics, Successes, and Failures Vertica s Design: Basics, Successes, and Failures Chuck Bear CIDR 2015 January 5, 2015 1. Vertica Basics: Storage Format Design Goals SQL (for the ecosystem and knowledge pool) Clusters of commodity hardware

More information

Configuring Short RPO with Actifio StreamSnap and Dedup-Async Replication

Configuring Short RPO with Actifio StreamSnap and Dedup-Async Replication CDS and Sky Tech Brief Configuring Short RPO with Actifio StreamSnap and Dedup-Async Replication Actifio recommends using Dedup-Async Replication (DAR) for RPO of 4 hours or more and using StreamSnap for

More information

Architecting For Availability, Performance & Networking With ScaleIO

Architecting For Availability, Performance & Networking With ScaleIO Architecting For Availability, Performance & Networking With ScaleIO Performance is a set of bottlenecks Performance related components:, Operating Systems Network Drives Performance features: Caching

More information

vcloud Automation Center Reference Architecture vcloud Automation Center 5.2

vcloud Automation Center Reference Architecture vcloud Automation Center 5.2 vcloud Automation Center Reference Architecture vcloud Automation Center 5.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Talend and HP Vertica Tips and Techniques

Talend and HP Vertica Tips and Techniques Talend and HP Vertica Tips and Techniques HP Vertica Analytic Database Document Release Date: 12/15/14 1 Legal Notices Warranty The only warranties for HP products and services are set forth in the express

More information

SQL Server 2014 Training. Prepared By: Qasim Nadeem

SQL Server 2014 Training. Prepared By: Qasim Nadeem SQL Server 2014 Training Prepared By: Qasim Nadeem SQL Server 2014 Module: 1 Architecture &Internals of SQL Server Engine Module : 2 Installing, Upgrading, Configuration, Managing Services and Migration

More information

An Overview of Projection, Partitioning and Segmentation of Big Data Using Hp Vertica

An Overview of Projection, Partitioning and Segmentation of Big Data Using Hp Vertica IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 5, Ver. I (Sep.- Oct. 2017), PP 48-53 www.iosrjournals.org An Overview of Projection, Partitioning

More information

Designing for Scalability. Patrick Linskey EJB Team Lead BEA Systems

Designing for Scalability. Patrick Linskey EJB Team Lead BEA Systems Designing for Scalability Patrick Linskey EJB Team Lead BEA Systems plinskey@bea.com 1 Patrick Linskey EJB Team Lead at BEA OpenJPA Committer JPA 1, 2 EG Member 2 Agenda Define and discuss scalability

More information

QuickSpecs. What's New New RoHS compliant HP 8Gb Fibre Channel HBAs. HP 8Gb PCI-e FC HBAs. Overview

QuickSpecs. What's New New RoHS compliant HP 8Gb Fibre Channel HBAs. HP 8Gb PCI-e FC HBAs. Overview Overview The HP 8Gb PCIe Fibre Channel Host Bus Adapters brings datacenter infrastructure components to a higher level of performance and efficiency with the ability to deliver twice the I/O performance

More information

TrueSight 10 Architecture & Scalability Q&A Best Practice Webinar 8/18/2015

TrueSight 10 Architecture & Scalability Q&A Best Practice Webinar 8/18/2015 Q: Where can I find the TrueSight Operations Management Best Practice material? A: TrueSight OM Best Practice material is published on the BMC Communities web site at the following link. https://communities.bmc.com/docs/doc-37443

More information

Cloud Consolidation with Oracle (RAC) How much is too much?

Cloud Consolidation with Oracle (RAC) How much is too much? 1 Copyright 11, Oracle and/or its affiliates All rights reserved Cloud Consolidation with Oracle (RAC) How much is too much? Markus Michalewicz Senior Principal Product Manager Oracle RAC, Oracle America

More information

VMware vsphere. Using vsphere VMware Inc. All rights reserved

VMware vsphere. Using vsphere VMware Inc. All rights reserved VMware vsphere Using vsphere 2010 VMware Inc. All rights reserved Migrating VMs VMs Move from one host to another Powered on VM requires VMware vmotion VM Files in Datastores Move from one datastore to

More information

HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family

HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family Data sheet HPE Data Replication Solution Service for HPE Business Copy for P9000 XP Disk Array Family HPE Lifecycle Event Services HPE Data Replication Solution Service provides implementation of the HPE

More information

Connected Office Voice Recording an Auto Attendant Greeting User Guide 05/17/16

Connected Office Voice Recording an Auto Attendant Greeting User Guide 05/17/16 Connected Office Voice Recording an Auto Attendant Greeting User Guide 05/17/16 RECORDING AN AUTO ATTENDANT GREETING Auto Attendant Overview The Auto Attendant is an automated receptionist who greets and

More information

Oracle Hyperion Profitability and Cost Management

Oracle Hyperion Profitability and Cost Management Oracle Hyperion Profitability and Cost Management Configuration Guidelines for Detailed Profitability Applications November 2015 Contents About these Guidelines... 1 Setup and Configuration Guidelines...

More information

Performance Monitor. Version: 16.0

Performance Monitor. Version: 16.0 Performance Monitor Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

IBM Daeja ViewONE Virtual Performance and Scalability

IBM Daeja ViewONE Virtual Performance and Scalability Summary White Paper January 2016 IBM Daeja ViewONE Virtual 4.1.5 Performance and Scalability Copyright IBM Corporation 2016 Enterprise Content Management www.ibm.com No part of this document may be reproduced

More information

Tuning Cognos ReportNet for a High Performance Environment

Tuning Cognos ReportNet for a High Performance Environment Proven Practice Tuning Cognos ReportNet for a High Performance Environment Product(s): Cognos ReportNet Area of Interest: Performance Tuning Cognos ReportNet for a High Performance Environment 2 Copyright

More information

Performance Benchmark and Capacity Planning. Version: 7.3

Performance Benchmark and Capacity Planning. Version: 7.3 Performance Benchmark and Capacity Planning Version: 7.3 Copyright 215 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied

More information

Catalogic DPX TM 4.3. ECX 2.0 Best Practices for Deployment and Cataloging

Catalogic DPX TM 4.3. ECX 2.0 Best Practices for Deployment and Cataloging Catalogic DPX TM 4.3 ECX 2.0 Best Practices for Deployment and Cataloging 1 Catalogic Software, Inc TM, 2015. All rights reserved. This publication contains proprietary and confidential material, and is

More information

ArcGIS Enterprise Performance and Scalability Best Practices. Andrew Sakowicz

ArcGIS Enterprise Performance and Scalability Best Practices. Andrew Sakowicz ArcGIS Enterprise Performance and Scalability Best Practices Andrew Sakowicz Agenda Definitions Design workload separation Provide adequate infrastructure capacity Configure Tune Test Monitor Definitions

More information

Interface Reference topics

Interface Reference topics McAfee Content Security Reporter 2.6.x Interface Reference Guide Interface Reference topics Edit Permission Set page (Permission Sets page) Specify Content Security Reporter permissions and grant user

More information

CONFIGURING SQL SERVER FOR PERFORMANCE LIKE A MICROSOFT CERTIFIED MASTER

CONFIGURING SQL SERVER FOR PERFORMANCE LIKE A MICROSOFT CERTIFIED MASTER CONFIGURING SQL SERVER FOR PERFORMANCE LIKE A MICROSOFT CERTIFIED MASTER TIM CHAPMAN PREMIERE FIELD ENGINEER MICROSOFT THOMAS LAROCK HEAD GEEK SOLARWINDS A LITTLE ABOUT TIM Tim is a Microsoft Dedicated

More information

VPLEX & RECOVERPOINT CONTINUOUS DATA PROTECTION AND AVAILABILITY FOR YOUR MOST CRITICAL DATA IDAN KENTOR

VPLEX & RECOVERPOINT CONTINUOUS DATA PROTECTION AND AVAILABILITY FOR YOUR MOST CRITICAL DATA IDAN KENTOR 1 VPLEX & RECOVERPOINT CONTINUOUS DATA PROTECTION AND AVAILABILITY FOR YOUR MOST CRITICAL DATA IDAN KENTOR PRINCIPAL CORPORATE SYSTEMS ENGINEER RECOVERPOINT AND VPLEX 2 AGENDA VPLEX Overview RecoverPoint

More information

OMi Management Pack for Microsoft SQL Server. Software Version: For the Operations Manager i for Linux and Windows operating systems.

OMi Management Pack for Microsoft SQL Server. Software Version: For the Operations Manager i for Linux and Windows operating systems. OMi Management Pack for Microsoft Software Version: 1.01 For the Operations Manager i for Linux and Windows operating systems User Guide Document Release Date: April 2017 Software Release Date: December

More information

Scaling Up Performance Benchmarking

Scaling Up Performance Benchmarking Scaling Up Performance Benchmarking -with SPECjbb2015 Anil Kumar Runtime Performance Architect @Intel, OSG Java Chair Monica Beckwith Runtime Performance Architect @Arm, Java Champion FaaS Serverless Frameworks

More information

Contents Overview of the Compression Server White Paper... 5 Business Problem... 7

Contents Overview of the Compression Server White Paper... 5 Business Problem... 7 P6 Professional Compression Server White Paper for On-Premises Version 17 July 2017 Contents Overview of the Compression Server White Paper... 5 Business Problem... 7 P6 Compression Server vs. Citrix...

More information

IBM p5 and pseries Enterprise Technical Support AIX 5L V5.3. Download Full Version :

IBM p5 and pseries Enterprise Technical Support AIX 5L V5.3. Download Full Version : IBM 000-180 p5 and pseries Enterprise Technical Support AIX 5L V5.3 Download Full Version : https://killexams.com/pass4sure/exam-detail/000-180 A. The LPAR Configuration backup is corrupt B. The LPAR Configuration

More information

Cloud Computing & Visualization

Cloud Computing & Visualization Cloud Computing & Visualization Workflows Distributed Computation with Spark Data Warehousing with Redshift Visualization with Tableau #FIUSCIS School of Computing & Information Sciences, Florida International

More information

SharePoint 2010 Technical Case Study: Microsoft SharePoint Server 2010 Enterprise Intranet Collaboration Environment

SharePoint 2010 Technical Case Study: Microsoft SharePoint Server 2010 Enterprise Intranet Collaboration Environment SharePoint 2010 Technical Case Study: Microsoft SharePoint Server 2010 Enterprise Intranet Collaboration Environment This document is provided as-is. Information and views expressed in this document, including

More information

ACCELERATED COMPLEX EVENT PROCESSING WITH GRAPHICS PROCESSING UNITS

ACCELERATED COMPLEX EVENT PROCESSING WITH GRAPHICS PROCESSING UNITS ACCELERATED COMPLEX EVENT PROCESSING WITH GRAPHICS PROCESSING UNITS Prabodha Srimal Rodrigo Registration No. : 138230V Degree of Master of Science Department of Computer Science & Engineering University

More information

Multiprocessor and Real- Time Scheduling. Chapter 10

Multiprocessor and Real- Time Scheduling. Chapter 10 Multiprocessor and Real- Time Scheduling Chapter 10 Classifications of Multiprocessor Loosely coupled multiprocessor each processor has its own memory and I/O channels Functionally specialized processors

More information

Best Practices When Deploying Microsoft Windows Server 2008 R2 or Microsoft Windows Server 2008 SP2 on HP ProLiant DL980 G7 Servers

Best Practices When Deploying Microsoft Windows Server 2008 R2 or Microsoft Windows Server 2008 SP2 on HP ProLiant DL980 G7 Servers Best Practices When Deploying Microsoft Windows Server 2008 R2 or Microsoft Windows Server 2008 SP2 on HP ProLiant DL980 G7 Servers Technical white paper Table of contents Introduction... 2 OS Support

More information

Nicholas Dritsas Principal Program Manager Microsoft Corporation Microsoft Corporation. All rights reserved

Nicholas Dritsas Principal Program Manager Microsoft Corporation Microsoft Corporation. All rights reserved Nicholas Dritsas Principal Program Manager Microsoft Corporation Who is SQL Customer Advisory Team (SQL CAT) Overview of large AS projects Lessons Learned People and Infrastructure Performance Improving

More information

Asynchronous Method Calls White Paper VERSION Copyright 2014 Jade Software Corporation Limited. All rights reserved.

Asynchronous Method Calls White Paper VERSION Copyright 2014 Jade Software Corporation Limited. All rights reserved. VERSION 7.0.10 Copyright 2014 Jade Software Corporation Limited. All rights reserved. Jade Software Corporation Limited cannot accept any financial or other responsibilities that may be the result of your

More information

Oracle Autonomous Database

Oracle Autonomous Database Oracle Autonomous Database Maria Colgan Master Product Manager Oracle Database Development August 2018 @SQLMaria #thinkautonomous Safe Harbor Statement The following is intended to outline our general

More information

Oracle. Exam Questions 1Z Oracle Database 11g Release 2: SQL Tuning Exam. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g Release 2: SQL Tuning Exam. Version:Demo Oracle Exam Questions 1Z0-117 Oracle Database 11g Release 2: SQL Tuning Exam Version:Demo 1.You ran a high load SQL statement that used an index through the SQL Tuning Advisor and accepted its recommendation

More information

The modusgate console is composed of five configuration modules, these are described in the following table:

The modusgate console is composed of five configuration modules, these are described in the following table: modusgate Quick Start Guide About the Startup Guide This modusgate console Startup Guide is designed to assist you in configuring the modusgate server using the simplified modusgate Configuration console.

More information

ColumnStore Indexes. מה חדש ב- 2014?SQL Server.

ColumnStore Indexes. מה חדש ב- 2014?SQL Server. ColumnStore Indexes מה חדש ב- 2014?SQL Server דודאי מאיר meir@valinor.co.il 3 Column vs. row store Row Store (Heap / B-Tree) Column Store (values compressed) ProductID OrderDate Cost ProductID OrderDate

More information

Optimizing the Data Integration Service to Process Concurrent Web Services

Optimizing the Data Integration Service to Process Concurrent Web Services Optimizing the Data Integration Service to Process Concurrent Web Services 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

HP Solutions for SAP HANA

HP Solutions for SAP HANA Powered by Intel HP Solutions for SAP HANA Vladan Stevanovic BCS Sales Manager, South East Europe June 2014. Copyright Copyright 2014 2014 Hewlett-Packard Development Company, Company, L.P. The L.P. information

More information

BMC Remedy OnDemand

BMC Remedy OnDemand BMC Remedy OnDemand 2011.01 Bandwidth usage and latency benchmark results Page 1 TABLE OF CONTENTS Executive summary... 3 Test environment... 4 Scenarios... 5 Workload... 5 Data volume... 9 Results...

More information

HP ALM Lab Management

HP ALM Lab Management HP ALM Lab Management Software Version: 12.01 Troubleshooting Guide Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for HP products and services

More information

On Command Performance Manager 7.0 Lab on Demand Guide

On Command Performance Manager 7.0 Lab on Demand Guide On Command Performance Manager 7.0 Lab on Demand Guide On Command Performance Manager 7.0 Lab on Demand Guide... 1 Lab Activity: Adding Clusters... 1 Lab Activity: Performance Manager Dashboard... 2 Lab

More information

Additional License Authorizations. For HPE HAVEn and Vertica Analytics Platform software products

Additional License Authorizations. For HPE HAVEn and Vertica Analytics Platform software products Additional License Authorizations For HPE HAVEn and Vertica Analytics Platform software products Products and suites covered Products E-LTU or E-Media available * Non-production use category ** HPE Vertica

More information

Product Guide. McAfee Performance Optimizer 2.2.0

Product Guide. McAfee Performance Optimizer 2.2.0 Product Guide McAfee Performance Optimizer 2.2.0 COPYRIGHT Copyright 2017 McAfee, LLC TRADEMARK ATTRIBUTIONS McAfee and the McAfee logo, McAfee Active Protection, epolicy Orchestrator, McAfee epo, McAfee

More information

Milestone Technical Configuration Level 2 Training Workshop Agenda

Milestone Technical Configuration Level 2 Training Workshop Agenda Milestone Technical Configuration Level 2 Training Workshop Agenda Note: Each participant must bring a laptop with wireless connectability and a modern browser capable of accessing the internet. Additional

More information

2012 Enterprise Strategy Group. Enterprise Strategy Group Getting to the bigger truth. TM

2012 Enterprise Strategy Group. Enterprise Strategy Group Getting to the bigger truth. TM 2012 Enterprise Strategy Group Enterprise Strategy Group Getting to the bigger truth. TM Enterprise Strategy Group Getting to the bigger truth. TM Virtualization Evolution and Storage Requirements Kim

More information

Power Systems with POWER8 Scale-out Technical Sales Skills V1

Power Systems with POWER8 Scale-out Technical Sales Skills V1 Power Systems with POWER8 Scale-out Technical Sales Skills V1 1. An ISV develops Linux based applications in their heterogeneous environment consisting of both IBM Power Systems and x86 servers. They are

More information

Infrastructure Tuning

Infrastructure Tuning Infrastructure Tuning For SQL Server Performance SQL PASS Performance Virtual Chapter 2014.07.24 About David Klee @kleegeek davidklee.net gplus.to/kleegeek linked.com/a/davidaklee Specialties / Focus Areas

More information

HP Asset Manager Software License Optimization Best Practice Package

HP Asset Manager Software License Optimization Best Practice Package HP Asset Manager Software License Optimization Best Practice Package For the Windows operating system Software Version: 9.4.12.4 Technical Details of Software Counters Document Release Date: August 2014

More information

Azure RemoteApp Past, present & future Let s talk ARA use cases!

Azure RemoteApp Past, present & future Let s talk ARA use cases! Azure RemoteApp Past, present & future Let s talk ARA use cases! Freek Berson Wortell RDSGurus.com Microsoft RDS MVP @fberson Themicrosoftplatform.net Dr. Benny Tritsch DrTritsch.com RDSGurus.com Microsoft

More information

<Insert Picture Here> MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure

<Insert Picture Here> MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure Mario Beck (mario.beck@oracle.com) Principal Sales Consultant MySQL Session Agenda Requirements for

More information

Tenant Onboarding. Tenant Onboarding Overview. Tenant Onboarding with Virtual Data Centers

Tenant Onboarding. Tenant Onboarding Overview. Tenant Onboarding with Virtual Data Centers Overview, page 1 with Virtual Data Centers, page 1 with Resource Groups, page 5 Overview In Cisco UCS Director, tenants enable you to securely control and allocate the virtual and physical infrastructure

More information

Monitoring & Tuning Azure SQL Database

Monitoring & Tuning Azure SQL Database Monitoring & Tuning Azure SQL Database Dustin Ryan, Data Platform Solution Architect, Microsoft Moderated By: Paresh Motiwala Presenting Sponsors Thank You to Our Presenting Sponsors Empower users with

More information

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. SM Reports help topics for printing

HP Service Manager. Software Version: 9.41 For the supported Windows and UNIX operating systems. SM Reports help topics for printing HP Service Manager Software Version: 9.41 For the supported Windows and UNIX operating systems SM Reports help topics for printing Document Release Date: September 2015 Software Release Date: September

More information

Agent Console. The Agent Console. The topics in this section provide information about the Agent Console.

Agent Console. The Agent Console. The topics in this section provide information about the Agent Console. Agent Console The topics in this section provide information about the Agent Console. The Agent Console The agent logs into the workstation The agent is automatically logged in to Intradiem; the Agent

More information

HP SAS benchmark performance tests

HP SAS benchmark performance tests HP SAS benchmark performance tests technology brief Abstract... 2 Introduction... 2 Test hardware... 2 HP ProLiant DL585 server... 2 HP ProLiant DL380 G4 and G4 SAS servers... 3 HP Smart Array P600 SAS

More information

Class Scheduling on OpenVMS

Class Scheduling on OpenVMS OpenVMS Technical Journal V15 Class Scheduling on OpenVMS Shriniketan Bhagwat Class Scheduling on OpenVMS... 1 Executive summary... 2 Introduction to OpenVMS class scheduling... 2 Creating a scheduling

More information

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions:

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions: Currently shipping versions: HP Integrity VM (HP-UX 11i v2 VM Host) v3.5 HP Integrity VM (HP-UX 11i v3 VM Host) v4.0 Integrity Virtual Machines (Integrity VM) is a soft partitioning and virtualization

More information

Kako napraviti Cloud?

Kako napraviti Cloud? Kako napraviti Cloud? Tomislav Lukačević Converged Infrastructure Presales Consultant tomislav.lukacevic@hp.com Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein

More information

... IBM Power Systems with IBM i single core server tuning guide for JD Edwards EnterpriseOne

... IBM Power Systems with IBM i single core server tuning guide for JD Edwards EnterpriseOne IBM Power Systems with IBM i single core server tuning guide for JD Edwards EnterpriseOne........ Diane Webster IBM Oracle International Competency Center January 2012 Copyright IBM Corporation, 2012.

More information

CHANGE CONTROL FORM. ORIGINATOR'S NAME: Lou Leffer DATE: 08 September 2000 CHANGE REQUEST SUMMARY: Study Mode, Flow-Based CHANGE REVISION: 1.

CHANGE CONTROL FORM. ORIGINATOR'S NAME: Lou Leffer DATE: 08 September 2000 CHANGE REQUEST SUMMARY: Study Mode, Flow-Based CHANGE REVISION: 1. CHANGE CONTROL FORM ORIGINATOR'S NAME: Lou Leffer DATE: 08 September 2000 CHANGE REQUEST SUMMARY: Study Mode, Flow-Based CHANGE REVISION: 1.1 CHANGE REQUEST DETAIL: The details of the Study Mode, Flow-Based

More information

White Paper. Major Performance Tuning Considerations for Weblogic Server

White Paper. Major Performance Tuning Considerations for Weblogic Server White Paper Major Performance Tuning Considerations for Weblogic Server Table of Contents Introduction and Background Information... 2 Understanding the Performance Objectives... 3 Measuring your Performance

More information

HPE 3PAR Performance and Capacity Trending Service

HPE 3PAR Performance and Capacity Trending Service Data sheet HPE 3PAR Performance and Capacity Trending Service HPE Lifecycle Event Services HPE 3PAR Performance and Capacity Trending Service provides data collection, analysis, and reports with key performance

More information

1 of 8 14/12/2013 11:51 Tuning long-running processes Contents 1. Reduce the database size 2. Balancing the hardware resources 3. Specifying initial DB2 database settings 4. Specifying initial Oracle database

More information

SD Module-1 Advanced JAVA

SD Module-1 Advanced JAVA Assignment No. 3 SD Module-1 Advanced JAVA R C (4) V T Total (10) Dated Sign Title: Enhance above system by using JDBC, Multithreading, concurrency, synchronous and asynchronous callbacks, Thread Pools

More information

Approaches to Enterprise-Wide Monitoring and Problem-Solving on IBM z Systems

Approaches to Enterprise-Wide Monitoring and Problem-Solving on IBM z Systems Session 17728: Approaches to Enterprise-Wide Monitoring and Problem-Solving on IBM z Systems Ernie Gilman IBM Sr. Consulting IT Specialist egilman@us.ibm.com Abstract Examples of how best to leverage the

More information

BlackBerry AtHoc Networked Crisis Communication Capacity Planning Guidelines. AtHoc SMS Codes

BlackBerry AtHoc Networked Crisis Communication Capacity Planning Guidelines. AtHoc SMS Codes BlackBerry AtHoc Networked Crisis Communication Capacity Planning Guidelines AtHoc SMS Codes Version Version 7.5, May 1.0, November 2018 2016 1 Copyright 2010 2018 BlackBerry Limited. All Rights Reserved.

More information

Omni-Channel for Administrators

Omni-Channel for Administrators Omni-Channel for Administrators Salesforce, Summer 18 @salesforcedocs Last updated: August 16, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

IMC Network Traffic Analyzer 7.3 (E0504) Copyright 2015, 2017 Hewlett Packard Enterprise Development LP

IMC Network Traffic Analyzer 7.3 (E0504) Copyright 2015, 2017 Hewlett Packard Enterprise Development LP Network Traffic Analyzer 7.3 (E0504) Copyright 2015, 2017 Hewlett Packard Enterprise Development LP Table of Contents 1. What's New in this Release 2. Problems Fixed in this Release 3. Software Distribution

More information

Protect enterprise data, achieve long-term data retention

Protect enterprise data, achieve long-term data retention Technical white paper Protect enterprise data, achieve long-term data retention HP StoreOnce Catalyst and Symantec NetBackup OpenStorage Table of contents Introduction 2 Technology overview 3 HP StoreOnce

More information

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions:

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions: Currently shipping versions: HP Integrity VM (HP-UX 11i v2 VM Host) v3.5 HP Integrity VM (HP-UX 11i v3 VM Host) v4.1 Integrity Virtual Machines (Integrity VM) is a soft partitioning and virtualization

More information

AvePoint Cloud Governance. Release Notes

AvePoint Cloud Governance. Release Notes AvePoint Cloud Governance Release Notes Table of Contents New Features and Improvements: June 2018... 2 New Features and Improvements: May 2018... 3 New Features and Improvements: April 2018... 4 New Features

More information

[MS10987A]: Performance Tuning and Optimizing SQL Databases

[MS10987A]: Performance Tuning and Optimizing SQL Databases [MS10987A]: Performance Tuning and Optimizing SQL Databases Length : 4 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft SQL Server Delivery Method : Instructor-led (Classroom) Course

More information

McAfee Endpoint Security for Servers Product Guide. (McAfee epolicy Orchestrator)

McAfee Endpoint Security for Servers Product Guide. (McAfee epolicy Orchestrator) McAfee Endpoint Security for Servers 5.1.0 Product Guide (McAfee epolicy Orchestrator) COPYRIGHT Copyright 2018 McAfee, LLC TRADEMARK ATTRIBUTIONS McAfee and the McAfee logo, McAfee Active Protection,

More information

HPE Intelligent Management Center v7.3

HPE Intelligent Management Center v7.3 HPE Intelligent Management Center v7.3 Service Operation Manager Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who

More information

GPU Fundamentals Jeff Larkin November 14, 2016

GPU Fundamentals Jeff Larkin November 14, 2016 GPU Fundamentals Jeff Larkin , November 4, 206 Who Am I? 2002 B.S. Computer Science Furman University 2005 M.S. Computer Science UT Knoxville 2002 Graduate Teaching Assistant 2005 Graduate

More information

Call Centers ACD. Contents. Overview. Overview Features Live Admin Console / ACD Client Comprehensive Reporting Implementation & Training FAQ s

Call Centers ACD. Contents. Overview. Overview Features Live Admin Console / ACD Client Comprehensive Reporting Implementation & Training FAQ s Call Centers ACD Contents Overview Features Live Admin Console / ACD Client Comprehensive Reporting Implementation & Training FAQ s Overview Automated Call Distribution What is an Agent Group? An agent

More information

Is Your Project in Trouble on System Performance?

Is Your Project in Trouble on System Performance? Is Your Project in Trouble on System Performance? Charles Chow May 2017 Is SATURN Your Project 2017 in Trouble - Is Your on System Project Performance? in Trouble on System Performance? May 2017 1 4, [Copyright

More information

Plug-in Configuration

Plug-in Configuration Overview, page 1 Threading Configuration, page 2 Portal Configuration, page 3 Async Threading Configuration, page 3 Custom Reference Data Configuration, page 4 Balance Configuration, page 6 Diameter Configuration,

More information

HP Data Protector Media Operations 6.11

HP Data Protector Media Operations 6.11 HP Data Protector Media Operations 6.11 Getting started This guide describes installing, starting and configuring Media Operations. Copyright 2009 Hewlett-Packard Development Company, L.P. Part number:

More information

Tuning Enterprise Information Catalog Performance

Tuning Enterprise Information Catalog Performance Tuning Enterprise Information Catalog Performance Copyright Informatica LLC 2015, 2018. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the United States

More information

Please give me your feedback

Please give me your feedback #HPEDiscover Please give me your feedback Session ID: B4385 Speaker: Aaron Spurlock Use the mobile app to complete a session survey 1. Access My schedule 2. Click on the session detail page 3. Scroll down

More information

SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0)

SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0) SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0) August 2018 4800 Falls of Neuse Road, Suite 400 Raleigh, NC 27609 p (800) 848 0143 f (919) 755 8350 www.softprocorp.com Copyright and

More information

HPE ConvergedSystem 700 for Hyper-V Deployment Accelerator Service

HPE ConvergedSystem 700 for Hyper-V Deployment Accelerator Service Data sheet HPE ConvergedSystem 700 for Hyper-V Deployment Accelerator Service HPE Technology Consulting HPE ConvergedSystem 700 for Hyper-V is a solution that allows you to acquire and deploy a virtualization

More information

White Paper: Clustering of Servers in ABBYY FlexiCapture

White Paper: Clustering of Servers in ABBYY FlexiCapture White Paper: Clustering of Servers in ABBYY FlexiCapture By: Jim Hill Published: May 2018 Introduction Configuring an ABBYY FlexiCapture Distributed system in a cluster using Microsoft Windows Server Clustering

More information

itsmf Annual Conference 2012

itsmf Annual Conference 2012 itsmf Annual Conference 2012 Applying ITIL to Cloud Computing Mr. HP Suen Director itsmf International Executive Board Agenda Definition of Cloud Computing On-demand self service Pool of resources Pre-production

More information