Hitachi Streaming Data Platform software development kit Release Notes

Size: px
Start display at page:

Download "Hitachi Streaming Data Platform software development kit Release Notes"

Transcription

1 Hitachi Streaming Data Platform software development kit Release Notes Contents Contents... 1 About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features and important enhancements... 2 System requirements... 2 Resolved problems... 4 Known problems... 4 Installation precautions... 4 Usage precautions... 5 Documentation Abbreviations Copyrights and licenses About this document This document (RN-93HSDPSDK001, May 2016) provides late-breaking information about Hitachi Streaming Data Platform software development kit It includes information that was not available at the time the technical documentation for this product was published, as well as a list of known problems and solutions. Intended audience This document is intended for customers and Hitachi Data Systems partners who license and use Hitachi Streaming Data Platform software development kit Hitachi, Ltd. All rights reserved. 1

2 Getting help Hitachi Data Systems Support Connect is the destination for technical support of products and solutions sold by Hitachi Data Systems. To contact technical support, log on to Hitachi Data Systems Support Connect for contact information: Hitachi Data Systems Community is a global online community for HDS customers, partners, independent software vendors, employees, and prospects. It is the destination to get answers, discover insights, and make connections. Join the conversation today! Go to community.hds.com, register, and complete your profile. About this release This release resolves known problems. Product package contents For information about the documentation that is provided with this release, please see the Available documents table in the Documentation section of this file. Medium DVD-ROM Revision Release Type Software Hitachi Streaming Data Platform software development kit Full Package New features and important enhancements None System requirements Operating system requirements Usable OSs (Linux): OS (*) Version Architecture Red Hat Enterprise Linux Red Hat Enterprise Linux Advanced Platform 6.5 EM64T AMD EM64T AMD EM64T AMD64 SUSE Linux Enterprise Server 11 SP2 EM64T 2016 Hitachi, Ltd. All rights reserved. 2

3 AMD64 11 SP3 EM64T AMD64 12 EM64T AMD64 (*) Also runs under Kernel-based Virtual Machine (KVM) on the same OS and version. Virtualization software (Linux): Virtualization Software OS Version Update Architecture VMware vsphere ESXi EM64T AMD EM64T AMD None EM64T AMD64 Prerequisite programs Programs Required in the Same Machine The following software is required: Hitachi Streaming Data Platform Programs Required in the System None Memory and disk space requirements Disk Space Requirements 1,024 KB Memory Requirements Using the CQL debugging tool: Recommended memory: 1,024 MB Required memory: 1,024 MB Using APIs for the external adaptor: Recommended memory: 256 MB Required memory: 128 MB 2016 Hitachi, Ltd. All rights reserved. 3

4 Resolved problems (1) In the following case, the external output adaptor cannot receive analysis results from SDP servers: The analysis result contains a column of VARCHAR type, and the data size of the column is more than 1,000 bytes and exceeds the maximum data size minus 1. Known problems Restriction on this release None Installation precautions Installation (1) Log on to the installation-target machine as a root user. (2) Insert the installation medium. If it is not mounted automatically, mount the directory manually. (3) Change to the directory where the HSDP SDK installer is placed: # cd <CD-ROM-mount-directory>/HSDP-SDK/ (4) Execute the following command: # install.sh When the installation is complete, the HSDP SDK is installed in the following directory: /opt/hitachi/hsdp/ Uninstallation Prerequisites None Procedure (1) Log on to the target machine where you want to uninstall the product as a root user. (2) Execute the following command: # /opt/hitachi/hsdp/sdk/uninstall/uninstall.sh Note: Move to a directory other than /opt/hitachi/hsdp/sdk/ before executing the above command Hitachi, Ltd. All rights reserved. 4

5 Port numbers HSDP Port number Specify 8 ports beginning from the base port number in the -port argument of the hsdpsetup command. Usage precautions Notes on the virtualization platform environment This product design was based on a standard environment (an OS environment on an actual machine). In a virtualization platform environment, this product may behave differently from a standard environment due to the effect of virtualization on hardware resources, deteriorating performance caused by shared I/O, or other causes. Use this product after you have accepted the following conditions for use: Usage conditions This product has been verified to ensure that it operates without error. However, performance deterioration can occur. In addition, functions such as those to obtain CPU times might be adversely affected. For this reason, in order to use this product in a virtualization platform environment, you must conduct a full operation evaluation and performance verification of the system. Perform these checks after the system has been built, and confirm that it uses the appropriate hardware, virtualization software, guest OS, this product, and applications. APIs for the external adaptor Package com.hitachi.soft.hsdp.exadaptor.api Interface Summary HSDPColumn HSDPDestInfo HSDPDispatch HSDPDispatchInfo HSDPEvent HSDPEventListener HSDPStreamInput HSDPStreamOutput HSDPStreamSchema Interface to indicate the column of the stream. Interface of the class to retain the destination information. Interface of the custom dispatcher. Interface of the class to retain the information to determine the destination of the data. Interface of the class to retain the receipt event. Interface that implements the method that is called back when a tuple is generated on the SDP server. Interface for operating the input stream. Interface for operating the output stream. Interface of the class indicating the schema of the stream. Class Summary HSDPAdaptorManager Class to operate the external adaptor Hitachi, Ltd. All rights reserved. 5

6 Enum Summary HSDPColumnType HSDPConnStatus Enumerated constants of column type. Enumerated type of the connection status. Package com.hitachi.soft.hsdp.exadaptor.exception Exception Summary HSDPAdaptorDispatchException HSDPAdaptorException HSDPAdaptorQueueSizeLackException Exception class to indicate that an attempt to assign the destination to the data to be sent failed. Exception class to indicate that an error was detected when the external adaptor API was executed. Exception class to indicate that there are not enough free entries in sending queue. Interface public interface HSDPColumn: Method Detail getname java.lang.string getname() Obtains the column name. The column name. gettype HSDPColumnType gettype() Obtains the column type. The column type Hitachi, Ltd. All rights reserved. 6

7 getsize int getsize() Obtains the maximum column size. Notes: For the external adaptor, the 12-byte format is always used for the TIMESTAMP type. The following columns in a query are always treated as the VARCHAR type whose size is 32,767 bytes. - Character string constant - Scalar functions that return a character string constant. The maximum column size. getdigitnumber int getdigitnumber() Obtains the number of digits of the column. Note: When the column type is TIMESTAMP, this shows the number of digits for the fractions of seconds. The number of digits of the column. public interface HSDPDestInfo: Method Detail getaddress java.lang.string getaddress() Obtains the host name or IP address of the connection destination. The host name or IP address of the connection destination. getport int getport() Obtains the port number of the connection destination. The port number of the connection destination Hitachi, Ltd. All rights reserved. 7

