CA Workload Automation (DE) Internals and Troubleshooting. Lee Stecklov

Size: px
Start display at page:

Download "CA Workload Automation (DE) Internals and Troubleshooting. Lee Stecklov"

Transcription

1 CA Workload Automation (DE) Internals and Troubleshooting Lee Stecklov

2 Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by CA at any time without notice. Notwithstanding anything in this presentation to the contrary, this presentation shall not serve to (i) affect the rights and/or obligations of CA or its licensees under any existing or future written license agreement or services agreement relating to any CA software product; or (ii) amend any product documentation or specifications for any CA software product. The development, release and timing of any features or functionality described in this presentation remain at CA s sole discretion. Notwithstanding anything in this presentation to the contrary, upon the general availability of any future CA product release referenced in this presentation, CA will make such release available (i) for sale to new licensees of such product; and (ii) to existing licensees of such product on a when and if-available basis as part of CA maintenance and support, and in the form of a regularly scheduled major product release. Such releases may be made available to current licensees of such product who are current subscribers to CA maintenance and support on a when and if-available basis. In the event of a conflict between the terms of this paragraph and any other information contained in this presentation, the terms of this paragraph shall govern. 2 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

3 For Informational Purposes Only Certain information in this presentation may outline CA s general product direction. All information in this presentation is for your informational purposes only and may not be incorporated into any contract. CA assumes no responsibility for the accuracy or completeness of the information. To the extent permitted by applicable law, CA provides this document as is without warranty of any kind, including without limitation, any implied warranties or merchantability, fitness for a particular purpose, or non-infringement. In no event will CA be liable for any loss or damage, direct or indirect, from the use of this document, including, without limitation, lost profits, lost investment, business interruption, goodwill, or lost data, even if CA is expressly advised of the possibility of such damages. 3 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

4 Abstract > CA dseries Workload Automation is a java based clientserver cross-platform scheduler consisting of 3 components: CA dseries Workload Automation server, Agents and Desktop Client. Along with the 3 way communication the CA dseries Workload Automation server communicates with a relational database system through JDBC. The presentation discusses the Server architectural components, the life cycle of an application, environmental factors and troubleshooting. 4 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

5 Architecture: background > The Server Pure Java (1.6 except AIX 1.5) Installed and started by any user Launched by Shell on Unix/Linux or Service/command on Windows 5 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

6 CA WA Architectural diagram Server CLI 6 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

7 Architecture: Server > Design Ground-breaking Object-Oriented design written in Java. Object oriented-design allows flexibility and adaptability. Multi-threaded -Java threading JDBC connectors for database enhanced caching Java RMI interface for Graphical Client and Command Line SOAP Web Services interface Single instance or High Availability 7 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

8 Architecture: Server The Result: Highly scalable, high performance scheduling server. Benchmarking 4 million jobs per day Components Number of generations triggered CA WA Server R11.1 Sp1 (Build 58) with default system agent Number of jobs run in a day 3,809,800 Database(Oracle 11g) 30 Unix Agents(physical) 30 Unix Agent(physical) 20 Unix Agents(physical) 20 Unix Agent(physical) 8 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

9 Memory(KB) Architecture: Server > Performance considerations: Memory Java requires the heap to be pre-allocationed Xmx defines the maximum heap which is 1 GB by default. However process will only acquire the necessary memory Typical Memory profile for continuous scheduling: Memory Usage of server process Time(Minutes) Memory 9 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

10 % cpu usage Architecture: Server > Performance considerations: CPU Java Multi-threading means robust exploitation of available cpu s 40.00% cpu usage of server process 35.00% 30.00% 25.00% 20.00% 15.00% 10.00% 5.00% 0.00% Time(Minutes) cpu usage 10 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

11 Architecture: background > Database considerations Configuration, Schedule and run-time data stored in relational database (Oracle / MSSQL / DB2) JDBC used for database connection High volume, simple SQL insert, update, delete To ensure persistence, all run-time data is saved in database Database requirements are straightforward: one tablespace (Oracle), or one database (MSSQL). 11 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

12 Architecture: background > Relational Database Schema Logically divided into Runtime, History and Definition tables Runtime tables are used as queue and persistence tables they are highly transactional. History tables record job history, less volatile but grow over time Definition tables contain XML definitions saved in CLOB data types. 12 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

13 Architecture: communications > The Server Communications: TCP/IP Server requires 4 LISTENING ports Manager Client RMI export RMI Registry 13 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

