Full Text Search Agent Throughput

Size: px
Start display at page:

Download "Full Text Search Agent Throughput"

Transcription

1 Full Text Search Agent Throughput Best Practices Guide Perceptive Content Version: 7.0.x Written by: Product Knowledge, R&D Date: December 2014

2 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International Technology S.A., registered in the U.S. and other countries. All other brands and product names mentioned in this document are trademarks or registered trademarks of their respective owners. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or any other media embodiments now known or hereafter to become known without the prior written permission of Lexmark.

3 Table of Contents Introduction to Full Text Search Agent Throughput... 4 About Full Text Search Agent... 4 Full Text Search Agent architecture... 5 Full Text Search Agent performance model... 6 Interaction with MQ Agent... 6 Interaction with OSM Agent... 6 Full Text Agent internals... 7 Scaling Full Text Search Agent throughput and performance... 8 General tuning... 8 Worker thread tuning... 8 External performance influences and effects... 9 Recognition Agent... 9 System impact of tuning Full Text Agent... 9 Content Index Throughput Testing Results... 9 Constants... 9 Index performance Full Text Search Performance Testing Results Constants Search performance of text documents Search performance of Microsoft Word documents Search performance of PDF documents Search performance varying Full Text Agent worker threads Full Text Performance with Large-Scale Content Collections System specs Scalability recommendations Appendix A: INI Configuration File Settings inserverft.ini settings inow.ini settings inservermq.ini settings Page 3 of 19

4 Introduction to Full Text Search Agent Throughput For customers who process high numbers of pages, Perceptive Software recommends tuning systems for high throughput and efficiency to maximize performance. This document provides information to help you determine your throughput performance needs for Full Text Search Agent based on the volume of documents handled by your organization using Perceptive Content. About Full Text Search Agent Full Text Search Agent collects text data and creates searchable indexes based on the content of each document page. This allows you to identify documents containing specific keywords or phrases via content searches executed inside Perceptive Content. Content searches allow you to perform various types of full text searches, including fuzzy, phonetic, stemming and synonym, proximity, and relevance ranking searches. Your search can also contain wildcards to represent one or more characters. The server displays the document pages that contain matches for the search and highlights the matching keywords within the documents. The main service and executable of Full Text Search Agent is the Full Text Agent. The Full Text Agent service (or inserverft binary on UNIX platforms) is used throughout this guide synonymously with the Full Text Search Agent product. Page 4 of 19

5 Full Text Search Agent architecture The following diagram illustrates the relationship between the Full Text Agent and other Perceptive Content components, as explained after the diagram. MQ Agent. All documents submitted to Full Text Search Agent start at Message Queueing (MQ) Agent. This agent manages internal queues that are responsible for allowing agents to determine what action to take. Full Text Agent periodically sends requests to MQ Agent asking for the next document indexing job. OSM Agent. This agent is responsible for providing the Full Text Agent the physical files to index. When Full Text Agent receives a request to index a document it will send a request to the OSM Agent to retrieve the document for indexing. Content Collections. This database resides on the same server node as Full Text Agent and is required to store document indexing information. Perceptive Content Database. Full Text Agent communicates with the system database to update the document content status. Perceptive Content Database also stores information necessary to reference Content index information with the documents stored in your system. Recognition Agent. This agent handles text recognition for raster-based (graphical) documents. Recognition Agent can strongly affect throughput performance. For more information about optimizing Recognition Agent Throughput, refer to the Recognition Agent Throughput Best Practices Guide. Page 5 of 19

6 Full Text Search Agent performance model Overall Full Text Search Agent throughput performance is rooted in balancing the interactions among Full Text Agent, MQ Agent, Recognition Agent, and OSM Agent. This balance is achieved through understanding how each agent s individual throughput affects the throughput performance of Full Text Search Agent. Interaction with MQ Agent MQ Agent s first function is to identify document indexing jobs to delegate to Full Text Agent. It does this by searching at regular intervals for document indexing jobs created by other agents, the Perceptive Content Client, or other business solutions. When MQ Agent has identified a specified number of jobs, it caches them into a queue for delivery to Full Text Agent. Full Text Agent can request outstanding document indexing jobs by contacting MQ Agent. MQ Agent keeps a pool of worker threads to respond to incoming requests from all system agents. This means that the number of worker threads must be balanced against the overall volume of requests coming from Full Text and other system agents. If the number of incoming requests to MQ Agent outpace the capacity of the worker threads, then incoming requests will be blocked or serialized and negatively impact performance. Interaction with OSM Agent Since Full Text Agent has no direct access to the Perceptive Content OSM it relies on the OSM Agent to deliver the physical files needed for indexing. Much like MQ Agent, OSM Agent maintains a pool of worker threads to handle these incoming requests for OSM objects. Also like MQ Agent, other system agents may contact the OSM Agent and the number of incoming requests must be balanced against the number of worker threads. OSM Agent s throughput is thus entirely based on the availability of its worker threads and the speed of the OSM storage. Page 6 of 19