8 getworkingdirectoryname java.lang.string getworkingdirectoryname() Obtains the working directory name. The working directory name. getserverclustername java.lang.string getserverclustername() Obtains the server cluster name. The server cluster name. getquerygroupname java.lang.string getquerygroupname() Obtains the query group name. The query group name. getstreamname java.lang.string getstreamname() Obtains the stream name. The stream name. getid int getid() Obtains the ID number of the connection destination, starting from 1. The ID number of the connection destination, starting from 1. getconnstatus HSDPConnStatus getconnstatus() Obtains the state of the connection. Note: Returns the state of the connection when the method is executed. The state of the connection Hitachi, Ltd. All rights reserved. 8

9 public interface HSDPDispatch: Method Detail dispatch int dispatch(hsdpdispatchinfo dispatchinfo, byte[] data) Determines the destination of the data to be sent. dispatchinfo Information of the dispatch. data Data to be sent. The data specified for put(). ID number used to indicate the dispatch destination. This number is assigned starting from 1, in accordance with the number of the connection destination. public interface HSDPDispatchInfo: Method Detail getschema HSDPStreamSchema getschema() Obtains the schema of the stream. The schema of the stream. getdestnum int getdestnum() Obtains the number of parallel executions of the destination. The number of parallel executions of the destination. getdestinfo java.util.arraylist<hsdpdestinfo> getdestinfo() Obtains the information on the destination. The information on the destination Hitachi, Ltd. All rights reserved. 9

10 public interface HSDPEvent: Method Detail getschema HSDPStreamSchema getschema() Obtains the schema of the stream. The schema of the stream. getdata byte[] getdata() Obtains the received data. The received data. getsystemtime java.sql.timestamp getsystemtime() Obtains the system time of the received data. The system time of the received data. public interface HSDPEventListener: Method Detail onevent void onevent(hsdpevent event) Method that is called back when a tuple is generated on the SDP server. The format of the received data obtained with the getdata() of the HSDPEvent interface is the same as the format specified for the put() method argument of the HSDPStreamInput interface. Receipt event information Hitachi, Ltd. All rights reserved. 10

11 public interface HSDPStreamInput: Method Detail close void close() Closes the stream. Tries to send the data remaining in the sending queue. Transmissions are aborted if the data cannot be sent due to the transmission being busy or a disconnection. put void put(byte[] data) Sends the data. Sends the data in the format of type "0: Normal data", which is the received data type of the TCP input adaptor. For the argument of this method, you must specify the data after the header (2 bytes) plus the reserved area (2 bytes). The offset is assumed to be zero for all data. You must specify the data converted to the byte order in big-endian format. The 12-byte format can be used for the TIMESTAMP type only. You must specify a time larger than 1 millisecond, in milliseconds, for the first 8 bytes. You must specify a time smaller than 1 second, in nanoseconds, for the last 4 bytes. The time smaller than 1 second specified for the first 8 bytes is overwritten with the time specified for the last 4 bytes. For the last 4 bytes, you must specify the fractions of seconds for the value of the TIMESTAMP type, which is defined in the query for the sending destination. For example, if the value is defined as TIMESTAMP(6), specify (nanoseconds), with 0 as the last three digits. Example of setting the TIMESTAMP type: java.sql.timestamp ts = new java.sql.timestamp(system.currenttimemillis()); bytebuffer.putlong(ts.gettime()); bytebuffer.putint(ts.getnanos()); data - The data to be sent. HSDPAdaptorQueueSizeLackException The queue to store the data has reached the maximum. The old data is deleted from the sending queue, and the new data is registered Hitachi, Ltd. All rights reserved. 11

12 Note: If the query group of the sending destination is executing parallel executions, or if you have multiple destinations for openstreaminput() in the HSDPAdaptorManager class, this exception is thrown when some of the queues reach the maximum. HSDPAdaptorDispatchException An attempt to assign the destination to the data to be sent failed. The data to be sent is not registered in the sending queue. The connection was terminated because the trials for connecting with the destination of the data to be sent failed a number of times equal to the number specified for hsdp.connection.retry.count. The data to be sent is not registered in the sending queue. Notes: If the query group of the sending destination is executing parallel executions, or if you have multiple destinations for openstreaminput() in the HSDPAdaptorManager class, this exception is thrown when some of the queues match the condition. In this case, the data to be sent for which the destinations were assigned successfully are registered in the sending queue. If the condition to throw this exception and the condition to throw HSDPAdaptorQueueSizeLackException are satisfied at the same time, HSDPAdaptorQueueSizeLackException is thrown. heartbeat void heartbeat(java.sql.timestamp ts) Sends the heartbeat. ts The timestamp. The query of the destination was executed in the server mode. HSDPAdaptorQueueSizeLackException The queue to store the data has reached the maximum. The old data is deleted from the sending queue, and the new data is registered. HSDPAdaptorDispatchException suspend The connection was terminated because the retrial for connecting with the destination of the data to be sent failed. The data to be sent is not registered in the sending queue. void suspend(boolean autoresume) Request for suspend. autoresume - true: Automatic resume, false: No automatic resume Hitachi, Ltd. All rights reserved. 12

13 The query of the destination was executed in the server mode. HSDPAdaptorQueueSizeLackException The queue to store the data has reached the maximum. The old data is deleted from the sending queue, and the new data is registered. HSDPAdaptorDispatchException resume The connection was terminated because the retrial for connecting with the destination of the data to be sent failed. The data to be sent is not registered in the sending queue. void resume() Requests for resume. The query of the destination was executed in the server mode. HSDPAdaptorQueueSizeLackException The queue to store the data has reached the maximum. The old data is deleted from the sending queue, and the new data is registered. HSDPAdaptorDispatchException The connection was terminated because the retrial for connecting with the destination of the data to be sent failed. The data to be sent is not registered in the sending queue. loaddispatcher void loaddispatcher(java.lang.string classpath, java.lang.string classname) Loads the custom dispatcher. classpath Class path. Specify the path of the class for custom dispatcher with the jar file path or directory path. If you use a relative path, specify the relative path from the directory on which the external adaptor is executed. classname Class name. The distribution method is not CUSTOM. The custom dispatcher has already been registered Hitachi, Ltd. All rights reserved. 13

14 The specified path of a class cannot be found. The specified class cannot be found. An attempt to read the class file failed. The specified class has not been implemented for the interface. An attempt to generate the instance of the custom dispatcher failed. unloaddispatcher void unloaddispatcher() Unloads the custom dispatcher. The custom dispatcher has not been registered. getschema HSDPStreamSchema getschema() Obtains the schema of the stream. The schema of the stream. getdestinfo java.util.arraylist<hsdpdestinfo> getdestinfo() Obtains the information on the destination. The information on the destination Hitachi, Ltd. All rights reserved. 14

15 public interface HSDPStreamOutput: Method Detail close void close() Closes the stream. Discards the data in the receiving queue, and terminates all connections with the register() method. register void register(hsdpeventlistener listener) Registers callback objects. Based on the result of the search using the openstreamoutput() method of the HSDPAdaptorManager class, establishes the connection with the output stream. Waits for the connection with the output stream for the maximum of hsdp.tcp.connect.timeout seconds. When a connection succeeds, the method finishes correctly. Even if the input stream cannot be connected within hsdp.tcp.connect.timeout seconds, the method finishes correctly. If you register multiple callback objects to one stream, the received data is notified to the respective callback objects. The same callback object cannot be registered for multiple times in one stream. If you register the same callback object to multiple streams, the callback object must be thread-safe, because the same callback objects are executed concurrently. listener - Callback objects. The specified callback has already been registered Hitachi, Ltd. All rights reserved. 15