14 Architectural diagram the network DB Port i.e DB Port i.e Server: Manager Port:7507 Agent: Port 7520 RMI Ports 7598/7599 SNMP Receiver Client Port: 7500 RMI Ports: 7598/7599 RMI ports RMI ports CLI Server 14 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

15 Architecture: communications > Server Communications: TCP/IP All ports bind to default installation address EXAMPLE: tcp 0 0 simon.ca.com:58500 *:* LISTEN tcp 0 0 simon.ca.com:58598 *:* LISTEN tcp 0 0 simon.ca.com:58599 *:* LISTEN tcp 0 0 simon.ca.com:58507 *:* LISTEN 15 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

16 Architectural diagram UI CLI 16 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

17 Architecture: UI > Desktop Client Based on the Eclipse graphical platform, pure Java Installs on user s workstation Started by a windows executable stub Personal workspace is C:\Documents and Settings\%user%\workspace Can automatically failover to the primary server 17 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

18 Architecture: UI The Desktop Client 18 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

19 Architecture: UI > Desktop Client Creates java RMI (Remote Method Invocation) interface to Server Primary Functions: Define Workload Monitor Server Administration 19 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

20 Architecture: UI > Web Server Monitor and Control workload Apache Tomcat Web UI 20 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

21 Architecture: Web Services 21 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

22 Architecture: Web Services > Web Services Interface uses Apace Tomcat and AXIS 1. Simple Object Access Protocol (SOAP) over HTTP or HTTPS use Web Services Description Language (WSDL) You can use web services to invoke the following CA WA functions: Trigger an Event in addition to its usual schedule Bypass a scheduled Event Hold (postpone) an Event Release a held Event Suspend an Event from triggering Resume a suspended Event Replace an Event's next scheduled execution with a new time 22 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

23 Architecture: Application Life Cycle > Scheduler thread The scheduler initiates the Application Life Cycle. Loads the TDR (Time Driven Request), which is an XML representation of the event. RUN.TEST this TDR is scheduled on the :00. Processes JavaScript, and sends the Application definition to the Manager. Builds the new TDR, and modifies the Event 23 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

24 Architecture: Application Life Cycle > Manager The Manager builds, executes and tracks. Builds the job definitions into memory, executes JavaScript if necessary Sends commands to Agent Receives and processes state information from Agent Persists states in RDBMS Persists relevant job information in RDBMS for history reporting 24 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

25 Architecture: Application Life Cycle Manager completes application life cycle. If the application is complete, terminates the thread, updates the database By querying the database, we can see how many applications are active. This is what the desktop client does when subscribing. The same information can be seen in esp_wss_appl: SQL> select count(*) from esp_wss_appl where STATUS=1; COUNT(*) There are 45 active applications. 25 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

26 Architecture: Job Life Cycle > Job Life Cycle Data Flow is best demonstrated by the job life cycle. Jobs are build when APPLICATION is created When a job has satisfied all it s requirements: resources, time constraints, predecessors, etc.. server considers it runnable and can send the run AFM (message) to the Agent AGENT LSESP5 WINNT1/VERIFYD.444/MAIN RUN. Data(Command=C:\Batches\test.bat) MFUser(LEE) Agent acknowledges reception At this point, job is in READY state on server 26 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

27 Troubleshooting > The most common problem Job stays in READY state Telnet Smoke Test 27 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

28 Troubleshooting > Tracelog and AFM log Tracelog Logs errors termed exceptions in Java Various filter ids correspond to server subsystems Filter ids can be turned on as needed (on the fly or permanently) Afmlog Logs AFM traffic (remote and internal) Can be used to watch agent traffic Audit log Who did what and when 28 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

29 Troubleshooting > Logging Exceptions Basis of troubleshooting server problems. Exception logging include call stacks Searching Log Files Quick test (Unix or Windows using GNU grep): grep -i exception tracelog.txt egrep -v -i 'send connect ping ack' Case insensitive search for exception, not including exceptions with the strings commonly found in agent connection exceptions :06: [ID: 0] SS: org.mozilla.javascript.evaluatorexception: Property 0 not found. 29 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

30 Troubleshooting > Logging Examining the exception stack 30 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

31 Troubleshooting > Logging Example: JavaScript Exception stack :05: [ID: 0] SS: org.mozilla.javascript.evaluatorexception: Property 0 not found. at org.mozilla.javascript.defaulterrorreporter.runtimeerror(unknown Source) at org.mozilla.javascript.context.reportruntimeerror(unknown Source) at org.mozilla.javascript.context.reportruntimeerror(unknown Source) at org.mozilla.javascript.context.reportruntimeerror1(unknown Source) at org.mozilla.javascript.scriptableobject.setattributes(unknown Source) at cybermation.library.script.javascript.cybjsflatobjectfactory.restore(cybjsflatobjectfact ory.java:593) In this example, the SS thread is throwing an exception while evaluating a JavaScript. A good starting point. 31 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