7 Full Text Agent internals When Full Text Agent receives indexing jobs from MQ Agent it does not immediately start processing them, instead it waits for one of two conditions to be met. The first condition is an internal timer and when the duration expires, the Full Text Agent starts indexing all documents it has received. The other condition is a high water mark measured in document pages. When this high water mark is met the Full Text Agent starts indexing the pages. The following diagram helps illustrate the logical flow that Full Text Agent follows in order to index documents. Start Request content job from MQ Job available? No Yes Retrieve job document(s) from OSM server Update Document indexing status in ImageNow Database Cache job content for indexing batch No Batching time limit exceeded? No Job size at max pages? Index cached content Yes Yes Page 7 of 19

8 Scaling Full Text Search Agent throughput and performance The following sections how you can scale Full Text Search Agent throughput and performance through general tuning and worker thread tuning. General tuning After the initial installation of both the Perceptive Content Server and Full Text Search Agent, the most beneficial first step is to increase the queue size and search frequency of MQ Agent. Changing queue size and search frequency improves both the overall throughput of content jobs and the response time to complete content jobs. To configure the MQ Agent for a maximum throughput of 500 jobs per minute, complete the following steps. Note If you require more throughput, increase the max.message.per.queue setting or decrease the message.polling.interval. 1. On the Perceptive Content Server computer, navigate to the [drive:] \inserver\etc\ folder and then open the inservermq.ini file in a text editor. 2. In the [General] group, change the following settings: Increase max.message.per.queue to 500 for this example. Leave message.polling.interval at Save and close the file. To further improve response time for content jobs, tune Full Text Agent to start jobs at a lower high water mark or a shorter timer delay. Changing these two settings reduces the time that Full Text Agent waits to start indexing content jobs. To configure the Full Text Agent to wait for a maximum one minute or to begin indexing when it receives 100 pages, complete the following steps. 1. On the Perceptive Content Server computer, navigate to the [drive:] \inserver\etc\ folder and then open the inow.ini file in a text editor. 2. In the [Full Text] group, change the following settings: Decrease content.submission.delay seconds to 60, for this example. Decrease content.submission.threshold to 100, for this example. 3. Save and close the file. Worker thread tuning You should only increasing the number of worker threads for MQ Agent and OSM Agent in cases where the existing worker thread availability is low. Page 8 of 19

9 External performance influences and effects The following sections describe the external influences and effects of the Recognition Agent and Full Text Agent. Recognition Agent One of the most critical performance considerations to a Full Text Search Agent solution is the Recognition Agent. Extracting text via OCR from images is a resource intensive operation. For more information about evaluating and tuning Recognition Agent performance, refer to the Recognition Agent Throughput Best Practices Guide. System impact of tuning Full Text Agent Much of the performance tuning for Full Text Search Agent requires adjustments outside of the Full Text Agent configuration. Before making any changes made to the configuration of MQ Agent, OSM Agent, and Recognition Agent, you should evaluate the changes for any performance impact on other business processes and the Perceptive Content system as a whole. All Full Text Search Agent installations function as remote installations. There is no performance or throughput benefit (other than one based on network performance) to an installation local to the Perceptive Content Server. Currently, Perceptive Software only supports Full Text Search Agent installations on 32-bit based operating systems. Content Index Throughput Testing Results The data in the following test runs was imported using Import Agent. System documents consisted of one to six random pages of text. For non-legacy runs, Import Agent was configured to automatically submit new content for indexing. Legacy runs were configured to index only content added for this test. Constants The average text page size was approximately 3 KB with each page representing a single document page. Due to the nature of how Import Agent submits new pages to content for indexing, the results for this test are lower than would normally be expected. As part of its processing, Import Agent submits each newly added page to Full Text Search Agent as if it were a unique document. This causes each document to be reviewed for indexing once per page processed by Import Agent. Each PDF document imported into the system was a single PDF file averaging 96 KB in size. Each MS Word document imported into the system was a single word document average 32 KB in size. Full Text Agent was configured to submit legacy documents to Full Text Search Agent as fast as possible to keep the agent saturated with requests. Configuration for legacy document submission was the same as in Test Run 4. Unlike Test Run 1, each document was submitted a single time, which resulted in less duplicate requests, eliminating additional processing by Full Text Agent. Page 9 of 19

10 Index performance 1400 Pages Indexed per Minute Pages Indexed per Minute Text PDF Doc Legacy PDF Legacy Text Test Run Data Type Pages Indexed Run Time Pages Indexed per Minute 1 Text :21: PDF :14: Doc :42: Legacy PDF :14: Legacy Text :40: Page 10 of 19

11 Full Text Search Performance Testing Results The data in the following test runs was imported using Import Agent. System documents consisted of one to six random pages of text. Constants During the test, the following constants were used: 64-bit Perceptive Content Server running on Windows Server 2008 R2 Enterprise, 64-bit Operating System, 8 CPU cores, 48GB RAM. 32-bit Full Text Agent running on Windows Server 2008, 32-bit Operating System, 8 CPU cores, 48GB RAM. Search performance of text documents This scale up test varied the number of user connections with each test run. Each user performed a random full text search and opened five random documents from the search results. Simulated user wait times between search and opening of the documents were between 10 and 120 seconds. The database contained approximately 13,500 text files previously indexed by Full Text Agent. Test Run Connected Users Full Text Agent CPU Total Searches Avg Search Time (sec) % 1, % 2, % 4, % 5, % 7, % 8, Page 11 of 19