16 unregister void unregister(hsdpeventlistener listener) Unregisters the callback object that you have registered. Discards the data in the receiving queue and terminates the connections established by the register() method. listener - Callback objects specified for register() method. The specified callback has not been registered. getschema HSDPStreamSchema getschema() Obtains the schema of the stream. The schema of the stream. getdestinfo java.util.list<hsdpdestinfo> getdestinfo(hsdpeventlistener listener) Obtains the information on the destination. listener - Callback objects specified for register() method. The information on the destination. The specified callback has not been registered Hitachi, Ltd. All rights reserved. 16

17 public interface HSDPStreamSchema: Method Detail getcolumnlist java.util.list<hsdpcolumn> getcolumnlist() Obtains the column information of the schema. The column information of the schema. getserverclustername java.lang.string getserverclustername() Obtains the server cluster name. The server cluster name. getquerygroupname java.lang.string getquerygroupname() Obtains the query group name. The query group name. getstreamname java.lang.string getstreamname() Obtains the stream name. The stream name Hitachi, Ltd. All rights reserved. 17

18 Class public class HSDPAdaptorManager: Method Detail init public static HSDPAdaptorManager init(java.lang.string filepath) Initializes the external adaptor. Note: When multiple external adaptors are executed concurrently on the same machine, specify different log output destination for each adaptor. This also applies when this method is executed multiple times within the same process. If the same log output destination is specified, the operation cannot be assured. If the term() method is not executed after executing this method, a memory leak occurs. filepath File path. If you use a relative path, specify the relative path from the directory on which the external adaptor is executed. Instance of HSDPAdaptorManager class. HSDPAdaptorException - The external adaptor definition file does not exist. An attempt to read the external adaptor definition file failed. A setting value of the external adaptor definition file is incorrect. An error occurred in the initialization of the log file. term public void term() Stops the external adaptor. Discards the data of the sending and receiving queues, terminates all connections, and then stops the external adaptor. HSDPAdaptorException - Stopped Hitachi, Ltd. All rights reserved. 18

19 getvalue public java.lang.string getvalue(java.lang.string key) Obtains the setting values of the external adaptor definition file. key Definition parameter. If you specify a parameter without the specification of the external adaptor definition file, the default value is returned (if there is no default value, null is returned). Value that corresponds with the parameter. This value is null if there is no default value. HSDPAdaptorException - Stopped. openstreaminput public HSDPStreamInput openstreaminput(java.lang.string targetname) Opens the input stream. Searches for the input stream that corresponds with the specified destination name from the SDP broker, and establish the connection with the input stream based on the search result. Waits for the connection with the input stream for the maximum of hsdp.tcp.connect.timeout seconds. When a connection succeeds, the method finishes correctly. Even if the input stream cannot be connected within hsdp.tcp.connect.timeout seconds, the method finishes correctly. targetname Destination name. Parameter setting value of the hsdp.target.name.n parameter of the external adaptor definition file. Example: openstreaminput(manager.getvalue("hsdp.target.name.1")) Instance of HSDPStreamInput. HSDPAdaptorException - Stopped. The format of the specified argument is incorrect. The specified stream is not an input stream. The number of trials to connect with the SDP broker has reached the maximum Hitachi, Ltd. All rights reserved. 19

20 A method argument is specified with multiple streams, including identical streams. The information does not match between the streams specified for an argument. openstreamoutput public HSDPStreamOutput openstreamoutput(java.lang.string targetname) Opens the output stream. Search for the output stream that corresponds with the specified destination name from the SDP broker. If the output stream is searched successfully, the method finishes correctly. targetname Destination name. Parameter setting value of the hsdp.target.name.n parameter of the external adaptor definition file. Example: openstreamoutput(manager.getvalue("hsdp.target.name.1")) Instance of HSDPStreamOutput. HSDPAdaptorException - Stopped. The format of the specified argument is incorrect. The specified stream is not an output stream. The number of trials to connect with the SDP broker has reached the maximum. Multiple streams are specified for the argument. Enum public enum HSDPColumnType: Enum Constant Detail BYTE public static final HSDPColumnType BYTE BYTE type. SHORT public static final HSDPColumnType SHORT SHORT type. INT public static final HSDPColumnType INT INT type. LONG public static final HSDPColumnType LONG LONG type Hitachi, Ltd. All rights reserved. 20

21 FLOAT public static final HSDPColumnType FLOAT FLOAT type. DOUBLE public static final HSDPColumnType DOUBLE DOUBLE type. CHAR public static final HSDPColumnType CHAR CHAR type. VARCHAR public static final HSDPColumnType VARCHAR VARCHAR type. TIMESTAMP public static final HSDPColumnType TIMESTAMP TIMESTAMP type. DATE public static final HSDPColumnType DATE DATE type. TIME public static final HSDPColumnType TIME TIME type. BIG_DECIMAL public static final HSDPColumnType BIG_DECIMAL BIG_DECIMAL type. Method Detail values public static HSDPColumnType[] values() The sequence including this enumerated constant is returned in the declared order. This method can be used to repeat the constants as follows: for (HSDPColumnType c : HSDPColumnType.values()) System.out.println(c); Sequence including the constants of this enumerated type in the declared order Hitachi, Ltd. All rights reserved. 21

22 valueof public static HSDPColumnType valueof(java.lang.string name) The enumerated constants with the specified name are returned. The string must match exactly the identifier that was used for declaring this type of enumerated constant (no excess space characters can be included). name - Name of the returned enumerated constant. Enumerated constant with a specified name. java.lang.illegalargumentexception If this enumerated type does not have a constant with the specified name. java.lang.nullpointerexception If the argument is null. getnumber public int getnumber() The number allocated to the enumerated type is returned. Numerical value corresponding with the enumerated type public enum HSDPConnStatus: Enum Constant Detail BUSY Send busy. CONNECTED Connect. CONNECTING Connecting. DISCONNECTED Disconnect. INITIALIZING Initial status Hitachi, Ltd. All rights reserved. 22

23 Method Detail values public static HSDPConnStatus[] values() The sequence including this enumerated constant is returned in the declared order. This method can be used to repeat the constants as follows: for (HSDPConnStatus c : HSDPConnStatus.values()) System.out.println(c); Sequence including the constants of this enumerated type in the declared order. valueof public static HSDPConnStatus valueof(java.lang.string name) The enumerated constants with the specified name are returned. The string must match exactly the identifier that was used for declaring this type of enumerated constant (no excess space characters can be included). name - Name of the returned enumerated constant. Enumerated constant with a specified name. java.lang.illegalargumentexception If this enumerated type does not have a constant with the specified name. java.lang.nullpointerexception If the argument is null. Exception public class HSDPAdaptorDispatchException extends HSDPAdaptorException: Constructor Detail HSDPAdaptorDispatchException public HSDPAdaptorDispatchException(java.lang.String message) HSDPAdaptorDispatchException public HSDPAdaptorDispatchException(java.lang.Throwable cause) 2016 Hitachi, Ltd. All rights reserved. 23