32 Troubleshooting > Logging Example: SQL error Exception stack :57: [ID: 0] HAC: PRIMARY SQLException on update/insert - java.sql.sqlexception: Io exception: Connection reset by peer: socket write error at oracle.jdbc.driver.databaseerror.throwsqlexception(databaseerror.java:125) at oracle.jdbc.driver.databaseerror.throwsqlexception(databaseerror.java:162) at oracle.jdbc.driver.databaseerror.throwsqlexception(databaseerror.java:274) ) :57: [ID: 0] HAC: Could not rollback the connection; the exception is Closed Connection - java.sql.sqlexception: Closed Connection at oracle.jdbc.driver.databaseerror.throwsqlexception(databaseerror.java:125) at oracle.jdbc.driver.databaseerror.throwsqlexception(databaseerror.java:162) at oracle.jdbc.driver.databaseerror.throwsqlexception(databaseerror.java:227) at oracle.jdbc.driver.physicalconnection.rollback(physicalconnection.java:994) at com.cybermation.espresso.rdbms.dbpooledconnectionwrapper.rollback(dbpooledconnec tionwrapper.java:141) at com.cybermation.espresso.rdbms.relationaldatabasemanager.unconditionalrollback(rela tionaldatabasemanager.java:382) High Availability thread reporting an I/O error on RDBMS 32 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

33 Troubleshooting > Logging SQL I/O error example 911 Thread monitors critical errors :57: [ID: 0] 911-Service: ************************************************************ * The thread HAC reported a fatal server error. * Server 911 service is initiating the shutdown procedure. ************************************************************ Server is programmed to shutdown on certain SQL errors. In this case, could have been a simple Network glitch, or database down. The actual error SQLCode: SQLState was returned by the JDBC driver. This tells us that the problem occurred at the jdbc network interface 33 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

34 Troubleshooting > Logging.. Server monitoring 911 Thread responsible for server health Server state thread tracks memory and database connection pools :37: [ID: 0] Thread-5: Esp Server State: Memory: Using 18 MB of Currently Allocated 38 MB. Total Free Memory is 998 MB of the Max Heap Size 1016 MB Threads: [Thread group=system;active groups=6;active threads=131] [Thread group=main;active groups=4;active threads=119] [Thread group=rmi Runtime;active groups=0;active threads=0] Database Connections:.. In Use Connections: Connection Wrapper[usageCount: 241, lastaccesstime: :37:03.204, Used by Thread: RDBOutputMessageQueue_13] 34 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

35 Troubleshooting > Quick Log Searches Using GNU grep of Windows findstr command Track server memory usage Unix: grep Memory tracelog.txt Windows: findstr Memory tracelog.txt Track the progress of the SS thread: grep SS: tracelog.txt Track on particular Application generation: grep INITDIR.889 tracelog.txt Track High Availability Component: grep HAC tracelog.txt 35 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

36 Troubleshooting > Thread Dumps Very helpful in case of server hangs A Java feature available on Unix/Linux only kill -3 pid_of_server creates a thread dump in ESP_HOME/MonitorAndStatus/server.log(Linux/Solaris/HP), <ESP_HOME>javacorennnn.nnnn.txt (AIX). Thread dump contains call stacks for all active threads Capture 3 thread dumps 1-2 minutes apart Valuable tool for support / development to analyze problems not found in log files. 36 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

37 Thank You 37 October CA Workload Automation (DE) Internals and Troubleshooting Copyright 2009 CA

CA Automation Capabilities A Technical Look at Process and Runbook Automation. Tom Kouhsari and AJ Dennis

CA Automation Capabilities A Technical Look at Process and Runbook Automation. Tom Kouhsari and AJ Dennis CA Automation Capabilities A Technical Look at Process and Runbook Automation Tom Kouhsari and AJ Dennis Terms of This Presentation This presentation was based on current information and resource allocations

More information

Beyond Basic Scheduling. John Crespin

Beyond Basic Scheduling. John Crespin Beyond Basic Scheduling John Crespin Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by

More information

Clarity Technical Know-How

Clarity Technical Know-How Clarity Technical Know-How Volume One Michael Hoefer VP & Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance. Walter Guerrero, Sr Software Engineer

Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance. Walter Guerrero, Sr Software Engineer Improve Service Quality: CA Insight DPM Integration with CA Spectrum Service Assurance Walter Guerrero, Sr Software Engineer Terms of This Presentation This presentation was based on current information