12 Search performance of Microsoft Word documents This scale up test varied the number of user connections with each test run. Each user performed a random full text search and opened five random documents from the search results. Simulated user wait times between search and opening of the documents were between 10 and 120 seconds. The database contained approximately 13,500 Microsoft Word documents previously indexed by Full Text Agent. Test Run Connected Users Full Text Agent CPU Total Searches Avg Search Time (sec) % 1, % 2, % 4, % 5, % 7, % 8, Page 12 of 19

13 Search performance of PDF documents This scale up test varied the number of user connections with each test run. Each user performed a random full text search and opened five random documents from the search results. Simulated user wait times between search and opening of the documents were between 10 and 120 seconds. The database contained approximately 13,500 PDF documents previously indexed by Full Text Agent. Test Run Connected Users Full Text Agent CPU Total Searches Avg Search Time (sec) % 1, % 2, % 4, % 5, % 7, % 8, Page 13 of 19

14 Search performance varying Full Text Agent worker threads This thread scale up varied the number of Full Text Agent worker threads. We collected data for test runs with 4, 8, 12, 16, 20, and 24 worker threads. Each test run was configured with 600 users, and each of these users performed random full text searches and opened one random document from the search results. Simulated user wait time between searches was between 10 to 30 seconds. We ran this scale up against a database with about 13,500 PDF documents previously indexed by Full Text Agent. Search Performance - PDF Time (sec) Num Threads Test Run FT Threads Full Text Agent CPU Total Searches Avg Search Time (sec) % 16, % 15, % 17, % 16, % 16, % 16, Page 14 of 19

15 80.00 CPU Utilization - PDF CPU (%) inserver inserverft imagenow db Number of Worker Threads Page 15 of 19

16 Full Text Performance with Large-Scale Content Collections This scale-up test investigated search and indexing performance of large-scale content collections. Testing consisted of capturing search and indexing metrics at different milestones, during which Full Text Search Agent indexed over 4 million documents. The tests resulted in these outcomes: Search and indexing functionality remained stable through the steady increase in content collection size. Search performance and indexing performance both scaled successfully as content collection size increased. When collection size was increased by more than 300%, indexing throughput decreased only by 15%. Average search times gained approximately one additional second throughout the entire test. Resource consumption for inserverft increased with content collection size. See the following graph: Resource utilization varies by hardware and resource utilization. System specs Intel Xeon X GB RAM iscsi Equallogic Storage Scalability recommendations For environments expecting content search volume to exceed 50 searches per minute, Perceptive Software recommends that you make the following configuration change to the inserverft.ini file: num.connection.workers=5 With this setting (five incoming search request workers), the server can process over 100 searches per minute. Page 16 of 19

17 Appendix A: INI Configuration File Settings The following tables provide definitions and sample data for the settings in the INI configuration files that have an impact on throughput efficiency for Full Text Agent. inserverft.ini settings The following table provides definitions and sample data for the settings in the inserverft.ini configuration file that have an impact on throughput efficiency for Full Text Agent only. For a complete list of settings in the inserverft.ini configuration file, refer to the Full Text Search Agent Installation Guide. Group Setting Options Description Network num.connection.workers Any positive integer Specifies the number of worker threads in the connection pool. The default is 2. inow.ini settings The following table provides definitions and sample data for the settings in the inow.ini configuration file that have an impact on throughput efficiency for Full Text Agent only. For a complete list of settings in the inow.ini configuration file, refer to the Perceptive Content Server and Client Installation and Setup Guide. Group Setting Options Description Full Text full.text.integration TRUE FALSE Specifies whether Full Text Search Agent submissions, indexing, and searching are enabled. TRUE = Enabled. FALSE = Disabled. The default is FALSE. submissions.dir Any valid directory Specifies where internal bulk files are stored while waiting to be processed. The default is $(IMAGENOWDIR6)/fulltext/submissions. cleanup.bulk.files TRUE FALSE Specifies whether internal bulk files are deleted after they are used. This setting may be temporarily turned off in order to help debug the Full Text Search Agent. TRUE = Internal bulk files are deleted after use. FALSE = Internal bulk files are not deleted. The default is TRUE. Page 17 of 19

18 Group Setting Options Description search.last.n. collections collection.high.water. mark Any positive integer up to the total number of collections Any positive integer Specifies how many collections to search when a query is submitted to Full Text Search Agent. 0 = Search all collections. The default is 0. Specifies the maximum number of records allowed per Full Text Search Agent collection. The default is Full Text (continued) collection.group<n>.dir Any valid directory Specifies the directory to which new collections are dynamically allocated. Full Text Search Agent collections can be distributed among group directories, each of which can house multiple collections. You can define up to nine different group directories by creating new, subsequently numbered collection.group<n>.dir settings. content.submission. delay.seconds content.submission. threshold index.new.content.in. batch Any positive integer Any positive integer TRUE FALSE Specifies how long in seconds ImageNow waits to submit the batch to Verify. The longer ImageNow waits to submit the batch, the more documents are included. The default is 300. Specifies the maximum number of documents ImageNow allows in a batch. If you reach the maximum, ImageNow submits the batch to Verify regardless of the content.submission.delay.seconds setting. The default is 500. Specifies whether ImageNow indexes documents in batches. TRUE = ImageNow indexes documents in batches. FALSE = ImageNow does not index documents in batches. The default is TRUE. Page 18 of 19