24 public class HSDPAdaptorException: Constructor Detail HSDPAdaptorException HSDPAdaptorException(java.lang.String message) HSDPAdaptorException HSDPAdaptorException(java.lang.Throwable cause) public class HSDPAdaptorException extends HSDPAdaptorException: Constructor Detail HSDPAdaptorQueueSizeLackException HSDPAdaptorQueueSizeLackException(java.lang.String message) HSDPAdaptorQueueSizeLackException HSDPAdaptorQueueSizeLackException(java.lang.Throwable cause) Documentation Available documents Document name Document number Issue date Hitachi Streaming Data Platform Application Development Guide MK-93HSDP001 March, 2016 Documentation errata (1) [Section] Working with the CQL debugging tool, CQL debugging tool interface, Input-data files, Format, Schema definition, Hitachi Streaming Data Platform Application Development Guide [Classification] Add [Text before change] (Insert the following into the bottom of the "Description" column of the "Schema definition" row.) [Text after change] The Java data types that can be used are shown below. Data type names are not case-sensitive in the schema definition of the input data: - Integer - Double - String 2016 Hitachi, Ltd. All rights reserved. 24

25 - Date - Time - Timestamp - BigDecimal - Byte - Short - Long - Float Abbreviations Product name for use in Software ECN Abbreviation Hitachi Streaming Data Platform Hitachi Streaming Data Platform software development kit HSDP HSDP SDK Copyrights and licenses 2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, or stored in a database or retrieval system for any purpose without the express written permission of Hitachi, Ltd. Hitachi, Ltd., reserves the right to make changes to this document at any time without notice and assumes no responsibility for its use. This document contains the most current information available at the time of publication. When new or revised information becomes available, this entire document will be updated and distributed to all registered users. Some of the features described in this document might not be currently available. Refer to the most recent product announcement for information about feature and product availability, or contact Hitachi, Ltd., at Notice: Hitachi, Ltd., products and services can be ordered only under the terms and conditions of the applicable Hitachi Data Systems Corporation agreements. The use of Hitachi, Ltd., products is governed by the terms of your agreements with Hitachi Data Systems Corporation. By using this software, you agree that you are responsible for: 1) Acquiring the relevant consents as may be required under local privacy laws or otherwise from employees and other individuals to access relevant data; and 2) Verifying that data continues to be held, retrieved, deleted, or otherwise processed in accordance with relevant laws. Hitachi is a registered trademark of Hitachi, Ltd., in the United States and other countries. Hitachi Data Systems is a registered trademark and service mark of Hitachi, Ltd., in the United States and other countries. Archivas, BlueArc, Essential NAS Platform, HiCommand, Hi-Track, ShadowImage, Tagmaserve, Tagmasoft, Tagmasolve, Tagmastore, TrueCopy, Universal Star Network, and Universal Storage Platform are registered trademarks of Hitachi Data Systems Corporation. AIX, AS/400, DB2, Domino, DS6000, DS8000, Enterprise Storage Server, ESCON, FICON, FlashCopy, IBM, Lotus, MVS, OS/390, RS/6000, S/390, System z9, System z10, Tivoli, VM/ESA, z/os, z9, z10, 2016 Hitachi, Ltd. All rights reserved. 25

26 zseries, z/vm, and z/vse are registered trademarks and DS6000, MVS, and z10 are trademarks of International Business Machines Corporation. Microsoft is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Linux(R) is the registered trademark of Linus Torvalds in the U.S. and other countries. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Red Hat is a trademark or a registered trademark of Red Hat Inc. in the United States and other countries. SUSE is a registered trademark or a trademark of SUSE LLC in the United States and other countries. Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. All other trademarks, service marks, and company names in this document or website are properties of their respective owners. Microsoft product screen shots are reprinted with permission from Microsoft Corporation. Notice on Export Controls. The technical data and technology inherent in this Document may be subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. Reader agrees to comply strictly with all such regulations and acknowledges that Reader has the responsibility to obtain licenses to export, re-export, or import the Document and any Compliant Products. Export of technical data contained in this document may require an export license from the United States government and/or the government of Japan. Contact the Hitachi Data Systems Legal Department for any export compliance questions Hitachi, Ltd. All rights reserved. 26

Mainframe Analytics Recorder v Release Notes

Mainframe Analytics Recorder v Release Notes Mainframe Analytics Recorder v8.2.1-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features and important

More information

Hitachi Device Manager Mainframe Agent Release Notes Contents

Hitachi Device Manager Mainframe Agent Release Notes Contents Hitachi Device Manager Mainframe Agent 8.5.0-00 Release Notes Contents About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Hitachi Dynamic Link Manager (for AIX) v Release Notes

Hitachi Dynamic Link Manager (for AIX) v Release Notes Hitachi Dynamic Link Manager (for AIX) v8.2.1-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Hitachi Dynamic Link Manager (for VMware ) Release Notes

Hitachi Dynamic Link Manager (for VMware ) Release Notes Hitachi Dynamic Link Manager (for VMware ) 8.5.1-04 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 1 About this release... 2 Product package contents... 2 New features

More information

Hitachi Dynamic Link Manager (for AIX) Release Notes

Hitachi Dynamic Link Manager (for AIX) Release Notes Hitachi Dynamic Link Manager (for AIX) 8.4.1-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Hitachi Converged Adapter 2.0 for VMware vcenter Operations HCA for vc OPs Third-Party Copyrights and Licenses

Hitachi Converged Adapter 2.0 for VMware vcenter Operations HCA for vc OPs Third-Party Copyrights and Licenses Hitachi Converged Adapter 2.0 for VMware vcenter Operations 5.8.4 MK-92UCP065-02 2014-2016 Hitachi Data Systems Corporation. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Hitachi Data Center Analytics v7.0 Release Notes

Hitachi Data Center Analytics v7.0 Release Notes Hitachi Data Center Analytics v7.0 Release Notes Contents About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 New features and important enhancements... 3 Distribution

More information

Hitachi Server Adapter for the SAP HANA Cockpit

Hitachi Server Adapter for the SAP HANA Cockpit Hitachi Server Adapter for the SAP HANA Cockpit v01.1.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 About Release v01.1.0... 2 Supported Hardware and Software...

More information

Hitachi Content Platform HCP Data Migrator 6.1 Release Notes HCP-DM Version June 27, 2014

Hitachi Content Platform HCP Data Migrator 6.1 Release Notes HCP-DM Version June 27, 2014 Hitachi Content Platform HCP-DM Version 6.1.0.9 June 27, 2014 RN-90ARC031-10 2014 Hitachi Data Systems Corporation. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

Hitachi Command Suite

Hitachi Command Suite Hitachi Command Suite Virtual Appliance Installation Guide MK-92HC236-01 2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means,