More information

2A The CA Plex.NET Client Generator. Rob Layzell CA Technologies

2A The CA Plex.NET Client Generator. Rob Layzell CA Technologies 2A The CA Plex.NET Client Generator Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change or withdrawal

More information

Upgrading to Clarity v12. Michael Hoefer VP and Chief Architect, Clarity PPM

Upgrading to Clarity v12. Michael Hoefer VP and Chief Architect, Clarity PPM Upgrading to Clarity v12 Michael Hoefer VP and Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and

More information

Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management. Nigel Groves

Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management. Nigel Groves Under the Hood: Using IT Client Manager Enhanced Network Connectivity for Real World Management Nigel Groves Terms of This Presentation This presentation was based on current information and resource allocations

More information

Consuming Web Services using CA 2E and IBM Tooling

Consuming Web Services using CA 2E and IBM Tooling Consuming Web Services using CA 2E and IBM Tooling Raghunath Daita Senior Software Engineer Abstract Raghunath Daita CA Technologies, Senior Software Engineer Web Services is the buzzword in the IT industry

More information

Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences

Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences Installing ISV Mainframe Products through a Web Browser with CA MSM: Update and User Experiences August 8, 2012 - SHARE Session 11840 Mark Zelden (CSC), Mary Anne Matyaz (Base Technologies, Inc.), and

More information

Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management. Presenters: Greg Hall, Will Lauer

Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management. Presenters: Greg Hall, Will Lauer Using CA ehealth PM and CA Spectrum IM published API s to integrate and automate your infrastructure management Presenters: Greg Hall, Will Lauer Terms of This Presentation This presentation was based

More information

1A Windows Presentation Foundation Explained. Rob Layzell CA Technologies

1A Windows Presentation Foundation Explained. Rob Layzell CA Technologies 1A Windows Presentation Foundation Explained Rob Layzell CA Technologies Legal This presentation was based on current information and resource allocations as of April 18, 2011 and is subject to change

More information

CA Plex Status and Plans

CA Plex Status and Plans CA Plex Status and Plans Terms of This Presentation This presentation was based on current information and resource allocations as of September 23, 2009 and is subject to change or withdrawal by CA at

More information

Managing Database Performance Within Virtual Environments. Walter Guerrero, Sr. Software Engineer

Managing Database Performance Within Virtual Environments. Walter Guerrero, Sr. Software Engineer Managing Database Performance Within Virtual Environments Walter Guerrero, Sr. Software Engineer Terms of This Presentation This presentation was based on current information and resource allocations as

More information

How to Automate Common z/vm and Linux on System z Tasks Session 10049

How to Automate Common z/vm and Linux on System z Tasks Session 10049 How to Automate Common z/vm and Linux on System z Tasks Session 10049 Disclaimer >This presentation is based on current information and resource allocations as of August 17, 2007 and is subject to change

More information

CA NSM and CA SPECTRUM Integration Demo. Roger Craig

CA NSM and CA SPECTRUM Integration Demo. Roger Craig CA NSM and CA SPECTRUM Integration Demo Roger Craig Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or

More information

Configuring the CA Workload Automation Desktop Client R11.1. David A. Leigh Principal Consultant - Automation

Configuring the CA Workload Automation Desktop Client R11.1. David A. Leigh Principal Consultant - Automation Configuring the CA Workload Automation Desktop Client R11.1 David A. Leigh Principal Consultant - Automation Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA 2E Status and Plans

CA 2E Status and Plans CA 2E Status and Plans Terms of This Presentation This presentation was based on current information and resource allocations as of September 23, 2009 and is subject to change or withdrawal by CA at any

More information

CA IDMS 18.0 & 18.5 for z/os and ziip

CA IDMS 18.0 & 18.5 for z/os and ziip FREQUENTLY ASKED QUESTIONS CA IDMS 18.0 & 18.5 for z/os and ziip Important October 2013 update ziip (IBM System z Integrated Information Processor) is a specialty mainframe processor designed to help free

More information

Global Command Center: Lights Out Datacenter. Darrin Solomon, VP Infrastructure CA

Global Command Center: Lights Out Datacenter. Darrin Solomon, VP Infrastructure CA Global Command Center: Lights Out Datacenter Darrin Solomon, VP Infrastructure Architecture @ CA Terms of This Presentation This presentation was based on current information and resource allocations as

More information

CA Workload Automation SE and the CA WA Agents r11.3. Ellen O'Connell