19 inservermq.ini settings The following table provides definitions and sample data for the settings in the inservermq.ini configuration file that have an impact on throughput efficiency for Message Queuing Agent only. For a complete list of settings in the inservermq.ini configuration file, refer to the Perceptive Content Server and Client Installation and Setup Guide. Group Setting Options Description General num.workers Any positive integer Specifies the number of worker threads Message Queuing Agent uses for processing messages. The default is 5. message.polling.interval max.messages.per. queue sleep.interval.max sleep.interval.between. send Any positive integer Any positive integer Any positive integer Any positive integer Specifies, in seconds, how often Message Queuing Agent searches for message in the directory. The default is 60. Specifies the maximum number of messages Message Queuing Agent retrieves from the database at one time. The default is 100. Specifies, in milliseconds, how long worker threads wait to check for messages when messages are not available from the database. The default is Specifies, in milliseconds, how long worker threads pause after successfully sending a message before starting the next process. The default is 100. Page 19 of 19

ImageNow ERM Suite. Installation and Setup Guide. ImageNow Version: 6.7. x

ImageNow ERM Suite. Installation and Setup Guide. ImageNow Version: 6.7. x ImageNow ERM Suite Installation and Setup Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining What s New Version: 2.4.x Written by: Product Documentation, R&D Date: May 2013 2013 Lexmark International Technology SA. All rights reserved Perceptive Software is a trademark

More information

Replicating Perceptive Content to a Test Environment

Replicating Perceptive Content to a Test Environment Replicating Perceptive Content to a Test Environment Best Practices Perceptive Content, Version: 7.1.x Written by: Product Knowledge, R&D Date: January 2017 2016 Lexmark. All rights reserved. Lexmark is

More information

Replicating Perceptive Content to a Test Environment

Replicating Perceptive Content to a Test Environment Replicating Perceptive Content to a Test Environment Best Practices Version: 7.2.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark

More information

Perceptive Content. Release Notes. Version: 7.2.x

Perceptive Content. Release Notes. Version: 7.2.x Perceptive Content Release Notes Version: 7.2.x Written by: Product Knowledge, R&D Date: September 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.2.x Written by: Product Documentation, R&D Date: October 2016 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Perceptive Accounts Payable Invoice eform

Perceptive Accounts Payable Invoice eform Perceptive Accounts Payable Invoice eform Virtual Tables Migration Guide Perceptive AP Invoice eform version: 10.x to 11.x Written by: Product Documentation, R&D Date: August 2013 2012 Perceptive Software.

More information

Perceptive Connect. Installation and Setup Guide. Beta version: Compatible with ImageNow, versions 6.6.x and 6.7.x

Perceptive Connect. Installation and Setup Guide. Beta version: Compatible with ImageNow, versions 6.6.x and 6.7.x Perceptive Connect Installation and Setup Guide Beta version: 0.12.1 Compatible with ImageNow, versions 6.6.x and 6.7.x Written by: Product Documentation, R&D Date: November 2013 2013 Perceptive Software.

More information

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.2.x Written by: Product Documentation, R&D Date: August 2016 2015 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Installation Guide PEDS Version: 1.2 Environment: Windows Written by: Product Documentation, R&D Date: July 2012 2012 Perceptive Software. All rights reserved CaptureNow,

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Release Notes Version: 1.2.x Written by: Product Documentation, R&D Date: October 2014 2014 Perceptive Software. All rights reserved. Perceptive Software is a trademark

More information

File Processing Agent

File Processing Agent File Processing Agent Installation and Setup Guide Perceptive Content, Version: 7.1.x Written by: Product Knowledge, R&D Date: March 2015 2015 Perceptive Software. All rights reserved Perceptive Software

More information

Intelligent Capture for Transcripts Process Integration

Intelligent Capture for Transcripts Process Integration Intelligent Capture for Transcripts Process Integration Installation Guide Version 1.0.x Compatible with ImageNow versions: 6.6.x to 6.7. x Written by: Product Documentation, R&D Date: September 2013 2013

More information

Performance Monitors Setup Guide

Performance Monitors Setup Guide Performance Monitors Setup Guide Version 1.0 2017 EQ-PERF-MON-20170530 Equitrac Performance Monitors Setup Guide Document Revision History Revision Date May 30, 2017 Revision List Initial Release 2017

More information

Installation, Upgrade, and Setup Guide Version: 10.2

Installation, Upgrade, and Setup Guide Version: 10.2 Perceptive Enterprise Search Installation, Upgrade, and Setup Guide Version: 10.2 Written by: Product Documentation, R&D Date: March 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Perceptive Interact for Microsoft Dynamics AX

Perceptive Interact for Microsoft Dynamics AX Perceptive Interact for Microsoft Dynamics AX Installation and Setup Guide Version 1.2 Compatible with ImageNow, version 6.7.x Written by: Product Documentation, R&D Date: September 2016 2013 Perceptive