More information

Hitachi Dynamic Link Manager (for AIX) Release Notes

Hitachi Dynamic Link Manager (for AIX) Release Notes Hitachi Dynamic Link Manager (for AIX) 8.1.4-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Hitachi Command Suite

Hitachi Command Suite Hitachi Command Suite 8.6 Virtual Appliance Installation Guide This manual explains how to use the virtual appliance for Hitachi Command. MK-92HC236-02 May 2018 2016, 2018 Hitachi, Ltd. All rights reserved.

More information

Hitachi Dynamic Link Manager (for VMware ) Release Notes

Hitachi Dynamic Link Manager (for VMware ) Release Notes Hitachi Dynamic Link Manager (for VMware ) 8.6.0-00 Release Notes Contents About this document... 1 Intended audience... 2 Accessing product downloads... 2 Getting help... 2 About this release... 2 Product

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor Backup Restore Features Supplement for Hitachi Data Protection Suite Product Version Getting Help Contents MK-90HDICOM009-03 2010-2016 Hitachi, Ltd. All rights reserved. No part of

More information

Hitachi Command Suite. Automation Director. Messages MK-92HC221-02

Hitachi Command Suite. Automation Director. Messages MK-92HC221-02 Hitachi Command Suite Automation Director Messages MK92HC22102 2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic

More information

Hitachi Hyper Scale-Out Platform (HSP) Hortonworks Ambari VM Quick Reference Guide

Hitachi Hyper Scale-Out Platform (HSP) Hortonworks Ambari VM Quick Reference Guide Hitachi Hyper Scale-Out Platform (HSP) MK-95HSP013-03 14 October 2016 2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic

More information

Hitachi Global Link Manager Release Notes

Hitachi Global Link Manager Release Notes Hitachi Global Link Manager 8.1.3-00 Release Notes Contents Contents... 1 About this document... 1 Intended audience... 1 Getting help... 1 About this release... 2 Product package contents... 2 New features

More information

Hitachi Compute Blade 2500 Intel LAN Driver Instruction Manual for SUSE Linux Enterprise Server

Hitachi Compute Blade 2500 Intel LAN Driver Instruction Manual for SUSE Linux Enterprise Server Hitachi Compute Blade 2500 Intel LAN Driver Instruction Manual for SUSE Linux Enterprise Server FASTFIND LINKS Getting Help Contents MK-99CB2500054-02 2016 Hitachi, Ltd. All rights reserved. No part of

More information

Hitachi Converged Adapter 2.0 for Microsoft SCOM 2012 Administration Manual HCA for SCOM Administration Manual

Hitachi Converged Adapter 2.0 for Microsoft SCOM 2012 Administration Manual HCA for SCOM Administration Manual Hitachi Converged Adapter 2.0 for Microsoft SCOM 2012 Administration Manual MK-92UCP082-01 2014-2016 Hitachi Data Systems Corporation. All rights reserved. No part of this publication may be reproduced

More information

Hitachi Storage Connector for VMware vrealize Orchestrator

Hitachi Storage Connector for VMware vrealize Orchestrator Hitachi Storage Connector for VMware vrealize Orchestrator Contents v01.4.0 Release Notes Contents... 1 About this Document... 2 Intended Audience... 2 Getting Help... 2 Hardware and Software Support...

More information

Hitachi Storage Adapter for Microsoft Windows PowerShell

Hitachi Storage Adapter for Microsoft Windows PowerShell Hitachi Storage Adapter for Microsoft Windows PowerShell v06.2.0 Release Notes Contents About This Document... 2 System Requirements... 2 Software and Hardware Support... 3 HCP Requirement*... 5 Changes

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor Cluster Getting Started Guide Product Version Getting Help Contents MK-90HDICOM001-02 2010-2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or

More information

Hitachi Data Ingestor Hyper-V Installation Guide 6.0.0

Hitachi Data Ingestor Hyper-V Installation Guide 6.0.0 Hitachi Data Ingestor Hyper-V Installation Guide 6.0.0 This guide provides instructions for installing Hitachi Data Ingestor (HDI) on Hyper-V. Instances of HDI installed on Hyper-V are referred to as VMA.

More information

Hitachi Command Suite

Hitachi Command Suite Hitachi Command Suite Installation and Configuration Guide MK-90HC173-22 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any

More information

Hitachi WAN Optimizer VMware vsphere Setup Guide

Hitachi WAN Optimizer VMware vsphere Setup Guide Hitachi WAN Optimizer VMware vsphere Setup Guide FASTFIND LINKS Contents Product Version Getting Help MK-95HWO002-00 July 2016 2007, 2016 Hitachi, Ltd. All rights reserved. No part of this publication

More information

Hitachi Compute Rack Series RAID Driver Instruction Manual For Red Hat Enterprise Linux

Hitachi Compute Rack Series RAID Driver Instruction Manual For Red Hat Enterprise Linux Hitachi Compute Rack Series RAID Driver Instruction Manual For Red Hat Enterprise Linux FASTFIND LINKS Document Organization Getting Help Contents MK-90CRC008-00 2011-2013 Hitachi, Ltd. All rights reserved.

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor Backup Restore Features Supplement for IBM Tivoli Storage Manager Product Version Getting Help Contents MK-90HDICOM010-02 2010-2014 Hitachi, Ltd. All rights reserved. No part of this

More information

Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS. Getting Help Contents MK-91CB

Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS. Getting Help Contents MK-91CB Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS Getting Help Contents MK-91CB500072-16 2010-2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or

More information

Hitachi Storage Adapter for Microsoft System Center Virtual Machine Manager

Hitachi Storage Adapter for Microsoft System Center Virtual Machine Manager Hitachi Storage Adapter for Microsoft System Center Virtual Machine Manager v01.3.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 Hardware Requirements... 3 Volume

More information

Hitachi Compute Blade CB Base-T 4-port LAN Adapter User's Guide

Hitachi Compute Blade CB Base-T 4-port LAN Adapter User's Guide Hitachi Compute Blade CB2500 1000Base-T 4-port LAN Adapter User's Guide FASTFIND LINKS Getting Help Contents MK-99CB2500025-00 2014 Hitachi, Ltd. All rights reserved. No part of this publication may be

More information

Hitachi Infrastructure Director v1.0.0 Release Notes

Hitachi Infrastructure Director v1.0.0 Release Notes Hitachi Infrastructure Director v1.0.0 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Features... 2 System requirements... 3 Known issues...

More information

Hitachi Compute Blade 500/2500 LSI MegaRAID SAS 3004 (imr) firmware update User s Guide

Hitachi Compute Blade 500/2500 LSI MegaRAID SAS 3004 (imr) firmware update User s Guide Hitachi Compute Blade 500/2500 LSI MegaRAID SAS 3004 (imr) firmware update User s Guide FASTFIND LINKS Document organization Product version Getting help Contents MK-99COM153-01 2010-2017 Hitachi, Ltd.

More information

HCP Data Migrator Release Notes Release 6.1