CA Workload Automation SE and the CA WA Agents r11.3. Ellen O'Connell CA Workload Automation SE and the CA WA Agents r11.3 Ellen O'Connell Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject

More information

All About Integration

All About Integration All About Integration XOG XML Open Gateway Lars Seibert, Engineering Services Architect July 2009 Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA AutoSys Workload. Troubleshooting

CA AutoSys Workload. Troubleshooting CA AutoSys Workload Automation r11 Troubleshooting Presenters: Dan Shannon, Elizabeth Dexter Terms of This Presentation This presentation was based on current information and resource allocations as of

More information

CA Jobtrac r11 Update. John Moore

CA Jobtrac r11 Update. John Moore CA Jobtrac r11 Update John Moore Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change or withdrawal by CA at

More information

Leveraging CA ehealth Performance Manager Proactive Performance Alerting. Joel Kaufman & Kathy Hickey

Leveraging CA ehealth Performance Manager Proactive Performance Alerting. Joel Kaufman & Kathy Hickey Leveraging CA ehealth Performance Manager Proactive Performance Alerting Joel Kaufman & Kathy Hickey Terms of This Presentation This presentation was based on current information and resource allocations

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Release Notes r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

CA Workload Automation Agent for Micro Focus

CA Workload Automation Agent for Micro Focus CA Workload Automation Agent for Micro Focus Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

DB2 Performance A Primer. Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011

DB2 Performance A Primer. Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011 DB2 Performance A Primer Bill Arledge Principal Consultant CA Technologies Sept 14 th, 2011 Agenda Performance Defined DB2 Instrumentation Sources of performance metrics DB2 Performance Disciplines System

More information

CA IT Client Manager / CA Unicenter Desktop and Server Management

CA IT Client Manager / CA Unicenter Desktop and Server Management CA GREEN BOOKS CA IT Client Manager / CA Unicenter Desktop and Server Management Object Level Security Best Practices LEGAL NOTICE This publication is based on current information and resource allocations

More information

Deployment Best Practices Version 1.0

Deployment Best Practices Version 1.0 Deployment Best Practices Version 1.0 LEGAL NOTICE This publication is based on current information and resource allocations as of its date of publication and is subject to change or withdrawal by CA at

More information

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies March 13, 2014 Dynamic Data Center: Business Solutions on Demand Continuous Delivery Bring Your

More information

Leveraging BCPii in Automation

Leveraging BCPii in Automation Leveraging BCPii in Zachary Williams CA Technologies August 4, 2014 Session #16090 Insert Custom Session QR if Desired. Agenda BCPii Use Case Discussion Goal How do we make our jobs easier by using BCPii

More information

CA Workload Automation DE

CA Workload Automation DE CA Workload Automation DE Monitor Perspective Help r11.3 SP3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA IDMS Server. Release Notes. r17

CA IDMS Server. Release Notes. r17 CA IDMS Server Release Notes r17 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Implementation Guide r11.3 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational

More information

CA IDMS TM /DB Indexing Part 1

CA IDMS TM /DB Indexing Part 1 International Toll Free Audio Numbers International Toll Free Audio Numbers Participant Dial-In Number(s): US Dial-In #: 1-877-833-5338 Int'l/Canada Dial-In #: 1-706-679-7033 Conference Audio Conference

More information

CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS. Type: System Requirements Date: CAP13SYR1

CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS. Type: System Requirements Date: CAP13SYR1 CA Productivity Accelerator 13.0 SYSTEM REQUIREMENTS Type: System Requirements Date: 2017-12-08 CAP13SYR1 Documentation Legal Notice This Documentation, which includes embedded help systems and electronically

More information

CA 7 Workload Automation Going Cross-Platform Managing you Enterprise Workload Ellen O'Connell

CA 7 Workload Automation Going Cross-Platform Managing you Enterprise Workload Ellen O'Connell CA 7 Workload Automation Going Cross-Platform Managing you Enterprise Workload Ellen O'Connell Terms of This Presentation This presentation was based on current information and resource allocations as

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA SiteMinder. Advanced Password Services Release Notes 12.52

CA SiteMinder. Advanced Password Services Release Notes 12.52 CA SiteMinder Advanced Password Services Release Notes 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Client Automation. Supported Content for CA Patch Manager and Supported Application Signature Content

CA Client Automation. Supported Content for CA Patch Manager and Supported Application Signature Content CA Client Automation Supported Content for CA Patch Manager and Supported Application Signature Content April 2018 Contents CA Content Research Team... 3 CA Patch Manager Content... 3 Operating Systems

More information

ENQ Downgrade & CA MIM Update