More information

Perceptive Content. Release Notes. Version: 7.0.x

Perceptive Content. Release Notes. Version: 7.0.x Perceptive Content Release Notes Version: 7.0.x Written by: Product Knowledge, R&D Date: May 2018 2015-2017 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

AccessVia Publishing Platform

AccessVia Publishing Platform AccessVia Publishing Platform Technical Specifications Publishing Platform Manager Version: 8.6.x Written by: Product Documentation, R&D Date: May 2014 2014 Perceptive Software. All rights reserved Perceptive

More information

Perceptive Workgroup Search

Perceptive Workgroup Search Perceptive Workgroup Search Technical Specifications Version: 10.3 Written by: Perceptive Search, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Perceptive Content. New Feature Introduction. Version: 7.0

Perceptive Content. New Feature Introduction. Version: 7.0 Perceptive Content New Feature Introduction Version: 7.0 Written by: Product Documentation, R&D Date: December 2014 2014 Perceptive Software. All rights reserved. Perceptive Software is a trademark of

More information

iconvert for Perceptive Content

iconvert for Perceptive Content iconvert for Perceptive Content Product Guide Version: 7.1.x Written by: Product Knowledge, R&D Date: January 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Technology,

More information

Publishing Platform for Retail

Publishing Platform for Retail Publishing Platform for Retail What s New Version: 9.2.x Written by: Product Documentation, R&D Date: September 2014 2014 Perceptive Software. All rights reserved. Perceptive Software is a trademark of

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

Content Modeling for Administrators

Content Modeling for Administrators Content Modeling for Administrators Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Perceptive AP Invoice eform

Perceptive AP Invoice eform Perceptive Release Notes Version: 12.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark of Lexmark International

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Client Product Guide PDC Version: 5.4 Written by: Product Documentation, R&D Date: February 2014 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark

More information

ImageNow Retention Policy Manager

ImageNow Retention Policy Manager ImageNow Retention Policy Manager Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Perceptive Reflect. Installation and Setup Guide. Version: 2.3.x

Perceptive Reflect. Installation and Setup Guide. Version: 2.3.x Perceptive Reflect Installation and Setup Guide Version: 2.3.x Written by: Product Documentation, R&D Date: September 2016 2012 Lexmark International Technology SA. All rights reserved Perceptive Reflect

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Perceptive DataTransfer

Perceptive DataTransfer Perceptive DataTransfer System Overview Version: 6.2.x Written by: Product Documentation, R&D Date: January 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact, and WebNow

More information

Output Agent. Installation and Setup Guide. Perceptive Content Version: 7.0.x Environments: Linux

Output Agent. Installation and Setup Guide. Perceptive Content Version: 7.0.x Environments: Linux Output Agent Installation and Setup Guide Perceptive Content Version: 7.0.x Environments: Linux Written by: Product Knowledge, R&D Date: January 2015 2014 Perceptive Software. All rights reserved Perceptive

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

Perceptive Workgroup Search

Perceptive Workgroup Search Perceptive Workgroup Search Installation, Upgrade, and Setup Guide Version: 10.2 Written by: Perceptive Search, R&D Date: September 2016 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Cluster Resource Monitor

Cluster Resource Monitor Cluster Resource Monitor Installation and Setup Guide Version: 7.2.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Contingency Planning and Disaster Recovery

Contingency Planning and Disaster Recovery Contingency Planning and Disaster Recovery Best Practices Version: 7.2.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Dispatcher. Phoenix. Dispatcher Phoenix Enterprise White Paper Version 0.2

Dispatcher. Phoenix. Dispatcher Phoenix Enterprise White Paper Version 0.2 Dispatcher Phoenix Dispatcher Phoenix Enterprise CONTENTS Introduction... 3 Terminology... 4 Planning & Considerations... 5 Security Features... 9 Enterprise Features... 10 Cluster Overview... 11 Deployment

More information

ImageNow. Product Readme. ImageNow Version: 6.7. x

ImageNow. Product Readme. ImageNow Version: 6.7. x ImageNow Product Readme ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: July 2012 2012 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact, and WebNow are trademarks

More information

ImageNow Administrator

ImageNow Administrator ImageNow Administrator Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Milestone Solution Partner IT Infrastructure Components Certification Report

Milestone Solution Partner IT Infrastructure Components Certification Report Milestone Solution Partner IT Infrastructure Components Certification Report Dell Storage PS6610, Dell EqualLogic PS6210, Dell EqualLogic FS7610 July 2015 Revisions Date July 2015 Description Initial release

More information

Parallels Remote Application Server. Scalability Testing with Login VSI

Parallels Remote Application Server. Scalability Testing with Login VSI Parallels Remote Application Server Scalability Testing with Login VSI Contents Introduction... 3 Scalability... 4 Testing the Scalability of Parallels RAS... 4 Configurations for Scalability Testing...

More information

EMC Centera. Advanced Design and Setup Guide. Perceptive Content Version: 7.1.x