HCP Data Migrator Release Notes Release 6.1 HCP Data Migrator Release Notes Release 6.1 Hitachi Content Platform Data Migrator RN-90ARC031-11 4 December 2017 2014, 2017 Hitachi Vantara Corporation. All rights reserved. No part of this publication

More information

Hitachi NAS Platform F1000 Series

Hitachi NAS Platform F1000 Series Hitachi NAS Platform F1000 Series Backup Restore Features Supplement for Hitachi Data Protection Suite Product Version Getting Help Contents MK-92NAS069-07 2012-2015 Hitachi, Ltd. All rights reserved.

More information

Hitachi Adapter for Oracle Enterprise Manager - Database Cloning

Hitachi Adapter for Oracle Enterprise Manager - Database Cloning Hitachi Adapter for Oracle Enterprise Manager - Database Cloning v02.0.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 About This Release... 2 Hardware Requirements...

More information

Hitachi Storage Adapter for the SAP HANA Cockpit

Hitachi Storage Adapter for the SAP HANA Cockpit Hitachi Storage Adapter for the SAP HANA Cockpit v01.1.0 Release Notes Contents About this Document... 2 Intended Audience... 2 Getting Help... 2 About Release v1.1.0... 2 Hardware and Software... 3 Hardware

More information

Hitachi Tiered Storage Manager Release Notes

Hitachi Tiered Storage Manager Release Notes Hitachi Manager 8.5.0-02 Release Notes Contents About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 Product package contents... 2 New features and important enhancements...

More information

Hitachi Compute Blade 2000 LSI MegaRAID SAS 2208 RAID controller firmware update User s Guide

Hitachi Compute Blade 2000 LSI MegaRAID SAS 2208 RAID controller firmware update User s Guide Hitachi Compute Blade 2000 LSI MegaRAID SAS 2208 RAID controller firmware update User s Guide FASTFIND LINKS Document organization Product version Getting help Contents MK-99BDS2K105-02 2010-2014 Hitachi,

More information

Hitachi Configuration Manager Release Notes

Hitachi Configuration Manager Release Notes Hitachi Configuration Manager 8.5.1-01 Release Notes Contents Contents... 1 About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Use Restrictions for Hitachi Compute Blade 2500 Series FASTFIND LINKS. Getting Help Contents MK-99CB

Use Restrictions for Hitachi Compute Blade 2500 Series FASTFIND LINKS. Getting Help Contents MK-99CB Use Restrictions for Hitachi Compute Blade 2500 Series FASTFIND LINKS Getting Help Contents MK-99CB2500053-02 2014-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor Cluster Getting Started Guide Product Version Getting Help Contents MK-90HDI001-13 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Hitachi Command Suite. Automation Director. Installation and Configuration Guide MK-92HC204-02

Hitachi Command Suite. Automation Director. Installation and Configuration Guide MK-92HC204-02 Hitachi Command Suite Automation Director Installation and Configuration Guide MK-92HC204-02 2015 Hitachi, Ltd. All rights reserved No part of this publication may be reproduced or transmitted in any form

More information

Hitachi Command Suite

Hitachi Command Suite Hitachi Command Suite Installation and Configuration Guide MK-90HC173-20 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any

More information

BBI Quick Guide Networking OS for 1/10Gb LAN Switch Module

BBI Quick Guide Networking OS for 1/10Gb LAN Switch Module BBI Quick Guide Networking OS for 1/10Gb LAN Switch Module FASTFIND LINKS Product Version Getting Help Contents MK-99CB2500038-00 2014 Hitachi, Ltd. All rights reserved. No part of this publication may

More information

Replication Manager. Hitachi Command Suite. Application Agent CLI Reference Guide MK-90HC Document Organization. Product Version.

Replication Manager. Hitachi Command Suite. Application Agent CLI Reference Guide MK-90HC Document Organization. Product Version. Hitachi Command Suite Replication Manager Application Agent CLI Reference Guide Document Organization Product Version Getting Help Contents MK-90HC181-15 2014, 2015 Hitachi, Ltd. All rights reserved. No

More information

Hitachi Compute Blade HVM Navigator Installation Manual

Hitachi Compute Blade HVM Navigator Installation Manual Hitachi Compute Blade HVM Navigator Installation Manual FASTFIND LINKS Document organization Product version Getting help Contents MK-99COM023-17 2012-2016 Hitachi, Ltd. All rights reserved. No part of

More information

Hitachi Compute Blade Installation Guide for Oracle Linux OS Installation Guide

Hitachi Compute Blade Installation Guide for Oracle Linux OS Installation Guide Hitachi Compute Blade OS Installation Guide FASTFIND LINKS Getting Help Contents MK-99COM083-05 2010-2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor 6.4.0 Backup Restore Features Supplement for Hitachi Data Protection Suite This document describes the instructions for setting up an HDI environment to work with Hitachi Data Protection

More information

Global Link Manager. Hitachi Command Suite. Installation and Configuration Guide MK-95HC Document Organization. Product Version.

Global Link Manager. Hitachi Command Suite. Installation and Configuration Guide MK-95HC Document Organization. Product Version. Hitachi Command Suite Global Link Manager Installation and Configuration Guide Document Organization Product Version Getting Help Contents MK-95HC107-18 2015 Hitachi, Ltd. All rights reserved. No part

More information

Hitachi Compute Blade Installation Guide for Oracle Solaris OS Installation Guide

Hitachi Compute Blade Installation Guide for Oracle Solaris OS Installation Guide Hitachi Compute Blade OS Installation Guide FASTFIND LINKS Getting Help Contents -99COM072-0 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

Hitachi NAS Platform F

Hitachi NAS Platform F Hitachi NAS Platform F Plug-in for VMware vsphere Administrator's Guide Product Version Getting Help Contents MK-92NAS072-04 2013-2015 Hitachi, Ltd. All rights reserved. No part of this publication may

More information

Hitachi Compute Blade Logical VGA SnapShot

Hitachi Compute Blade Logical VGA SnapShot Hitachi Compute Blade Logical VGA SnapShot FASTFIND LINKS Getting Help Contents MK-99COM074-07 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Hitachi Compute Blade 500 Series

Hitachi Compute Blade 500 Series Hitachi Compute Blade 500 Series Server Blade Setup Guide Document Organization Product Version Getting Help Contents MK-91CB500012-09 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication

More information

Hitachi File Services Manager Release Notes

Hitachi File Services Manager Release Notes Hitachi File Services Manager 5.3.3-00 Release Notes Copyright 2011, 2016, Hitachi, Ltd., Hitachi Data Systems Corporation, ALL RIGHTS RESERVED Notice: No part of this publication may be reproduced or

More information

Contents. About This Document Intended Audience Getting Help Hardware and Software Support Storage Models (All adapters)...

Contents. About This Document Intended Audience Getting Help Hardware and Software Support Storage Models (All adapters)... Hitachi Adapters for Oracle Database v01.2.0 Release Notes Contents About This Document... 3 Intended Audience... 3 Getting Help... 3 Hardware and Software Support... 4 Storage Models (All adapters)...