ENQ Downgrade & CA MIM Update ENQ Downgrade & CA MIM Update Sujay Solomon Jason Tucker CA Technologies August 7 th 2014 Session #16085 Insert Custom Session QR if Desired. www.share.org ENQ downgrade capability Initiator s use of the

More information

CA Nimsoft Monitor Snap

CA Nimsoft Monitor Snap CA Nimsoft Monitor Snap Configuration Guide for Network Connectivity Monitoring net_connect v2.9 series Legal Notices This online help system (the "System") is for your informational purposes only and

More information

CA Datacom Tools CA Datacom Server New and Enhanced Features for 15.x

CA Datacom Tools CA Datacom Server New and Enhanced Features for 15.x CA Datacom Tools - 15.0 CA Datacom Server New and Enhanced Features for 15.x Date: 02-May-2018 CA Datacom Tools - 15.0 This Documentation, which includes embedded help systems and electronically distributed

More information

CA Identity Manager. Installation Guide (JBoss) r12.5

CA Identity Manager. Installation Guide (JBoss) r12.5 CA Identity Manager Installation Guide (JBoss) r12.5 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational purposes

More information

CA Workload Automation Agent for Remote Execution

CA Workload Automation Agent for Remote Execution CA Workload Automation Agent for Remote Execution Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

Rhapsody Interface Management and Administration

Rhapsody Interface Management and Administration Rhapsody Interface Management and Administration Welcome The Rhapsody Framework Rhapsody Processing Model Application and persistence store files Web Management Console Backups Route, communication and

More information

CA IdentityMinder. Programming Guide for Java. r12.6.1

CA IdentityMinder. Programming Guide for Java. r12.6.1 CA IdentityMinder Programming Guide for Java r12.6.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

CA Mediation Manager. Installation Guide. Release 2.1.4

CA Mediation Manager. Installation Guide. Release 2.1.4 CA Mediation Manager Installation Guide Release 2.1.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation )

More information

CA Workload Automation Agent for Oracle E-Business Suite

CA Workload Automation Agent for Oracle E-Business Suite CA Workload Automation Agent for Oracle E-Business Suite Implementation Guide r11.3, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Web Services in Ac-on. Mark Schroeder 2E Track

Web Services in Ac-on. Mark Schroeder 2E Track Web Services in Ac-on Mark Schroeder 2E Track FOR INFORMATION PURPOSES ONLY Terms of this presenta3on This presenta-on was based on current informa-on and resource alloca-ons as of April 2013 and is subject

More information

ehealth Administration Overview Guide