EMC Centera. Advanced Design and Setup Guide. Perceptive Content Version: 7.1.x EMC Centera Advanced Design and Setup Guide Perceptive Content Version: 7.1.x Written by: Product Knowledge Date: July 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

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

Adlib PDF FileNet Connector Guide PRODUCT VERSION: 5.1

Adlib PDF FileNet Connector Guide PRODUCT VERSION: 5.1 Adlib PDF FileNet Connector Guide PRODUCT VERSION: 5.1 REVISION DATE: January 2014 Copyright 2014 Adlib This manual, and the Adlib products to which it refers, is furnished under license and may be used

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Release Notes Hot Patch Build 5553 Version: 5.5 SP2 Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved. Perceptive

More information

Goverlan Reach Server Hardware & Operating System Guidelines

Goverlan Reach Server Hardware & Operating System Guidelines www.goverlan.com Goverlan Reach Server Hardware & Operating System Guidelines System Requirements General Guidelines The system requirement for a Goverlan Reach Server is calculated based on its potential

More information

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic An Oracle White Paper September 2011 Oracle Utilities Meter Data Management 2.0.1 Demonstrates Extreme Performance on Oracle Exadata/Exalogic Introduction New utilities technologies are bringing with them

More information

ControlPoint. Evaluation Guide. November 09,

ControlPoint. Evaluation Guide. November 09, ControlPoint Evaluation Guide November 09, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents of this

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

Perceptive Content. Release Notes. Version: 7.0.x

Perceptive Content. Release Notes. Version: 7.0.x Perceptive Content Release Notes Version: 7.0.x Written by: Product Knowledge, R&D Date: February 2016 2015-2016 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

NEC Express5800 A2040b 22TB Data Warehouse Fast Track. Reference Architecture with SW mirrored HGST FlashMAX III

NEC Express5800 A2040b 22TB Data Warehouse Fast Track. Reference Architecture with SW mirrored HGST FlashMAX III NEC Express5800 A2040b 22TB Data Warehouse Fast Track Reference Architecture with SW mirrored HGST FlashMAX III Based on Microsoft SQL Server 2014 Data Warehouse Fast Track (DWFT) Reference Architecture

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

Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking

Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking Oracle JD Edwards EnterpriseOne Object Usage Tracking Performance Characterization Using JD Edwards EnterpriseOne Object Usage Tracking ORACLE WHITE PAPER NOVEMBER 2017 Disclaimer The following is intended

More information

Perceptive Content Licensing

Perceptive Content Licensing Perceptive Content Licensing Advanced Design and Setup Guide Perceptive Content, Version: 7.1.x Written by: Product Knowledge, R&D Date: August 2015 2015 Lexmark International Technology, S.A. All rights

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

McAfee epolicy Orchestrator 4.5 Hardware Sizing and Bandwidth Usage Guide

McAfee epolicy Orchestrator 4.5 Hardware Sizing and Bandwidth Usage Guide McAfee epolicy Orchestrator 4.5 Hardware Sizing and Bandwidth Usage Guide COPYRIGHT Copyright 009 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

DataCapture Transcript Processing

DataCapture Transcript Processing DataCapture Transcript Processing Installation and Setup Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2012 Perceptive Software. All rights reserved CaptureNow,

More information

Perceptive Interact for Microsoft Dynamics CRM

Perceptive Interact for Microsoft Dynamics CRM Perceptive Interact for Microsoft Dynamics CRM Installation and Setup Guide Version 2.2.x Compatible with ImageNow, Version 6.7.x or higher Written by: Product Documentation, R&D Date: September 2016 2014

More information

Perceptive Experience Content Apps

Perceptive Experience Content Apps Perceptive Experience Content Apps Installation and Setup Guide Written by: Product Knowledge, R&D Date: Thursday, September 15, 2016 2014-2016 Lexmark International Technology, S.A. All rights reserved.

More information

AccessVia Publishing Platform

AccessVia Publishing Platform AccessVia Publishing Platform Installation and Setup Guide Publishing Platform Manager Version: 8.6.x Written by: Product Documentation, R&D Date: February 2014 2014 Perceptive Software. All rights reserved

More information

Scaling Indexer Clustering

Scaling Indexer Clustering Scaling Indexer Clustering 5 Million Unique Buckets and Beyond Cher-Hung Chang Principal Software Engineer Tameem Anwar Software Engineer 09/26/2017 Washington, DC Forward-Looking Statements During the

More information

Best Practices for Deploying a Mixed 1Gb/10Gb Ethernet SAN using Dell EqualLogic Storage Arrays

Best Practices for Deploying a Mixed 1Gb/10Gb Ethernet SAN using Dell EqualLogic Storage Arrays Dell EqualLogic Best Practices Series Best Practices for Deploying a Mixed 1Gb/10Gb Ethernet SAN using Dell EqualLogic Storage Arrays A Dell Technical Whitepaper Jerry Daugherty Storage Infrastructure

More information

Configuring CDR Repository Manager

Configuring CDR Repository Manager CHAPTER 13 Use the CDR Management Configuration window to set the amount of disk space to allocate to call detail record (CDR) and call management record (CMR) files, configure the number of days to preserve

More information

System Performance: Sizing and Tuning