More information

Hitachi Storage Adapter for Oracle Recovery Manager

Hitachi Storage Adapter for Oracle Recovery Manager Hitachi Storage Adapter for Oracle Recovery Manager v07.1.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 About This Release... 3 Hardware and Software... 3 Hardware

More information

Hitachi Storage Adapter for SAP NetWeaver Landscape Virtualization Management v Release Notes

Hitachi Storage Adapter for SAP NetWeaver Landscape Virtualization Management v Release Notes Hitachi Storage Adapter for SAP NetWeaver Landscape Virtualization Management v02.2.0 Release Notes About this document... 1 Intended audience... 1 Getting help... 1 Software and Hardware Support... 2

More information

Hitachi Command Suite. Dynamic Link Manager. (for VMware ) User Guide. Document Organization. Product Version. Getting Help. Contents MK-92DLM130-12

Hitachi Command Suite. Dynamic Link Manager. (for VMware ) User Guide. Document Organization. Product Version. Getting Help. Contents MK-92DLM130-12 Hitachi Command Suite Dynamic Link Manager (for VMware ) User Guide Document Organization Product Version Getting Help Contents MK-92DLM130-12 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this

More information

Hitachi Adapters for Oracle Database

Hitachi Adapters for Oracle Database Hitachi Adapters for Oracle Database v01.1.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 Hardware and Software Support... 3 Hitachi Storage Adapter for Oracle

More information

Hitachi Block Storage Driver for OpenStack v Release Notes

Hitachi Block Storage Driver for OpenStack v Release Notes Hitachi Block Storage Driver for OpenStack v01.5.3 Release Notes Hitachi Block Storage Driver for OpenStack v01.5.3 Release Notes... 1 About this document... 1 Intended audience... 1 Getting help... 1

More information

Hitachi Storage Adapter for SAP Landscape Virtualization Management v Release Notes

Hitachi Storage Adapter for SAP Landscape Virtualization Management v Release Notes Hitachi Storage Adapter for SAP Landscape Virtualization Management v02.3.0 Release Notes About this document... 1 Intended audience... 1 Getting help... 1 Software and Hardware Support... 2 Changes in

More information

Tuning Manager. Hitachi Command Suite. Getting Started Guide MK-96HC FASTFIND LINKS Document Organization. Product Version.

Tuning Manager. Hitachi Command Suite. Getting Started Guide MK-96HC FASTFIND LINKS Document Organization. Product Version. Hitachi Command Suite Tuning Manager Getting Started Guide FASTFIND LINKS Document Organization Product Version Getting Help Contents MK-96HC120-23 2014, 2015 Hitachi, Ltd. All rights reserved No part

More information

Compute Systems Manager

Compute Systems Manager Hitachi Command Suite Compute Systems Manager User Guide MK-91HC194-14 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means,

More information

Hitachi Virtual Infrastructure Integrator Administration Guide

Hitachi Virtual Infrastructure Integrator Administration Guide Hitachi Virtual Infrastructure Integrator Administration Guide Release 3.0 MK-92HNAS003-07 2011-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS. Getting Help Contents MK-91CB

Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS. Getting Help Contents MK-91CB Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS Getting Help Contents MK-91CB500072-07 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or

More information

Hitachi Compute Blade HVM Navigator User s Guide - LPAR Configuration

Hitachi Compute Blade HVM Navigator User s Guide - LPAR Configuration Hitachi Compute Blade HVM Navigator User s Guide - LPAR Configuration FASTFIND LINKS Document organization Product version Getting help Contents MK-99COM042-09 2012-2015 Hitachi, Ltd. All rights reserved.

More information

Hitachi Virtual Storage Platform G1000

Hitachi Virtual Storage Platform G1000 Hitachi Virtual Storage Platform G1000 Hitachi Volume Shredder User Guide FASTFIND LINKS Contents Product Version Getting Help MK-92RD8025-01 2014 Hitachi, Ltd. All rights reserved. No part of this publication

More information

Hitachi Compute Blade Emulex Adapter User's Guide for Driver

Hitachi Compute Blade Emulex Adapter User's Guide for Driver Hitachi Compute Blade Emulex Adapter User's Guide for Driver FASTFIND LINKS Getting Help Contents MK-99COM103-13 2013-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced

More information

Hitachi Block Storage Driver for OpenStack v Release Notes

Hitachi Block Storage Driver for OpenStack v Release Notes Hitachi Block Storage Driver for OpenStack v02.1.0 Release Notes Hitachi Block Storage Driver for OpenStack v02.1.0 Release Notes... 1 About this document... 1 Intended audience... 1 Getting help... 1

More information

Hitachi Block Storage Driver for OpenStack v Release Notes

Hitachi Block Storage Driver for OpenStack v Release Notes Hitachi Block Storage Driver for OpenStack v01.5.2 Release Notes Hitachi Block Storage Driver for OpenStack v01.5.2 Release Notes... 1 About this document... 1 Intended audience... 1 Getting help... 1

More information

Hitachi Dynamic Link Manager (for Windows ) Release Notes

Hitachi Dynamic Link Manager (for Windows ) Release Notes Hitachi Dynamic Link Manager (for Windows ) 8.4.1-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 1 About this release... 2 Product package contents... 2 New features

More information

Hitachi File Services Manager Release Notes

Hitachi File Services Manager Release Notes Hitachi File Services Manager 6.1.1-00 Release Notes Copyright 2011, 2016, Hitachi, Ltd., Hitachi Data Systems Corporation, ALL RIGHTS RESERVED Notice: No part of this publication may be reproduced or

More information

Hitachi Command Suite. Command Director. CLI Reference Guide MK-90HCMD004-04

Hitachi Command Suite. Command Director. CLI Reference Guide MK-90HCMD004-04 Hitachi Command Suite Command Director CLI Reference Guide MK-90HCMD004-04 2014 Hitachi. Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means,

More information

Hitachi Virtual Storage Platform

Hitachi Virtual Storage Platform Hitachi Virtual Storage Platform Encryption License Key User Guide Document Organization Product Version Getting Help Contents MK-90RD7015-11 2010-2016 Hitachi, Ltd. All rights reserved. No part of this

More information

Hitachi Compute Blade HVM Navigator User s Guide - LPAR Configuration

Hitachi Compute Blade HVM Navigator User s Guide - LPAR Configuration Hitachi Compute Blade HVM Navigator User s Guide - LPAR Configuration FASTFIND LINKS Document organization Product version Getting help Contents MK-99COM042-11 2012-2015 Hitachi, Ltd. All rights reserved.

More information

Hitachi File Services Manager Release Notes

Hitachi File Services Manager Release Notes Hitachi File Services Manager 6.1.2-00 Release Notes Copyright 2011, 2016, Hitachi, Ltd., Hitachi Data Systems Corporation, ALL RIGHTS RESERVED Notice: No part of this publication may be reproduced or

More information

Hitachi Dynamic Link Manager (for Windows ) v Release Notes