ehealth Administration Overview Guide ehealth Administration Overview Guide MN-EHADMOV-001 October 2006 This documentation (the "Documentation") and related computer software program (the "Software") (hereinafter collectively referred to as

More information

CA GovernanceMinder. CA IdentityMinder Integration Guide

CA GovernanceMinder. CA IdentityMinder Integration Guide CA GovernanceMinder CA IdentityMinder Integration Guide 12.6.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Sentences Installation Guide. Sentences Version 4.0

Sentences Installation Guide. Sentences Version 4.0 Sentences Installation Guide Sentences Version 4.0 A publication of Lazysoft Ltd. Web: www.sentences.com Lazysoft Support: support@sentences.com Copyright 2000-2012 Lazysoft Ltd. All rights reserved. The

More information

Cross Product Reporting

Cross Product Reporting Cross Product Reporting User Guide Latest Revision: November 3, 2008 iii Legal Notice This publication is based on current information and resource allocations as of its date of publication and is subject

More information

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series CA Nimsoft Monitor Probe Guide for iseries Job Monitoring jobs v1.3 series Contact CA Contact CA Support For your convenience, CA Technologies provides one site where you can access the information that

More information

CA ehealth and CA SPECTRUM

CA ehealth and CA SPECTRUM CA ehealth and CA SPECTRUM Integration and User Guide (5177) ehealth r6.1 / SPECTRUM r9.0 This documentation and any related computer software help programs (hereinafter referred to as the Documentation

More information

CA Mediation Manager and CA Mediation Manager for Infrastructure Management

CA Mediation Manager and CA Mediation Manager for Infrastructure Management CA Mediation Manager and CA Mediation Manager for Infrastructure Management Installation Guide CA Mediation Manager Release 2.2.3 / CA Mediation Manager for Infrastructure Management 2.0, Release 2.2.3

More information

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

More information

Oracle WebCenter Portal Performance Tuning

Oracle WebCenter Portal Performance Tuning ORACLE PRODUCT LOGO Oracle WebCenter Portal Performance Tuning Rich Nessel - Principal Product Manager Christina Kolotouros - Product Management Director 1 Copyright 2011, Oracle and/or its affiliates.

More information

CA SiteMinder. Advanced Password Services Release Notes SP1

CA SiteMinder. Advanced Password Services Release Notes SP1 CA SiteMinder Advanced Password Services Release Notes 12.52 SP1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

IBM Tivoli Netcool/Impact 7.1 Sizing and Tuning Guide

IBM Tivoli Netcool/Impact 7.1 Sizing and Tuning Guide IBM Tivoli Netcool/Impact 7.1 Sizing and Tuning Guide Author: Jeffrey D. Jones Software Engineer Oct 2014 1 Copyright International Business Machines Corporation 2014. US Government Users Restricted Rights

More information

SPECTRUM. Control Panel User Guide (5029) r9.0.1

SPECTRUM. Control Panel User Guide (5029) r9.0.1 SPECTRUM Control Panel User Guide (5029) r9.0.1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes

More information

CA Identity Manager. Installation Guide (WebLogic) r12.5 SP7

CA Identity Manager. Installation Guide (WebLogic) r12.5 SP7 CA Identity Manager Installation Guide (WebLogic) r12.5 SP7 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

One Identity Manager 8.0. Administration Guide for Connecting Unix-Based Target Systems

One Identity Manager 8.0. Administration Guide for Connecting Unix-Based Target Systems One Identity Manager 8.0 Administration Guide for Connecting Unix- Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management clariion Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Release Summary r12 SP1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

CA ehealth. Setting Up Service Availability 2.0. r6.1

CA ehealth. Setting Up Service Availability 2.0. r6.1 CA ehealth Setting Up Service Availability 2.0 r6.1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

CA Workload Automation Agent for PeopleSoft

CA Workload Automation Agent for PeopleSoft CA Workload Automation Agent for PeopleSoft Implementation Guide r11.3, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

More information

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft

How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft How to Deploy and Use the CA ARCserve RHA Probe for Nimsoft This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

UNIX and Linux Data Mover Guide. Arcserve Backup r17.5

UNIX and Linux Data Mover Guide. Arcserve Backup r17.5 UNIX and Linux Data Mover Guide Arcserve Backup r17.5 Legal Notices This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA DataMinder. Stored Data Integration Guide. Release 14.5

CA DataMinder. Stored Data Integration Guide. Release 14.5 CA DataMinder Stored Data Integration Guide Release 14.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation

Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation Big Brother is Watching Your Big Data: z/os Actions Buried in the FISMA Security Regulation Bill Valyo CA Technologies February 7, 2013 Session #12765 Quick Abstract: About this Presentation This presentation

More information

CA Unified Infrastructure Management Snap

CA Unified Infrastructure Management Snap CA Unified Infrastructure Management Snap Configuration Guide for DB2 Database Monitoring db2 v4.0 series Copyright Notice This online help system (the "System") is for your informational purposes only

More information

Performance Best Practices Paper for IBM Tivoli Directory Integrator v6.1 and v6.1.1

Performance Best Practices Paper for IBM Tivoli Directory Integrator v6.1 and v6.1.1 Performance Best Practices Paper for IBM Tivoli Directory Integrator v6.1 and v6.1.1 version 1.0 July, 2007 Table of Contents 1. Introduction...3 2. Best practices...3 2.1 Preparing the solution environment...3

More information

Nimsoft Monitor. qos_processor Guide. v1.2 series

Nimsoft Monitor. qos_processor Guide. v1.2 series Nimsoft Monitor qos_processor Guide v1.2 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Release Summary r12.5 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

CA Process Automation

CA Process Automation CA Process Automation Production User Guide Release 04.3.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

SecureAware Technical Whitepaper

SecureAware Technical Whitepaper SecureAware Technical Whitepaper - requirements and specifications Applies to SecureAware version 4.x Document date: January 2015 About this document This whitepaper provides a detailed overview of the

More information

Oracle Service Bus. Interoperability with EJB Transport 10g Release 3 (10.3) October 2008

Oracle Service Bus. Interoperability with EJB Transport 10g Release 3 (10.3) October 2008 Oracle Service Bus Interoperability with EJB Transport 10g Release 3 (10.3) October 2008 Oracle Service Bus Interoperability with EJB Transport, 10g Release 3 (10.3) Copyright 2007, 2008, Oracle and/or

More information

CA Client Automation. Release Notes 12.9

CA Client Automation. Release Notes 12.9 CA Client Automation Release Notes 12.9 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

CA XCOM Data Transport Gateway

CA XCOM Data Transport Gateway CA XCOM Data Transport Gateway Product Guide Release 11.6 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Closing the Biggest Security Hole in Web Application Delivery

Closing the Biggest Security Hole in Web Application Delivery WHITE PAPER JANUARY 2014 Closing the Biggest Security Hole in Web Application Delivery Addressing Session Hijacking with CA SiteMinder Enhanced Session Assurance with DeviceDNA Martin Yam CA Security Management

More information

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com Mile Terms of Use Effective Date: February, 2018 Version 1.1 Feb 2018 [ Mile ] Overview The following are the terms of an agreement between you and MILE. By accessing, or using this Web site, you acknowledge

More information

Veritas Desktop and Laptop Option Mac Getting Started Guide

Veritas Desktop and Laptop Option Mac Getting Started Guide Veritas Desktop and Laptop Option 9.3.1 Mac Getting Started Guide 20-Nov-18 The software described in this document is furnished under a license agreement and may be used only in accordance with the terms

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

An Introduction to CICS JVMServers

An Introduction to CICS JVMServers An Introduction to CICS Servers Ian J Mitchell IBM Distinguished Engineer, CICS Transaction Server 1 st March 2011 Session 8265 1 of 32 Topics Evolution of the in CICS Transaction Server How are Servers

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

Product Roadmap. CA Spectrum Infrastructure Manager Roadmap

Product Roadmap. CA Spectrum Infrastructure Manager Roadmap CA Spectrum Infrastructure Manager Roadmap CA Product Management July 2009 Quick Links to Roadmap Content Product Mission Product Strategy Previous Release Status Current Release Status Next Release Planned

More information

CA Identity Manager. Installation Guide (JBoss) r12.5 SP17

CA Identity Manager. Installation Guide (JBoss) r12.5 SP17 CA Identity Manager Installation Guide (JBoss) r12.5 SP17 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints

Active Endpoints. ActiveVOS Platform Architecture Active Endpoints Active Endpoints ActiveVOS Platform Architecture ActiveVOS Unique process automation platforms to develop, integrate, and deploy business process applications quickly User Experience Easy to learn, use

More information

# All Security All The Time: System z Security Update for CA ACF2, IBM RACF, CA Top Secret

# All Security All The Time: System z Security Update for CA ACF2, IBM RACF, CA Top Secret #12264 All Security All The Time: System z Security Update for CA ACF2, IBM RACF, CA Top Secret February 4, 2013 ~ 3:00pm Mark Hahn Carla A. Flores Session Evaluations QR codes Online for up to 72 hours

More information

Version Overview. Business value

Version Overview. Business value PRODUCT SHEET CA Ideal for CA Datacom CA Ideal for CA Datacom Version 14.0 An integrated mainframe application development environment for z/os which provides an interface for web enablement, CA Ideal

More information

CA Gen Update. Vision and Strategy. Andy Wyatt Senior Consultant - Technical Sales

CA Gen Update. Vision and Strategy. Andy Wyatt Senior Consultant - Technical Sales CA Gen Vision and Strategy 2007 Update Andy Wyatt Senior Consultant - Technical Sales Abstract > As CA Gen celebrates its 20th anniversary of delivering platform independent solutions for the enterprise,

More information

OneClick. Installation Guide. Document 5142

OneClick. Installation Guide. Document 5142 OneClick Installation Guide Document 5142 Notice This documentation (the "Documentation") and related computer software program (the "Software") (hereinafter collectively referred to as the "Product")

More information

BRM Accelerator Release Notes - On Premise. Service Pack

BRM Accelerator Release Notes - On Premise. Service Pack BRM Accelerator Release Notes - On Premise Service Pack 03.0.02 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

CA Gen. Gen Studio Overview Guide. Release 8.5. Third Edition

CA Gen. Gen Studio Overview Guide. Release 8.5. Third Edition CA Gen Gen Studio Overview Guide Release 8.5 Third Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

QuarkXPress Server Manager 8.0 ReadMe

QuarkXPress Server Manager 8.0 ReadMe QuarkXPress Server Manager 8.0 ReadMe CONTENTS Contents QuarkXPress Server Manager 8.0 ReadMe...3 What's New in QuarkXPress Server Manager 8...4 Deprecated features, new stubs, and deploying SDK classes...4

More information

pvs Release Notes All series

pvs Release Notes All series pvs Release Notes All series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal by CA at any time.

More information

Lotus Technical Night School XPages and RDBMS

Lotus Technical Night School XPages and RDBMS Lotus Technical Night School XPages and RDBMS Note: Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing

More information