System Performance: Sizing and Tuning www.novell.com/documentation System Performance: Sizing and Tuning ZENworks Mobile Management 2.6.x November 2012 Legal Notices Novell, Inc., makes no representations or warranties with respect to the

More information

Perceptive Interact for Microsoft Dynamics AX

Perceptive Interact for Microsoft Dynamics AX . Perceptive Interact for Microsoft Dynamics AX Release Notes Version: 2.2.x Compatible with ImageNow, Version: 6.7.x Written by: Product Knowledge, R&D Date: September 2016 2015 Perceptive Software. All

More information

Microsoft SQL Server Fix Pack 15. Reference IBM

Microsoft SQL Server Fix Pack 15. Reference IBM Microsoft SQL Server 6.3.1 Fix Pack 15 Reference IBM Microsoft SQL Server 6.3.1 Fix Pack 15 Reference IBM Note Before using this information and the product it supports, read the information in Notices

More information

Perceptive DataTransfer

Perceptive DataTransfer Perceptive DataTransfer Release Notes Version: 6.4.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered

More information

Service Manager. Database Configuration Guide

Service Manager. Database Configuration Guide Service Manager powered by HEAT Database Configuration Guide 2017.2.1 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information

Scalability Testing with Login VSI v16.2. White Paper Parallels Remote Application Server 2018

Scalability Testing with Login VSI v16.2. White Paper Parallels Remote Application Server 2018 Scalability Testing with Login VSI v16.2 White Paper Parallels Remote Application Server 2018 Table of Contents Scalability... 3 Testing the Scalability of Parallels RAS... 3 Configurations for Scalability

More information

Perceptive Intelligent Capture. Product Licensing Guide. with Supervised Learning. Version 5.5 SP2

Perceptive Intelligent Capture. Product Licensing Guide. with Supervised Learning. Version 5.5 SP2 Perceptive Intelligent Capture with Supervised Learning Product Licensing Guide Version 5.5 SP2 Written by: Product Documentation, QA Date: July 2013 1991-2013 Perceptive Software, Inc.. All rights reserved

More information

IBM Emulex 16Gb Fibre Channel HBA Evaluation

IBM Emulex 16Gb Fibre Channel HBA Evaluation IBM Emulex 16Gb Fibre Channel HBA Evaluation Evaluation report prepared under contract with Emulex Executive Summary The computing industry is experiencing an increasing demand for storage performance

More information

Perceptive Process Enterprise - UNIX Installation Guide

Perceptive Process Enterprise - UNIX Installation Guide Perceptive Process Enterprise - UNIX Installation Guide 2013 Lexmark International Technology S.A. Date: 10/28/2013 Version: 3.0.2 Perceptive Software is a trademark of Lexmark International Technology

More information

Technical Paper. Performance and Tuning Considerations for SAS on Dell EMC VMAX 250 All-Flash Array

Technical Paper. Performance and Tuning Considerations for SAS on Dell EMC VMAX 250 All-Flash Array Technical Paper Performance and Tuning Considerations for SAS on Dell EMC VMAX 250 All-Flash Array Release Information Content Version: 1.0 April 2018 Trademarks and Patents SAS Institute Inc., SAS Campus

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Getting Started Guide PEDS Version: 1.2 Written by: Product Documentation, R&D Date: July 2014 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

SAS Simulation Studio 14.1: User s Guide. Introduction to SAS Simulation Studio

SAS Simulation Studio 14.1: User s Guide. Introduction to SAS Simulation Studio SAS Simulation Studio 14.1: User s Guide Introduction to SAS Simulation Studio This document is an individual chapter from SAS Simulation Studio 14.1: User s Guide. The correct bibliographic citation for

More information

Perceptive AP Invoice Processing Solutions

Perceptive AP Invoice Processing Solutions Perceptive AP Invoice Processing Solutions Readme Version 11.x Written by: Product Documentation, R&D Date: February 10, 2014 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark

More information

webmethods Task Engine 9.9 on Red Hat Operating System

webmethods Task Engine 9.9 on Red Hat Operating System webmethods Task Engine 9.9 on Red Hat Operating System Performance Technical Report 1 2015 Software AG. All rights reserved. Table of Contents INTRODUCTION 3 1.0 Benchmark Goals 4 2.0 Hardware and Software

More information

CA Single Sign-On. Performance Test Report R12

CA Single Sign-On. Performance Test Report R12 CA Single Sign-On Performance Test Report R12 Contents CHAPTER 1: OVERVIEW INTRODUCTION SUMMARY METHODOLOGY GLOSSARY CHAPTER 2: TESTING METHOD TEST ENVIRONMENT DATA MODEL CONNECTION PROCESSING SYSTEM PARAMETERS

More information

EMC Virtual Infrastructure for Microsoft Exchange 2007 Enabled by EMC CLARiiON CX4-120 and VMware vsphere 4.0 using iscsi

EMC Virtual Infrastructure for Microsoft Exchange 2007 Enabled by EMC CLARiiON CX4-120 and VMware vsphere 4.0 using iscsi EMC Virtual Infrastructure for Microsoft Exchange 27 Enabled by EMC CLARiiON CX4-12 and Applied Technology Abstract This white paper details a solution built and tested using EMC CLARiiON CX4-12 and VMware