Hitachi Dynamic Link Manager (for Windows ) v Release Notes Hitachi Dynamic Link Manager (for Windows ) v8.2.1-00 Release Notes Contents Contents... 1 About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents...

More information

Hitachi Device Manager Release Notes

Hitachi Device Manager Release Notes Hitachi 8.1.4-03 Release Notes Contents About this document... 2 Intended audience... 2 Getting help... 2 About this release... 2 Product package contents... 2 New features and important enhancements...

More information

Use Restrictions for Hitachi Compute Blade 500 Series. Getting Help Contents MK-91CB

Use Restrictions for Hitachi Compute Blade 500 Series. Getting Help Contents MK-91CB Use Restrictions for Hitachi Compute Blade 500 Series FASTFIND LINKS Getting Help Contents MK-91CB500072-09 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or

More information

Hitachi Compute Blade Series Hitachi Compute Rack Series

Hitachi Compute Blade Series Hitachi Compute Rack Series Hitachi Compute Blade Series Hitachi Compute Rack Series OS Installation Guide for Windows Server Document Organization Product Version Getting Help Contents MK-99COM076-10 2013-2016 Hitachi, Ltd. All

More information

System Management Unit (SMU)

System Management Unit (SMU) System Management Unit (SMU) Hardware Reference Guide The SMU400 is a 1U rack mounted device, used to manage the servers and clusters of the Hitachi NAS Platform, Hitachi HUS File Module, and Hitachi Virtual

More information

Hitachi Storage Plug-in for VMware vcenter v Release Notes

Hitachi Storage Plug-in for VMware vcenter v Release Notes Hitachi Storage Plug-in for VMware vcenter v03.4.1 Release Notes About this document... 1 Intended audience... 1 Getting help... 2 Software and Hardware Support... 2 Changes in this Release... 5 New features

More information

Hitachi Compute Blade 2500 Series

Hitachi Compute Blade 2500 Series Hitachi Compute Blade 2500 Series Logical partitioning manager User Guide Document Organization Product Version Getting Help Contents MK-99CB2500006-01 2014-2015 Hitachi, Ltd. All rights reserved. No part

More information

Compute Systems Manager

Compute Systems Manager Hitachi Command Suite Compute Systems Manager Messages FASTFIND LINKS Document Organization Product Version Getting Help Contents MK91HC19713 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this

More information

Hitachi Virtual Storage Platform G1000

Hitachi Virtual Storage Platform G1000 Hitachi Virtual Storage Platform G1000 Nondisruptive Migration User Guide MK-92RD8086-01 2015 Hitachi, Ltd All rights reserved No part of this publication may be reproduced or transmitted in any form or

More information

Hitachi TrueCopy. User Guide. Hitachi Virtual Storage Platform G1000 and G1500. Hitachi Virtual Storage Platform F1500

Hitachi TrueCopy. User Guide. Hitachi Virtual Storage Platform G1000 and G1500. Hitachi Virtual Storage Platform F1500 Hitachi TrueCopy User Guide Hitachi Virtual Storage Platform G1000 and G1500 Hitachi Virtual Storage Platform F1500 Hitachi Virtual Storage Platform G200, G400, G600, G800 Hitachi Virtual Storage Platform

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor Single Node Getting Started Guide Product Version Getting Help Contents MK-90HDI028-09 2010-2015 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or

More information

Hitachi Command Suite. Tuning Manager. User Guide. Document Organization. Product Version. Getting Help. Contents MK-92HC022-39

Hitachi Command Suite. Tuning Manager. User Guide. Document Organization. Product Version. Getting Help. Contents MK-92HC022-39 Hitachi Command Suite Tuning Manager User Guide Document Organization Product Version Getting Help Contents MK-92HC022-39 c 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this publication may

More information

Hitachi Virtual Storage Platform

Hitachi Virtual Storage Platform Hitachi Virtual Storage Platform Documentation Roadmap FASTFIND LINKS Contents MK-90RD7039-06 2011 Hitachi Ltd, All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

Hitachi Content Platform Replicating Tenants and Namespaces

Hitachi Content Platform Replicating Tenants and Namespaces Hitachi Content Platform MK-98ARC015-13 2008 2015 Hitachi Data Systems Corporation. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic

More information

Hitachi Command Suite

Hitachi Command Suite Hitachi Command Suite Installation and Configuration Guide MK-90HC173-23 2014, 2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any

More information

Hitachi Data Ingestor

Hitachi Data Ingestor Hitachi Data Ingestor Single Node Getting Started Guide Product Version Getting Help Contents MK-90HDI028-10 2010-2016 Hitachi, Ltd. All rights reserved. No part of this publication may be reproduced or

More information

Hitachi Compute Connector for VMware vrealize Orchestrator. Contents. v Release Notes

Hitachi Compute Connector for VMware vrealize Orchestrator. Contents. v Release Notes Hitachi Compute Connector for VMware vrealize Orchestrator v01.3.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 Hardware and Software Support... 2 Memory and

More information

Hitachi Block Storage Driver for OpenStack v Release Notes

Hitachi Block Storage Driver for OpenStack v Release Notes Hitachi Block Storage Driver for OpenStack v02.1.0 Release Notes Hitachi Block Storage Driver for OpenStack v02.1.0 Release Notes... 1 About this document... 1 Intended audience... 1 Getting help... 1

More information

Hitachi Command Suite. Tuning Manager. Server Administration Guide. FASTFIND LINKS Contents. Product Version. Getting Help MK-92HC021-39

Hitachi Command Suite. Tuning Manager. Server Administration Guide. FASTFIND LINKS Contents. Product Version. Getting Help MK-92HC021-39 Hitachi Command Suite Tuning Manager Server Administration Guide FASTFIND LINKS Contents Product Version Getting Help MK-92HC021-39 2014, 2015 Hitachi, Ltd. All rights reserved. No part of this publication

More information

Hitachi Provisioning Manager Software Release Notes

Hitachi Provisioning Manager Software Release Notes Hitachi Manager Software 6.4.0-03 Release Notes Table of Contents About This Document... 1 Intended Audience... 1 Getting Help... 1 About This Release... 2 Product Package Contents... 2 New Features and

More information

Hitachi Tiered Storage Manager Release Notes

Hitachi Tiered Storage Manager Release Notes Hitachi Manager 8.0.1-02 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 1 About this release... 2 Product package contents... 2 New features and important enhancements...

More information

Using HCP Data Migrator

Using HCP Data Migrator Release 6.1 Hitachi Content Platform Data Migrator This book contains the information you need to use Hitachi Content Platform Data Migrator (HCP-DM). This utility lets you copy data between local file

More information

Hitachi Device Manager Release Notes

Hitachi Device Manager Release Notes Hitachi 8.2.1-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 1 About this release... 2 Product package contents... 2 New features and important enhancements...

More information

Hitachi Compute Blade 500 Series

Hitachi Compute Blade 500 Series Hitachi Compute Blade 500 Series Logical partitioning manager User's Guide Document Organization Product Version Getting Help Contents MK-91CB500068-16 2012-2015 Hitachi, Ltd. All rights reserved. No part

More information