• No se han encontrado resultados

A new approach for analyzing I/O in parallel scienti

N/A
N/A
Protected

Academic year: 2017

Share "A new approach for analyzing I/O in parallel scienti"

Copied!
10
0
0

Texto completo

(1)

A new approach for Analyzing I/O in parallel

scientific applications

Sandra M´endez, Javier Panadero, Alvaro Wong, Dolores Rexachs and Emilio Luque

Computer Architecture and Operating System Department (CAOS) Universitat Aut`onoma de Barcelona, Barcelona, Spain

sandra.mendez@uab.es,{javier.panadero,alvaro.wong}@caos.uab.es,{dolores. rexachs,emilio.luque}@uab.es

Abstract. The efficient use of high performance computing is usually focused on the use of computational resources. However, scientific appli-cations currently produce a large volume of information. Therefore, the Input/Output (I/O) subsystem also should be used efficiently. In order to do so, it is necessary to know the application I/O patterns and establish a relationship between these patterns and the I/O susbsystem config-uration. To analyze the I/O behavior of applications, we propose use a library of the PAS2P (Application Signature for Performance Prediction) tool. Parallel applications typically have repetitive behavior, and the I/O patterns of parallel applications also have that behavior. We propose to identify the portions (I/O phases) where the application does I/O. From these I/O phases, we extract an application model that can be used to evaluate it in different I/O subsystems considering the I/O phases and compute-communication phases. In this paper, we present the concepts used in the PAS2P methodology, which have been adapted for MPI-IO applications. We have extracted the I/O model of applications. This ap-proach was used to estimate the I/O time of an application in different subsystems. The results show a relative error of estimation lower than 10%.

1

Introduction

Due to the historical “gap” between the computing and Input/Output (I/O) performance, in many cases, the I/O system becomes the bottleneck of parallel systems. In order to hide this “gap”, the I/O factors with the biggest influence on performance must be identified. Furthermore, the increased computational power of processing units and the complexity of scientific applications, which use high performance computing, require more efficient Input/Output Systems.

(2)

The configuration of the I/O subsystem affects the application performance. It is important to understand the I/O subsystem structure: filesystem type, I/O devices, interconnection networks and I/O libraries. The I/O subsystem in computer clusters can have several I/O configurations and the user should select the configuration depending on the I/O requirements of his application. However, usually the user does not know the I/O subsystem and the I/O requirement of application.

We propose a methodology to extract the I/O requirements of the application expressed by a I/O abstract model that can be used in different I/O subsystem. Also, we propose a method to select the I/O configuration from a set existing configurations, depending on the I/O abstract model of application.

Since the I/O operations are affected by time between operations, we need to analyze the parallel application, taking into account the computing and commu-nication. For this reason, we selected the PAS2P library to trace the I/O opera-tions of standard MPI-2. In previous work [1] we have presented a methodology for performance evaluation of the I/O system which is focused on I/O path. In this paper, we explain the I/O analysis for the application’s access pattern extraction, the I/O phases identification and the I/O abstract model of applica-tion.

This article is organized as follows: in Section II we review the related work, Section III introduces our proposed methodology. In Section IV we review the experimental validation. Finally, we present conclusions and future work.

2

Related Work

There are other tools which are closely related to the I/O analysis of message-passing applications. Darshan [2] is a parallel I/O characterization tool designed to characterize the MPI-IO file access of HPC applications in a non- intrusive way. It characterizes the application by using statistics and cumulative timing information. The information obtained can be used to analyze the I/O behavior of a MPI-program. It is implemented as a set of user space libraries. These libraries require no source code modification and can be added in a transparent way. This approach differs from PAS2P-I/O because Darshan provides statistical averages of I/O instead of information by I/O operation.

LANL-Trace [3] is a tracing framework that wraps the standard Unix library and system call tracing utility ltrace. LANL-Trace generates three types of out-puts which are useful for the I/O analysis. One advantage of LANL-Trace is that it is simple to understand and use. Because of its simple nature, it is also easy to modify. However, LANL-Trace’s simplicity is a trade-off becauses causes higher overhead. This work differs of our proposal because PAS2P-I/O intercepts the MPI functions imposing minimal overhead.

(3)

lies in the fact that these tools are focused primarily on the general analysis of the application, without providing specific details and information about the MPI-I/O operations.

3

Proposed Methodology

We propose a methodology to analyze the I/O requirements of parallel scien-tific applications, which is composed by three steps: Modeling Input/Ouput of Application, using the Application Input/Output Model, and Validation of Ap-plication I/O Model Applicability.

3.1 Modeling Input/Ouput of Application

The I/O model of applications is defined by three characteristics: metadata, spatial global pattern and temporal global pattern. To obtain the application I/O model, we have implemented a library extension named libpas2p-io.so. This dynamic library will be used to instrument the application.

PAS2P tool implements the PAS2P methodology [7], which is based on the high repetitive behavior of the applications. The PAS2P methodology is com-posed by two-step. The first step is to analyze the application to build an appli-cation model and extract its phases and weights. Finally, it uses that information to build an executable signature. The second step is to execute the application signature in a target system in order to predict the total execution time of the application.

To extract the three characteristics for the I/O model of parallel application, we have focused on the first step of PAS2P methodology: data collection, pattern identification, parallel application model, and extraction of phases and weights.

Data collection The aim of this step is to generate a trace log with the behavior of computation and communication of a parallel application. In order to intercept and collect communication events (action of sending or receiving a message) interposition functions are used. To collect the computational time, PAS2P has extended the concept of Basic Block (BB)[8] for parallel applications. We have defined a new concept named Extended Basic Block (EBB) as a segment of a process, whose beginning and end are defined by occurrences of MPI events, either sent or received. Also it may say that it is a ”computational time” segment bounded by communication events, as shown in Figure 1(a) that also illustrates the event information recollected, which will be used to generate the trace log.

An event contains information of each application process, the MPI event, the source-destination the process is involved with, the count events, the com-munication volume, the wall clock time, the computational time of the event occurred as well as its type (send: 1, recv: 0, collective events: -1). This log contains the whole application trace. It can be used in order to analyze the application behavior and the trade-off between compute-communication.

(4)
[image:4.595.147.471.115.240.2]

(a) Extended Basic Block (b) Extended Basic Block + I/O events

Fig. 1.Data Collection

I/O event is composed by ID process, ID file, offset, displacement, request size, type of I/O operation, event number, and logical time. We have incorparated the I/O events to PAS2P library. This allows to identify the relationship between the events of communication, computation and I/O. Figure 1(b) shows an example of physical traces with EBB and the I/O events.

Parallel application model Synchronization between processes is necessary in parallel applications. PAS2P has developed a Logical ordering algorithm [7] inspired by Lamport’s [9]. Through this algorithm, PAS2P defines a new logical ordering, in which, if one process sends a message in a Logical Time (LT), it’s receive will be modeled to arrive at LT + 1.

Once all events have been assigned a LT, the logical trace is created from a physical trace, where Logical Times will be given by LT for the Send events (LTSend) and LT for the reception events (LTRecv). Finally, once each event has been located in the respective Logical Time, the logical trace is divided into more logical times, that is, there can only be one event for each process in a Logical Time. Once we know this, we are able to introduce two new concepts. The first new concept is a tick, tick is defined as a logical unit time, and it is incremented by each communication event. Another new concept is Parallel Basic Block (PBB), which is defined as a set of Extended Basic Blocks delimited by two ticks. The first tick defined as entry point has at least one event, and the second tick defined as exit point also has at least one event.

(5)

Pattern identification In order to find a representative behavior of a message-passing application, once we have obtained the logical trace, as shown in figure 2(a), we search the application phases.

With the objective of finding these phases, PAS2P has an algorithm [7], which is based on three criteria (type of communication, volume of communication and computational time by process). Finally, phases are created as sub-chains of grouped PBB’s that repeat along the execution, as shown in figure 2(b).

[image:5.595.140.479.223.347.2]

(a) Logical trace (b) Discovered phases

Fig. 2.Extracting phases from the Logical trace

The I/O phases depend on the local and global pattern, as well as the spatial and temporal occurrence of these patterns. To identify the I/O phases, we an-alyze the similarity of I/O events. I/O events are named Access Pattern (AP). An I/O phase is composed by AP with similar order and without events com-munication between the I/O events. From the logical trace (Figure 3(a)) the I/O phases of the application are obtained (Figure 3(b)). We show the access patterns denoted by AP and I/O phases identified in the logical trace.

Extract relevant phases and weights Once we have identified the phases of a parallel application, we define the weights and the relevant phases. The weight will be given by the frequency in which each phase repeats. A relevant phase is when the weight multiplied by the phase runtime is representative of the total application runtime. We have considered that this ”representativeness” will be given if the phase is 1% or more of the total execution time of the whole application. Each phase contains also information about its patterns, such as the communication pattern, the volume of communication and the computational time by process.

(6)

(a) Logical trace with I/O

[image:6.595.195.420.112.359.2]

(b) Identifying of I/O phases

Fig. 3.Identifying the I/O phases from the Logical trace

phases and weight, allowing us to know “when“ and “how“ the I/O subsystem will be used. The I/O abstract model of application can be used to mimic the application I/O and determine the I/O subsystem where the application will be less penalized by its I/O behavior.

3.2 Using the Application Input/Output Model

In previous work [1], we have presented the I/O system performance evaluation through exhaustive characterization with the benchmark IOR [10] for I/O library (MPI-IO) and benchmark IOzone [11] for I/O devices. In the present paper, we use the I/O abstract model to estimate the application time in different subsys-tems in order to select the configuration with less time. In this way, we achieve a characterization of I/O subsystem for the different types of access patterns of the application. Furthermore, we can obtain a performance characterization of a specific application in less time. The characterization time represents the 10% to 20% of running time of full application.

We use the I/O abstract model to set up the input parameters of the bench-mark IOR. We only execute the benchbench-mark for the phases of the I/O model. The following setting of input parameters are applied on IOR for each I/O phase:s

depends on access mode; b=weight(ph); t=rs(ph);N P =np(ph); −F if there

(7)

The selected metric for IOR is the transfer rate (M B/sec), namedBW(CH).

The estimated I/O time for each I/O phase is calculated by expression (1).

T imeio= n X

i=1

T imeio(phase[i]) (1)

Where theT imeio(phase[i]) is calculated by expression (2).

T imeio(phase[i]) =

weight(phase[i])

BW(CH)(phase[i])

(2)

Where BW(CH)(phase[i]) is the characterized transfer rate at I/O library

level for a similar access pattern.

The I/O model is used to determine what system can provide the best per-formance for the application at I/O library level.

3.3 Validation of Application I/O Model Applicability

It is necessary to evaluate the estimation’s accuracy for the selected configura-tion. In order to do that, we evaluate the relative error produced by the I/O time estimation. Relative error is calculated by expression (3);

errorrel= 100∗(

errorabs

BWM D(phase[i])

) (3)

Where absolute error is calculated by the expression (4).

errorabs=|BW(CH)(phase[i])−BWM D(phase[i])| (4)

Where BWCH(phase[i]) is transf erRate characterized at I/O library level. When a phase has two or more I/O operations, the BW(CH) is defined by the

average of theBW(CH) of each I/O operation that composes the I/O phase.

4

Experimental validation

We have applied the proposed methodology to select I/O configuration of two I/O subsystem. Table 1 shows both the configuration A and the configuration of cluster Finisterrae [12].

(8)
[image:8.595.160.457.117.259.2]

Table 1.Description of configuration A and Finisterrae

I/O Element Configuration A Finisterrae

I/O library OpenMPI mpich2, HDF5

Communication Network 1 Gbps Ethernet 1 Infinibad 20 Gbps Storage Network 1 Gbps Ethernet 1 Infinibad 20 Gbps Filesystem Global NFS Ver 3 Lustre (HP SFS) I/O nodes 8 DAS and 1 NAS 18 OSS Metadata Server 1 2 with 72 cabins SFS20 Filesystem Local Linux ext4 Linux ext3

Level Redundancy RAID 5 RAID 5

Number of I/O Devices 5 disks 866 disks Capacity of I/O Devices 1.8 TB hot-swap SAS 866*250GB

Mounting Point /home $HOMESFS

Since NAS BTIO has an access mode strided and the IOR is not working in this mode, we have selected the sequential access mode to replicate the I/O phases. We have obtained the following meta-data of NAS BT-IO in the FULL subtype with our tool:

– Explicit offset, Blocking I/O operations, Collective operations.

– Strided access mode, Shared access type.

– MPI-IO routine MPI Set view with etype of 40.

[image:8.595.187.426.426.577.2]

We have obtained the I/O model of NAS BT-IO for 36, 64 and 121 processes for the Class D and this model has been applied in the configuration A and Finisterrae. Figure 4 shows the I/O abstract model for 36 processes.

Fig. 4.I/O model to NAS BT-IO, class D, 36 processes, and subtype FULL on Con-figuration A and Finisterrae

(9)
[image:9.595.157.454.190.252.2]

the request size depends on number of processes of the application. NAS BT-IO have the following values for the class D:rs=72MB for 36p,rs=40MB for 64p andrs=24MB for 121p.

Table 2.I/O phases description of NAS BT-IO subtype FULL, class D fornpprocesses

Phase#Operation Initial Offset rep weight

1-50 npW in rs∗idP+ (rs∗(ph−1)+ 1 x phasenp∗rep∗rs

each phase +(rs∗(np−1))∗(ph−1))

51 npR rs∗idP+ (rs∗(iter−1)+ 50 np∗rep∗rs

+(rs∗(np−1))∗(iter−1))

Table 3.I/O time estimation (T imeio(CH)) on configuration A and Finisterrae for 64 processes

Phase T imeio(CH)on conf. AT imeio(CH)on Finisterrae

Phase 1-50 1167.40 932.36

Phase 51 2868.51 844.42

We have calculated the I/O time using our proposed methodology. Table 3 shows the T imeio(CH), where we can observe that the configuration with less

I/O time for NAS BT-IO with 64 processes is Finisterrae. Table 4 shows the

errorrel in the estimation for 64 processes on configuration A and Finisterrae. We evaluated these errors by executing several times NAS BT-IO and the error was similar in all the different tests. Furthermore, the I/O model has been obtained at a different time to discard the influence of the tracing tool. The same I/O model can be applied to estimate the I/O time in other systems, where

[image:9.595.175.436.566.648.2]

T imeio(CH)will be obtained by the expression (2), theBWCH will be obtained by executing IOR with the input parameters explained in the section 3.2. As we can see, the estimation improves when increasing the number of processes. The error rate on both configurations is less than 10% and is reduced when workload and number of processes is increased.

Table 4. Error of I/O time estimation on configuration A and Finisterrae for 64 processes

Phase T imeio(CH) T imeio(M D) errorrel Configuration A

Phase 1-50 1167.40 1153.05 1% Phase 51 2868.51 2984.75 4% Configuration Finisterrae

(10)

5

Conclusions

A methodology to obtain an I/O abstract model of a parallel application has been proposed and tested. The application I/O model is defined by three char-acteristics: metadata, spatial and temporal global pattern. We instrument the application to obtain the access pattern and we analyze it to identify the I/O phases. This instrumentation is done at MPI-IO level which does not require the source code. We have obtained the I/O model of NAS BT-IO and we have eval-uated two configurations taking into account the I/O phase behavior. We have used the I/O model to estimate the I/O time. Relative errors are acceptable and we have observed that the error rate decreases when the number of processes is increased. The error was about the 10%.

As future work, we are designing a benchmark to replicate the I/O when there are two or more operations in a phase to improve the characterization and reduce estimation error. We are extending the I/O phases identification to different applications that show different I/O behaviors. We are analyzing upwellingof ROMs framework, which is an application that opens different files in execution time. Our model is applicable for each file, but still, it is necessary to refine the methodology for the I/O phases with complex access patterns.

References

1. Mendez, S., Rexachs, D., Luque, E.: Methodology for performance evaluation of the input/output system on computer clusters. In: Workshop IASDS on Cluster Computing, 2011 IEEE International Conference on. (sept. 2011) 474 –483 2. Carns, P.H., Latham, R., Ross, R.B., Iskra, K., Lang, S., Riley, K.: 24/7

charac-terization of petascale i/o workloads. In: CLUSTER, IEEE (2009) 1–10

3. Konwinski, A., Bent, J., Nunez, J., Quist, M.: Towards an i/o tracing framework taxonomy. In: Proceedings of the 2nd Int. Workshop on Petascale data storage: in SC’07. PDSW ’07, New York, USA, ACM (2007) 56–62

4. Zaki, O., Lusk, E., Swider, D.: Toward scalable performance visualization with jumpshot. High Performance Computing Applications13(1999) 277–288 5. Shende, S.S., Malony, A.D.: The tau parallel performance system. Int. J. High

Perform. Comput. Appl.20(2) (May 2006) 287–311

6. Arnold, D., Ahn, D., de Supinski, B., Lee, G., Miller, B., Schulz, M.: Stack trace analysis for large scale debugging. In: IPDPS 2007. IEEE International. (2007) 7. Wong, A., Rexachs, D., Luque, E.: Extraction of parallel application signatures

for performance prediction. HPCC, 10th IEEE Int. Conference (2010) 223–230 8. Lau, J., Schoemackers, S., Calder, B.: Structures for phase classification is - sn -.

Performance Analysis of Systems and Software, ISPASS (2004) 57– 67

9. Lamport, L., Time, C.: The Ordering of Events in a Distributed System. Commu-nications of the ACM21(7) (1978) 558–565

10. William Loewe, T.M., Morrone, C.: Ior benchmark (2012) 11. Norcott, W.D.: Iozone filesystem benchmark (2006)

12. Finisterrae, C.: Centre of supercomputing of galicia (cesga). Technical report, Science and Technology Infrastructures (in spanish ICTS) (2012)

Figure

Fig. 1. Data Collection
Fig. 2. Extracting phases from the Logical trace
Fig. 3. Identifying the I/O phases from the Logical trace
Fig. 4. I/O model to NAS BT-IO, class D, 36 processes, and subtype FULL on Con-figuration A and Finisterrae
+2

Referencias

Documento similar

In the first step, the total images were obtained based on the two-step process by measuring the scattered fields first and then obtaining the focused field by application of

The stages for compiling the parallel corpora were: (i) selection of websites with content translated in English and Spanish, (ii) downloading of the HTML files of the

The translating solitons are planes parallel to the velocity vector ⃗v if the rulings are parallel to ⃗v or grim reapers otherwise.. See a detailed discussion

No obstante, como esta enfermedad afecta a cada persona de manera diferente, no todas las opciones de cuidado y tratamiento pueden ser apropiadas para cada individuo.. La forma

In randomized parallel ensembles the class label predictions for a particular instance by different ensemble classifiers are independent random variables.. Taking advantage of

In that work, the main sources of errors are reported in order of decreasing importance as follows: (a) the differences in the number of words and signs for parallel sentences, due

In the first case, HgTe quantum wells, we find that the Zener tunneling depends asymmetrically on the parallel momentum of the carriers to the barrier, and this asymmetry is the

Inserting into the flow hash table: The segment data in the GPU segment hash table is inserted in the GPU flow hash table to obtain the number of segments and retransmissions for