More information

Jyotheswar Kuricheti

Jyotheswar Kuricheti Jyotheswar Kuricheti 1 Agenda: 1. Performance Tuning Overview 2. Identify Bottlenecks 3. Optimizing at different levels : Target Source Mapping Session System 2 3 Performance Tuning Overview: 4 What is

More information

Perceptive Accounts Payable Invoice eform

Perceptive Accounts Payable Invoice eform Perceptive Accounts Payable Invoice eform Release Notes Version: 12.5.x Written by: Product Knowledge, R&D Date: October 2016 2014-2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

Real Time: Understanding the Trade-offs Between Determinism and Throughput

Real Time: Understanding the Trade-offs Between Determinism and Throughput Real Time: Understanding the Trade-offs Between Determinism and Throughput Roland Westrelin, Java Real-Time Engineering, Brian Doherty, Java Performance Engineering, Sun Microsystems, Inc TS-5609 Learn

More information

Perceptive Enterprise Search

Perceptive Enterprise Search Perceptive Enterprise Search Technical Specifications Version: 10.x Written by: Product Documentation, R&D Date: January 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Full Text Connection

Full Text Connection Full Text Connection Copyright 016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks are the property

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

SCALING UP VS. SCALING OUT IN A QLIKVIEW ENVIRONMENT

SCALING UP VS. SCALING OUT IN A QLIKVIEW ENVIRONMENT SCALING UP VS. SCALING OUT IN A QLIKVIEW ENVIRONMENT QlikView Technical Brief February 2012 qlikview.com Introduction When it comes to the enterprise Business Discovery environments, the ability of the

More information

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones 12c Release 2 ( )

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones 12c Release 2 ( ) Oracle Enterprise Manager Ops Center Creating Oracle Solaris 11 Zones 12c Release 2 (12.2.2.0.0) E41230-04 February 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA

Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA Evaluation report prepared under contract with HP Executive Summary The computing industry is experiencing an increasing demand for storage

More information

MS Windows Adaptive Agent For Windows 2008

MS Windows Adaptive Agent For Windows 2008 MS Windows Adaptive Agent For Windows 2008 Copyright 2000-2009 KEMP Technologies, Inc. All Rights Reserved. Page 1 Copyright 2000-2009 KEMP Technologies, Inc. All rights reserved. KEMP Technologies, Inc.

More information

Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0. December 2017

Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0. December 2017 Oracle Retail Order Management System (CWSerenade) Installation Instructions Release 5.0 December 2017 Oracle Retail Order Management System Installation Instructions, Release 5.0 Revision History Date

More information

Microsoft SQL Server 2012 Fast Track Reference Configuration Using PowerEdge R720 and EqualLogic PS6110XV Arrays

Microsoft SQL Server 2012 Fast Track Reference Configuration Using PowerEdge R720 and EqualLogic PS6110XV Arrays Microsoft SQL Server 2012 Fast Track Reference Configuration Using PowerEdge R720 and EqualLogic PS6110XV Arrays This whitepaper describes Dell Microsoft SQL Server Fast Track reference architecture configurations

More information

IBM Application Performance Analyzer for z/os Version IBM Corporation

IBM Application Performance Analyzer for z/os Version IBM Corporation IBM Application Performance Analyzer for z/os Version 11 IBM Application Performance Analyzer for z/os Agenda Introduction to Application Performance Analyzer for z/os A tour of Application Performance

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Licensing Guide Version: 5.8.x Written by: Product Knowledge, R&D Date: Friday, December 08, 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

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

Qlik Sense Performance Benchmark

Qlik Sense Performance Benchmark Technical Brief Qlik Sense Performance Benchmark This technical brief outlines performance benchmarks for Qlik Sense and is based on a testing methodology called the Qlik Capacity Benchmark. This series

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

Getting Started. Citrix Load Manager. Version 1.0. Citrix Systems, Inc.

Getting Started. Citrix Load Manager. Version 1.0. Citrix Systems, Inc. Getting Started Citrix Load Manager Version 1.0 Citrix Systems, Inc. Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious

More information

IBM FileNet Content Manager 5.2. Asynchronous Event Processing Performance Tuning

IBM FileNet Content Manager 5.2. Asynchronous Event Processing Performance Tuning IBM FileNet Content Manager 5.2 April 2013 IBM SWG Industry Solutions/ECM IBM FileNet Content Manager 5.2 Asynchronous Event Processing Performance Tuning Copyright IBM Corporation 2013 Enterprise Content

More information

Oracle Communications

Oracle Communications Oracle Communications Diameter Signaling Router Zero Balance Application User s Guide Release 8.2 E88988-01 January 2018 Oracle Communications Diameter Signaling Router Zero Balance Application User s

More information

Datasheet FUJITSU Software Cloud Monitoring Manager V2.0

Datasheet FUJITSU Software Cloud Monitoring Manager V2.0 Datasheet FUJITSU Software Cloud Monitoring Manager V2.0 Cloud Monitoring Manager supports DevOps teams to keep maximum control of their OpenStack Cloud OpenStack is complex and highly distributed. Gaining

More information