3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Hadoop官方文档翻译——MapReduce Tutorial

發(fā)布時(shí)間:2023/12/18 编程问答 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Hadoop官方文档翻译——MapReduce Tutorial 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
  • MapReduce Tutorial(個(gè)人指導(dǎo))
    • Purpose(目的)
    • Prerequisites(必備條件)
    • Overview(綜述)
    • Inputs and Outputs(輸入輸出)
    • MapReduce - User Interfaces(用戶接口)
      • Payload(有效負(fù)載)
        • Mapper
        • Reducer
        • Partitioner
        • Counter
      • Job Configuration(作業(yè)配置)
      • Task Execution & Environment(任務(wù)執(zhí)行和環(huán)境)
        • Memory Management(內(nèi)存管理)
        • Map Parameters(Map參數(shù))
        • Shuffle/Reduce Parameters(Shuffle/Reduce參數(shù))
        • Configured Parameters(配置參數(shù))
        • Task Logs(任務(wù)日志)
        • Distributing Libraries(分布式緩存 庫)
      • Job Submission and Monitoring(作業(yè)提交和監(jiān)控)
        • Job Control(作業(yè)控制)
      • Job Input(作業(yè)輸入)
        • InputSplit(輸入塊)
        • RecordReader(記錄讀取器)
      • Job Output(作業(yè)輸出)
        • OutputCommitter(輸出提交器)
        • Task Side-Effect Files(任務(wù)副文件)
        • RecordWriter(記錄輸出器)
      • Other Useful Features(其他有用的特性)
        • Submitting Jobs to Queues(提交作業(yè)到隊(duì)列中)
        • Counters(計(jì)數(shù)器)
        • DistributedCache(分布式緩存)
        • Profiling(分析器)
        • Debugging(調(diào)試器)
        • Data Compression(數(shù)據(jù)壓縮)
        • Skipping Bad Records(跳過不良數(shù)據(jù)數(shù)據(jù))

?

?

Purpose

This document comprehensively describes all user-facing facets of the Hadoop MapReduce framework and serves as a tutorial.

該文檔作為一份個(gè)人指導(dǎo)全面性得描述了所有用戶使用Hadoop Mapreduce框架時(shí)遇到的方方面面。

Prerequisites

Ensure that Hadoop is installed, configured and is running. More details:

    • Single Node Setup?for first-time users.
    • Cluster Setup?for large, distributed clusters.

確保Hadoop安裝、配置和運(yùn)行。更多細(xì)節(jié):

    • 初次使用用戶配置單節(jié)點(diǎn)。
    • ?配置大型、分布式集群

Overview

Hadoop MapReduce is a software framework for easily writing applications which process vast amounts of data (multi-terabyte data-sets) in-parallel on large clusters (thousands of nodes) of commodity hardware in a reliable, fault-tolerant manner.

A MapReduce?job?usually splits the input data-set into independent chunks which are processed by the?map tasks?in a completely parallel manner. The framework sorts the outputs of the maps, which are then input to the?reduce tasks. Typically both the input and the output of the job are stored in a file-system. The framework takes care of scheduling tasks, monitoring them and re-executes the failed tasks.

Typically the compute nodes and the storage nodes are the same, that is, the MapReduce framework and the Hadoop Distributed File System (see?HDFS Architecture Guide) are running on the same set of nodes. This configuration allows the framework to effectively schedule tasks on the nodes where data is already present, resulting in very high aggregate bandwidth across the cluster.

The MapReduce framework consists of a single master?ResourceManager, one slave?NodeManager?per cluster-node, and?MRAppMaster?per application (see?YARN Architecture Guide).

Minimally, applications specify the input/output locations and supply?map?and?reduce?functions via implementations of appropriate interfaces and/or abstract-classes. These, and other job parameters, comprise the?job configuration.

The Hadoop?job client?then submits the job (jar/executable etc.) and configuration to the?ResourceManager?which then assumes the responsibility of distributing the software/configuration to the slaves, scheduling tasks and monitoring them, providing status and diagnostic information to the job-client.

Although the Hadoop framework is implemented in Java?, MapReduce applications need not be written in Java.

    • Hadoop Streaming?is a utility which allows users to create and run jobs with any executables (e.g. shell utilities) as the mapper and/or the reducer.
    • Hadoop Pipes?is a?SWIG-compatible C++ API to implement MapReduce applications (non JNI? based).

Hadoop Mapreduce是一個(gè)易于編程并且能在大型集群(上千節(jié)點(diǎn))快速地并行得處理大量數(shù)據(jù)的軟件框架,以可靠,容錯(cuò)的方式部署在商用機(jī)器上。

MapReduce Job通常將獨(dú)立大塊數(shù)據(jù)切片以完全并行的方式在map任務(wù)中處理。該框架對maps輸出的做為reduce輸入的數(shù)據(jù)進(jìn)行排序,Job的輸入輸出都是存儲在文件系統(tǒng)中。該框架調(diào)度任務(wù)、監(jiān)控任務(wù)和重啟失效的任務(wù)。

一般來說計(jì)算節(jié)點(diǎn)和存儲節(jié)點(diǎn)都是同樣的設(shè)置,MapReduce框架和HDFS運(yùn)行在同組節(jié)點(diǎn)。這樣的設(shè)定使得MapReduce框架能夠以更高的帶寬來執(zhí)行任務(wù),當(dāng)數(shù)據(jù)已經(jīng)在節(jié)點(diǎn)上時(shí)。

MapReduce 框架包含一個(gè)主ResourceManager,每個(gè)集群節(jié)點(diǎn)都有一個(gè)從NodeManager和每個(gè)應(yīng)用都有一個(gè)MRAppMaster。

應(yīng)用最少必須指定輸入和輸出的路徑并且通過實(shí)現(xiàn)合適的接口或者抽象類來提供map和reduce功能。前面這部分內(nèi)容和其他Job參數(shù)構(gòu)成了Job的配置。

Hadoop 客戶端提交Job和配置信息給ResourceManger,它將負(fù)責(zé)把配置信息分配給從屬節(jié)點(diǎn),調(diào)度任務(wù)并且監(jiān)控它們,把狀態(tài)信息和診斷信息傳輸給客戶端。

  盡管 MapReduce 框架是用Java實(shí)現(xiàn)的,但是 MapReduce 應(yīng)用卻不一定要用Java編寫。

    • Hadoop Streaming 是一個(gè)工具允許用戶創(chuàng)建和運(yùn)行任何可執(zhí)行文件。
    • Hadoop Pipes 是兼容SWIG用來實(shí)現(xiàn) MapReduce 應(yīng)用的C++ API(不是基于JNI).

Inputs and Outputs

The MapReduce framework operates exclusively on?<key, value>?pairs, that is, the framework views the input to the job as a set of?<key, value>?pairs and produces a set of?<key, value>pairs as the output of the job, conceivably of different types.

The?key?and?value?classes have to be serializable by the framework and hence need to implement the?Writable?interface. Additionally, the key classes have to implement theWritableComparable?interface to facilitate sorting by the framework.

Input and Output types of a MapReduce job:

(input)?<k1, v1> ->?map?-> <k2, v2> ->?combine?-> <k2, v2> ->?reduce?-> <k3, v3>?(output)

MapReduce 框架只操作鍵值對,MapReduce 將job的不同類型輸入當(dāng)做鍵值對來處理并且生成一組鍵值對作為輸出。

Key和Value類必須通過實(shí)現(xiàn)Writable接口來實(shí)現(xiàn)序列化。此外,Key類必須實(shí)現(xiàn)WritableComparable 來使得排序更簡單。

MapRedeuce job 的輸入輸出類型:

(input) ->map-> ?->combine-> ?->reduce-> (output)

MapReduce - User Interfaces

This section provides a reasonable amount of detail on every user-facing aspect of the MapReduce framework. This should help users implement, configure and tune their jobs in a fine-grained manner. However, please note that the javadoc for each class/interface remains the most comprehensive documentation available; this is only meant to be a tutorial.

Let us first take the?Mapper?and?Reducer?interfaces. Applications typically implement them to provide the?map?and?reduce?methods.

We will then discuss other core interfaces including?Job,?Partitioner,?InputFormat,?OutputFormat, and others.

Finally, we will wrap up by discussing some useful features of the framework such as the?DistributedCache,?IsolationRunner?etc.

這部分將展示 MapReduce 中面向用戶方面的盡可能多的細(xì)節(jié)。這將會幫助用戶更小粒度地實(shí)現(xiàn)、配置和調(diào)試它們的Job。然而,請?jiān)?Javadoc 中查看每個(gè)類和接口的綜合用法,這里僅僅是作為一份指導(dǎo)。

讓我們首先來看看Mapper和Reducer接口。應(yīng)用通常只實(shí)現(xiàn)它們提供的map和reduce方法。

我們將會討論其他接口包括Job、Partitioner、InputFormat和其他的。

最后,我們會討論一些有用的特性像分布式緩存、隔離運(yùn)行等。

?

Payload

Applications typically implement the?Mapper?and?Reducer?interfaces to provide the?map?and?reduce?methods. These form the core of the job.

應(yīng)用通常實(shí)現(xiàn)Mapper和Reducer接口提供map和reduce方法。這是Job的核心代碼。

Mapper

Mapper?maps input key/value pairs to a set of intermediate key/value pairs.

Maps are the individual tasks that transform input records into intermediate records. The transformed intermediate records do not need to be of the same type as the input records. A given input pair may map to zero or many output pairs.

The Hadoop MapReduce framework spawns(產(chǎn)卵) one map task for each?InputSplit?generated by the?InputFormat?for the job.

Overall,?Mapper?implementations are passed the?Job?for the job via the?Job.setMapperClass(Class)?method. The framework then calls?map(WritableComparable, Writable, Context)?for each key/value pair in the?InputSplit?for that task. Applications can then override the?cleanup(Context)?method to perform any required cleanup.

Output pairs do not need to be of the same types as input pairs. A given input pair may map to zero or many output pairs. Output pairs are collected with calls to context.write(WritableComparable, Writable).

Applications can use the?Counter?to report its statistics.

All intermediate(中間的) values associated(聯(lián)系) with a given output key are subsequently(隨后) grouped by the framework, and passed to the?Reducer(s) to determine the final output. Users can control the grouping by specifying a?Comparator?via?Job.setGroupingComparatorClass(Class).

The?Mapper?outputs are sorted and then partitioned per?Reducer. The total number of partitions is the same as the number of reduce tasks for the job. Users can control which keys (and hence records) go to which?Reducer?by implementing a custom?Partitioner.

Users can optionally(隨意) specify a?combiner, via?Job.setCombinerClass(Class), to perform local aggregation of the intermediate outputs, which helps to cut down the amount of data transferred from the?Mapper?to the?Reducer.

The intermediate, sorted outputs are always stored in a simple (key-len, key, value-len, value) format. Applications can control if, and how, the intermediate outputs are to be compressed and the?CompressionCodec?to be used via the?Configuration.

Mappers將輸入的鍵值對轉(zhuǎn)換成中間鍵值對。

Maps是多個(gè)單獨(dú)執(zhí)行的任務(wù)將輸入轉(zhuǎn)換成中間記錄。那些被轉(zhuǎn)換的中間記錄不一定要和輸入的記錄為相同類型。輸入鍵值對可以在map后輸出0或者更多的鍵值對。

MapReduce 會根據(jù) InputFormat 切分成的各個(gè) InputSplit 都創(chuàng)建一個(gè)map任務(wù)

總的來說,通過 job.setMapperClass(Class)來給Job設(shè)置Mapper實(shí)現(xiàn)類,并且將InputSplit輸入到map方法進(jìn)行處理。應(yīng)用可復(fù)寫cleanup方法來執(zhí)行任何需要回收清除的操作。

輸出鍵值對不一定要和輸入鍵值對為相同的類型。一個(gè)鍵值對輸入可以輸出0至多個(gè)不等的鍵值對。輸出鍵值對將通過context.write(WritableComparable,Writable)方法進(jìn)行緩存。

應(yīng)用可以通過Counter進(jìn)行統(tǒng)計(jì)。

所有的中間值都會按照Key進(jìn)行排序,然后傳輸給一個(gè)特定的Reducer做最后確定的輸出。用戶可以通過Job.setGroupingComparatorClass(Class)來控制分組規(guī)則。

Mapper輸出會被排序并且分區(qū)到每一個(gè)Reducer。分區(qū)數(shù)和Reduce的數(shù)目是一致的。用戶可以通過實(shí)現(xiàn)一個(gè)自定義的Partitioner來控制哪個(gè)key對應(yīng)哪個(gè)Reducer。

用戶可以隨意指定一個(gè)combiner,Job.setCombinerClass(Class),來執(zhí)行局部輸出數(shù)據(jù)的整合,將有效地降低Mapper和Reducer之間的數(shù)據(jù)傳輸量。

那些經(jīng)過排序的中間記錄通常會以(key-len, key, value-len, value)的簡單格式儲存。應(yīng)用可以通過配置來決定是否需要和怎樣壓縮數(shù)據(jù)和選擇壓縮方式。

?

  How Many Maps?

The number of maps is usually driven by the total size of the inputs, that is, the total number of blocks of the input files.

The right level of parallelism(平行) for maps seems to be around 10-100 maps per-node, although it has been set up to 300 maps for very cpu-light map tasks. Task setup takes a while, so it is best if the maps take at least a minute to execute.

Thus, if you expect 10TB of input data and have a blocksize of?128MB, you'll end up with 82,000 maps, unless Configuration.set(MRJobConfig.NUM_MAPS, int) (which only provides a hint to the framework) is used to set it even higher.

?  maps的數(shù)據(jù)通常依賴于輸入數(shù)據(jù)的總長度,也就是,輸入文檔的總block數(shù)。

每個(gè)節(jié)點(diǎn)map的正常并行度應(yīng)該在10-100之間,盡管每個(gè)cpu已經(jīng)設(shè)置的上限值為300。任務(wù)的配置會花費(fèi)一些時(shí)間,最少需要花費(fèi)一分鐘來啟動運(yùn)行。

因此,如果你有10TB的數(shù)據(jù)輸入和定義blocksize為128M,那么你將需要82000 maps,除非通過Configuration.set(MRJobConfig.NUM_MAPS, int)(設(shè)置一個(gè)默認(rèn)值通知框架)來設(shè)置更高的值。

?

Reducer

Reducer?reduces a set of intermediate values which share a key to a smaller set of values.

The number of reduces for the job is set by the user via?Job.setNumReduceTasks(int).

Overall(總的來說),?Reducer?implementations are passed the?Job?for the job via the?Job.setReducerClass(Class)?method and can override it to initialize themselves. The framework then callsreduce(WritableComparable, Iterable<Writable>, Context)?method for each?<key, (list of values)>?pair in the grouped inputs. Applications can then override the?cleanup(Context)method to perform any required cleanup.

Reducer?has 3 primary(主要) phases(階段): shuffle, sort and reduce.

?  Reduce處理一系列相同key的中間記錄。

用戶可以通過?Job.setNumReduceTasks(int)?來設(shè)置reduce的數(shù)量。

總的來說,通過?Job.setReducerClass(Class)?可以給?job?設(shè)置?recuder?的實(shí)現(xiàn)類并且進(jìn)行初始化。框架將會調(diào)用?reduce?方法來處理每一組按照一定規(guī)則分好的輸入數(shù)據(jù),應(yīng)用可以通過復(fù)寫cleanup?方法執(zhí)行任何清理工作。

Reducer有3個(gè)主要階段:混洗、排序和reduce。

?

Shuffle

Input to the?Reducer?is the sorted output of the mappers. In this phase the framework fetches(取得) the relevant(有關(guān)的,恰當(dāng)?shù)?#xff09; partition of the output of all the mappers, via HTTP.

輸出到Reducer的數(shù)據(jù)都在Mapper階段經(jīng)過排序的。在這個(gè)階段框架將通過HTTP從恰當(dāng)?shù)腗apper的分區(qū)中取得數(shù)據(jù)。

?

Sort

The framework groups?Reducer?inputs by keys (since different mappers may have output the same key) in this stage(階段).

The shuffle and sort phases occur simultaneously(同時(shí)); while map-outputs are being fetched they are merged.

這個(gè)階段框架將對輸入到的?Reducer?的數(shù)據(jù)通過key(不同的?Mapper?可能輸出相同的key)進(jìn)行分組。

混洗和排序階段是同時(shí)進(jìn)行;map的輸出數(shù)據(jù)被獲取時(shí)會進(jìn)行合并。

?

Secondary Sort

If equivalence(平等的) rules for grouping the intermediate keys are required to be different from those for grouping keys before reduction, then one may specify a?Comparator?via Job.setSortComparatorClass(Class). Since?Job.setGroupingComparatorClass(Class)?can be used to control how intermediate keys are grouped, these can be used in conjunction(協(xié)調(diào)) to simulate(模擬)?secondary sort on values.

如果想要對中間記錄實(shí)現(xiàn)與?map?階段不同的排序方式,可以通過Job.setSortComparatorClass(Class)?來設(shè)置一個(gè)比較器 。Job.setGroupingComparatorClass(Class)?被用于控制中間記錄的排序方式,這些能用來進(jìn)行值的二次排序。

?

Reduce

In this phase the reduce(WritableComparable, Iterable<Writable>, Context) method is called for each?<key, (list of values)>?pair in the grouped inputs.

The output of the reduce task is typically written to the?FileSystem?via Context.write(WritableComparable, Writable).

Applications can use the?Counter?to report its statistics.

The output of the?Reducer?is?not sorted.

在這個(gè)階段reduce方法將會被調(diào)用來處理每個(gè)已經(jīng)分好的組鍵值對。

reduce?任務(wù)一般通過?Context.write(WritableComparable, Writable)?將數(shù)據(jù)寫入到FileSystem。

應(yīng)用可以使用?Counter?進(jìn)行統(tǒng)計(jì)。

Recuder?輸出的數(shù)據(jù)是不經(jīng)過排序的。

?

How Many Reduces?

The right number of reduces seems to be?0.95?or?1.75?multiplied(乘上) by (<no. of nodes> * <no. of maximum containers per node>).

With?0.95?all of the reduces can launch immediately(立刻) and start transferring map outputs as the maps finish. With?1.75?the faster nodes will finish their first round of reduces and launch a second wave(波浪) of reduces doing a much better job of load balancing(均衡).

Increasing the number of reduces increases the framework overhead(負(fù)擔(dān),天花板), but increases load balancing and lowers the cost of failures.

The scaling(規(guī)模) factors above are slightly(輕微的) less than whole numbers to reserve a few reduce slots in the framework for speculative(推測的)-tasks and failed tasks.

?  合適的?reduce?總數(shù)應(yīng)該在?節(jié)點(diǎn)數(shù)*每個(gè)節(jié)點(diǎn)的容器數(shù)*0.95 至 節(jié)點(diǎn)數(shù)*每個(gè)節(jié)點(diǎn)的容器數(shù)*1.75?之間。

當(dāng)設(shè)定值為0.95時(shí),map任務(wù)結(jié)束后所有的?reduce?將會立刻啟動并且開始轉(zhuǎn)移數(shù)據(jù),當(dāng)設(shè)定值為1.75時(shí),處理更多任務(wù)的時(shí)候?qū)焖俚匾惠営忠惠喌剡\(yùn)行?reduce?達(dá)到負(fù)載均衡。

reduce?的數(shù)目的增加將會增加框架的負(fù)擔(dān)(天花板),但是會提高負(fù)載均衡和降低失敗率。

整體的規(guī)模將會略小于總數(shù),因?yàn)橛幸恍?reduce slot?用來存儲推測任務(wù)和失敗任務(wù)。

?

Reducer NONE

It is legal to set the number of reduce-tasks to?zero?if no reduction is desired.

In this case the outputs of the map-tasks go directly to the?FileSystem, into the output path set by?FileOutputFormat.setOutputPath(Job, Path). The framework does not sort the map-outputs before writing them out to the?FileSystem.

當(dāng)沒有?reduction?需求的時(shí)候可以將?reduce-task?的數(shù)目設(shè)置為0,是允許的。

在這種情況當(dāng)中,map任務(wù)將直接輸出到?FileSystem,可通過 ?FileOutputFormat.setOutputPath(Job, Path)?來設(shè)置。該框架不會對輸出的FileSystem?的數(shù)據(jù)進(jìn)行排序。

?

Partitioner

Partitioner?partitions the key space.

Partitioner controls the partitioning of the keys of the intermediate map-outputs. The key (or a subset (子集)of the key) is used to derive(取得;源自) the partition, typically by a?hash function. The total number of partitions is the same as the number of reduce tasks for the job. Hence this controls which of the?m?reduce tasks the intermediate key (and hence the record) is sent to for reduction.

HashPartitioner?is the default?Partitioner.

?  Partitioner對key進(jìn)行分區(qū)。

Partitioner?對?map?輸出的中間值的?key(Recuder之前)進(jìn)行分區(qū)。分區(qū)采用的默認(rèn)方法是對?key?取?hashcode。分區(qū)數(shù)等于?job?的?reduce?任務(wù)數(shù)。因此這會根據(jù)中間值的key?將數(shù)據(jù)傳輸?shù)綄?yīng)的?reduce。

HashPartitioner?是默認(rèn)的的分區(qū)器。

?

Counter

Counter?is a facility for MapReduce applications to report its statistics.

Mapper?and?Reducer?implementations can use the?Counter?to report statistics.

Hadoop MapReduce comes bundled(捆綁) with a?library?of generally(普遍的) useful mappers, reducers, and partitioners.

?  ?計(jì)數(shù)器是一個(gè)工具用于報(bào)告?Mapreduce?應(yīng)用的統(tǒng)計(jì)。

Mapper?和?Reducer?實(shí)現(xiàn)類可使用計(jì)數(shù)器來報(bào)告統(tǒng)計(jì)值。

Hadoop Mapreduce?是普遍的可用的?Mappers、Reducers?和?Partitioners?組成的一個(gè)庫。

?

Job Configuration

Job?represents(代表,表示) a MapReduce job configuration.

Job?is the primary interface for a user to describe a MapReduce job to the Hadoop framework for execution. The framework tries to faithfully(如實(shí)的) execute the job as described by?Job, however:

    • Some configuration parameters may have been marked as final by administrators (see?Final Parameters) and hence cannot be altered(改變).
    • While some job parameters are straight-forward to set (e.g.?Job.setNumReduceTasks(int)), other parameters interact(互相影響) subtly(微妙的) with the rest of the framework and/or job configuration and are more complex to set (e.g.?Configuration.set(JobContext.NUM_MAPS, int)).

Job?is typically used to specify the?Mapper, combiner (if any),?Partitioner,?Reducer,?InputFormat,?OutputFormat?implementations.?FileInputFormat?indicates(指定,表明) the set of input files (FileInputFormat.setInputPaths(Job, Path...)/?FileInputFormat.addInputPath(Job, Path)) and (?FileInputFormat.setInputPaths(Job, String...)/?FileInputFormat.addInputPaths(Job, String))and where the output files should be written (?FileOutputFormat.setOutputPath(Path)).

Optionally,?Job?is used to specify other advanced facets of the job such as the?Comparator?to be used, files to be put in the?DistributedCache, whether intermediate and/or job outputs are to be compressed (and how), whether job tasks can be executed in a?speculative?manner (?setMapSpeculativeExecution(boolean))/?setReduceSpeculativeExecution(boolean)), maximum number of attempts per task (setMaxMapAttempts(int)/?setMaxReduceAttempts(int)) etc.

Of course, users can use?Configuration.set(String, String)/?Configuration.get(String)?to set/get arbitrary parameters needed by applications. However, use the?DistributedCache?for large amounts of (read-only) data.

?  Job類用來表示MapReduce作業(yè)的配置。Job是用戶用來描述MapReduce?job在Hadoop框架運(yùn)行的主要接口。Hadoop將盡量如實(shí)地按照job所描述的來執(zhí)行。然而:

    • 一些配置參數(shù)已經(jīng)被管理員標(biāo)注為不可更改的因此不能被改變。
    • 一些參數(shù)是直接設(shè)置的(如Job.setNumReduceTasks(int)),有一些參數(shù)是跟框架或者任務(wù)配置之間有微妙的互相影響并且復(fù)雜的設(shè)置。

Job?典型地用于指定Mapper、Combiner、Partitioner、Reducer、InputFormat、OutputFormat實(shí)現(xiàn)類。?FileInputFormat指定輸入文檔的設(shè)定(FileInputFormat.setInputPaths(Job, Path...)/FileInputFormat.addInputPath(Job, Path))和(FileInputFormat.setInputPaths(Job, String...)/FileInputFormat.addInputPaths(Job, String))和輸出文件應(yīng)該寫入通過(FileOutputFormat.setOutputPath(Path)).

隨意地,Job也常用來指定job的其他高級配置,例如比較器、文檔置于分布式緩存、中間記錄是否壓縮和怎樣壓縮, job任務(wù)是否已預(yù)測的方式去執(zhí)行,每個(gè)任務(wù)的最大處理量等等。

當(dāng)然,用戶可以使用來設(shè)置或者獲得應(yīng)用所需要的任何參數(shù)。然而,使用分布式緩存來存儲大量的可讀數(shù)據(jù)。

?

Task Execution & Environment

The?MRAppMaster?executes the?Mapper/Reducer?task?as a child process in a separate jvm.

The child-task inherits the environment of the parent?MRAppMaster. The user can specify additional options to the child-jvm via the?mapreduce.{map|reduce}.java.opts?and configuration parameter in the?Job?such as non-standard paths for the run-time linker to search shared libraries via?-Djava.library.path=<>?etc. If the?mapreduce.{map|reduce}.java.opts?parameters contains the symbol?@taskid@?it is interpolated with value of?taskid?of the MapReduce task.

Here is an example with multiple arguments and substitutions, showing jvm GC logging, and start of a passwordless(無密碼) JVM JMX agent so that it can connect with jconsole and the likes to watch child memory, threads and get thread dumps. It also sets the maximum heap-size of the map and reduce child jvm to 512MB & 1024MB respectively. It also adds an additional path to the?java.library.path?of the child-jvm.

1 <property> 2 3 <name>mapreduce.map.java.opts</name> 4 5 <value> 6 7 -Xmx512M -Djava.library.path=/home/mycompany/lib -verbose:gc -Xloggc:/tmp/@taskid@.gc 8 9 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false 10 11 </value> 12 13 </property> 14 15 16 17 <property> 18 19 <name>mapreduce.reduce.java.opts</name> 20 21 <value> 22 23 -Xmx1024M -Djava.library.path=/home/mycompany/lib -verbose:gc -Xloggc:/tmp/@taskid@.gc 24 25 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false 26 27 </value> 28 29 </property>

?

MRAppMaster?在一個(gè)單獨(dú)的jvm中運(yùn)行Mapper/Reducer任務(wù)做為一個(gè)子進(jìn)程。

子任務(wù)繼承父MRAppMaster的運(yùn)行環(huán)境。用戶可以通過(mapreduce.{map|reduce}.java.opts和配置參數(shù)例如通過?Djava.library.path=<>可以設(shè)置非標(biāo)準(zhǔn)的路徑用于運(yùn)行時(shí)搜索庫)指定額外的設(shè)置。如果mapreduce.{map|reduce}.java.opts參數(shù)包含@taskid@?符號那么Mapreduce任務(wù)將會被修改為taskid的值。

下面有個(gè)例子;配置多個(gè)參數(shù)和代替,展示jvm gc?日志,和?JVM JMX?代理用于無密碼登錄以致可以連接JConsole來監(jiān)控子程序的內(nèi)存、線程和線程垃圾回收。也分別設(shè)置了map和reduce的最大堆內(nèi)存為512M和1024M。它也給子jvm添加了額外的路徑通過java.library.path參數(shù)。

?

Memory Management

Users/admins can also specify the maximum virtual memory of the launched child-task, and any sub-process it launches recursively, using?mapreduce.{map|reduce}.memory.mb. Note that the value set here is a per process limit. The value for?mapreduce.{map|reduce}.memory.mb?should be specified in mega bytes (MB). And also the value must be greater than or equal to the -Xmx passed to JavaVM, else the VM might not start.

Note:?mapreduce.{map|reduce}.java.opts?are used only for configuring the launched child tasks from MRAppMaster. Configuring the memory options for daemons is documented inConfiguring the Environment of the Hadoop Daemons.

The memory available to some parts of the framework is also configurable. In map and reduce tasks, performance may be influenced by adjusting parameters influencing the concurrency of operations and the frequency with which data will hit disk. Monitoring the filesystem counters for a job- particularly relative to byte counts from the map and into the reduce- is invaluable to the tuning of these parameters.

用戶或者管理員可以使用mapreduce.{map|reduce}.memory.mb指定子任務(wù)或者任何子進(jìn)程運(yùn)行的最大虛擬內(nèi)存。需要注意的這里的值是針對每個(gè)進(jìn)程的限制。{map|reduce}.memory.mb的值是以MB為單位的。并且這個(gè)值應(yīng)該大于等于傳給JavaVM的-Xmx的值,要不VM可能會無法啟動。

  說明:mapreduce.{map|reduce}.java.opts只用來設(shè)置MRAppMaster發(fā)出的子任務(wù)。守護(hù)線程的內(nèi)存選項(xiàng)配置在Configuring the Environment of the Hadoop Daemons.

  框架的一些組成部分的內(nèi)存也是可配置的。在map和reduce任務(wù)中,性能可能會受到并發(fā)數(shù)的調(diào)整和寫入到磁盤的頻率的影響。文件系統(tǒng)計(jì)數(shù)器監(jiān)控作業(yè)的map輸出和輸入到reduce的字節(jié)數(shù)對于調(diào)整這 ? ? ? ? 些參數(shù)是寶貴的。

Map Parameters

A record emitted(發(fā)射) from a map will be serialized into a buffer and metadata will be stored into accounting buffers. As described in the following options, when either the serialization buffer or the metadata exceed(超過) a threshold(入口), the contents of the buffers will be sorted and written to disk in the background while the map continues to output records. If either buffer fills completely while the spill is in progress, the map thread will block. When the map is finished, any remaining records are written to disk and all on-disk segments are merged into a single file. Minimizing the number of spills to disk can decrease map time, but a larger buffer also decreases the memory available to the mapper.

Name

Type

Description

mapreduce.task.io.sort.mb

int

The cumulative(累積) size of the serialization and accounting buffers storing records emitted from the map, in megabytes.

mapreduce.map.sort.spill.percent

float

The soft limit in the serialization buffer. Once reached, a thread will begin to spill the contents to disk in the background.

Other notes

    • If either spill threshold is exceeded while a spill is in progress, collection will continue until the spill is finished. For example, if?mapreduce.map.sort.spill.percent?is set to 0.33, and the remainder(剩余) of the buffer is filled while the spill runs, the next spill will include all the collected records, or 0.66 of the buffer, and will not generate additional spills. In other words, the thresholds are defining triggers, not blocking.
    • A record larger than the serialization buffer will first trigger a spill, then be spilled to a separate file. It is undefined whether or not this record will first pass through the combiner.

Map發(fā)出的數(shù)據(jù)將會被序列化在緩存中和源數(shù)據(jù)將會儲存在統(tǒng)計(jì)緩存。正如接下來的配置所描述的,當(dāng)序列化緩存和元數(shù)據(jù)超過設(shè)定的臨界值,緩存中的內(nèi)容將會后臺中寫入到磁盤中而map將會繼續(xù)輸出記錄。當(dāng)緩存完全滿了溢出之后,map線程將會阻塞。當(dāng)map任務(wù)結(jié)束,所有剩下的記錄都會被寫到磁盤中并且磁盤中所有文件塊會被合并到一個(gè)單獨(dú)的文件。減小溢出值將減少map的時(shí)間,但更大的緩存會減少mapper的內(nèi)存消耗。

其他說明:

    • 當(dāng)任何一個(gè)spill超出的臨界值,收集還會持續(xù)進(jìn)行直到結(jié)束。例如,當(dāng)mapreduce.map.sort.spill.percent?設(shè)置為0.33,那么剩余的緩存將會繼續(xù)填充而spill會繼續(xù)運(yùn)行,而下一個(gè)spill將會包含所有的收集的記錄,而當(dāng)值為0.66,將不會產(chǎn)生另一個(gè)spills。也就是說,臨界值會被觸發(fā),但不會阻塞。
    • 一個(gè)記錄大于序列化緩存將會第一時(shí)間觸發(fā)溢出,并且會被寫到一個(gè)單獨(dú)的文件。無論是否有定義都會第一時(shí)間通過combiner進(jìn)行傳輸。

?

Shuffle/Reduce Parameters

As described previously, each reduce fetches the output assigned to it by the Partitioner via HTTP into memory and periodically merges these outputs to disk. If intermediate compression of map outputs is turned on, each output is decompressed into memory. The following options affect the frequency of these merges to disk prior to the reduce and the memory allocated to map output during the reduce.

Name

Type

Description

mapreduce.task.io.soft.factor

int

Specifies the number of segments on disk to be merged at the same time. It limits the number of open files and compression codecs during merge. If the number of files exceeds this limit, the merge will proceed in several passes. Though this limit also applies to the map, most jobs should be configured so that hitting this limit is unlikely there.

mapreduce.reduce.merge.inmem.thresholds

int

The number of sorted map outputs fetched into memory before being merged to disk. Like the spill thresholds in the preceding note, this is not defining a unit of partition, but a trigger. In practice, this is usually set very high (1000) or disabled (0), since merging in-memory segments is often less expensive than merging from disk (see notes following this table). This threshold influences only the frequency of in-memory merges during the shuffle.

mapreduce.reduce.shuffle.merge.percent

float

The memory threshold for fetched map outputs before an in-memory merge is started, expressed as a percentage of memory allocated to storing map outputs in memory. Since map outputs that can't fit in memory can be stalled, setting this high may decrease parallelism between the fetch and merge. Conversely, values as high as 1.0 have been effective for reduces whose input can fit entirely in memory. This parameter influences only the frequency of in-memory merges during the shuffle.

mapreduce.reduce.shuffle.input.buffer.percent

float

The percentage of memory- relative to the maximum heapsize as typically specified in?mapreduce.reduce.java.opts- that can be allocated to storing map outputs during the shuffle. Though some memory should be set aside for the framework, in general it is advantageous to set this high enough to store large and numerous map outputs.

mapreduce.reduce.input.buffer.percent

float

The percentage of memory relative to the maximum heapsize in which map outputs may be retained during the reduce. When the reduce begins, map outputs will be merged to disk until those that remain are under the resource limit this defines. By default, all map outputs are merged to disk before the reduce begins to maximize the memory available to the reduce. For less memory-intensive reduces, this should be increased to avoid trips to disk.

Other notes

    • If a map output is larger than 25 percent of the memory allocated to copying map outputs, it will be written directly to disk without first staging through memory.
    • When running with a combiner, the reasoning about high merge thresholds and large buffers may not hold. For merges started before all map outputs have been fetched, the combiner is run while spilling to disk. In some cases, one can obtain better reduce times by spending resources combining map outputs- making disk spills small and parallelizing spilling and fetching- rather than aggressively increasing buffer sizes.
    • When merging in-memory map outputs to disk to begin the reduce, if an intermediate merge is necessary because there are segments to spill and at leastmapreduce.task.io.sort.factor?segments already on disk, the in-memory map outputs will be part of the intermediate merge.

正如前面提到的,每個(gè)reduce都會通過HTTP在內(nèi)存中拿到Partitioner分配好的數(shù)據(jù)并且定期地合并數(shù)據(jù)寫到磁盤中。如果map輸出的中間值都進(jìn)行壓縮,那么每個(gè)輸出都會減少內(nèi)存的壓力。下面這些設(shè)置將會影響reduce之前的數(shù)據(jù)合并到磁盤的頻率和reduce過程中分配給map輸出的內(nèi)存。

其他說明:

    • 如果一個(gè)map輸出大于分配給用于復(fù)制map輸出的內(nèi)存的25%,那么將會直接寫到磁盤不會通過內(nèi)存進(jìn)行臨時(shí)緩存。
    • 當(dāng)運(yùn)行一個(gè)combiner,高的臨界值和大的緩存的理由將沒有效果。在map輸出進(jìn)行合并之前,combiner將會進(jìn)行溢出寫到磁盤的操作。在一些例子當(dāng)中,耗費(fèi)資源combine map輸出數(shù)據(jù)獲得更小的溢出會比粗暴地增加緩存大小使得recuder的時(shí)間更少。
    • 當(dāng)合并內(nèi)存中的map數(shù)據(jù)到磁盤來開始recuder時(shí),如果磁盤中已經(jīng)存在部分切片數(shù)據(jù)的話,那么必須將內(nèi)存中的數(shù)據(jù)作為磁盤中間數(shù)據(jù)的一部分來進(jìn)行合并操作。

?

Configured Parameters

The following properties are localized in the job configuration for each task's execution:

Name

Type

Description

mapreduce.job.id

String

The job id

mapreduce.job.jar

String

job.jar location in job directory

mapreduce.job.local.dir

String

The job specific shared scratch space

mapreduce.task.id

String

The task id

mapreduce.task.attempt.id

String

The task attempt id

mapreduce.task.is.map

boolean

Is this a map task

mapreduce.task.partition

int

The id of the task within the job

mapreduce.map.input.file

String

The filename that the map is reading from

mapreduce.map.input.start

long

The offset of the start of the map input split

mapreduce.map.input.length

long

The number of bytes in the map input split

mapreduce.task.output.dir

String

The task's temporary output directory

Note:?During the execution of a streaming job, the names of the "mapreduce" parameters are transformed. The dots ( . ) become underscores ( _ ). For example, mapreduce.job.id becomes mapreduce_job_id and mapreduce.job.jar becomes mapreduce_job_jar. To get the values in a streaming job's mapper/reducer use the parameter names with the underscores.

說明:流式任務(wù)的執(zhí)行過程中,名字以mapreduce開頭的參數(shù)會被改變。符號(.)會變成(_)。例如,mapreduce.job.id會變成mapreduce_job_id和mapreduce.job.jar會變成mapreduce_job_jar。在Mapper/Reducer中使用帶下劃線的參數(shù)名來獲得對應(yīng)的值。

?

Task Logs

The standard output (stdout) and error (stderr) streams and the syslog of the task are read by the NodeManager and logged to?${HADOOP_LOG_DIR}/userlogs.

NodeManager 會讀取stdout、sterr和任務(wù)的syslog并寫到${HADOOP_LOG_DIR}/userlogs。

?

Distributing Libraries

The?DistributedCache?can also be used to distribute both jars and native libraries for use in the map and/or reduce tasks. The child-jvm always has its?current working directory?added to the?java.library.path?and?LD_LIBRARY_PATH. And hence the cached libraries can be loaded via?System.loadLibrary?or?System.load. More details on how to load shared libraries through distributed cache are documented at?Native Libraries.

分布是緩存也可以在map/reduce任務(wù)中用來分不是存儲jars和本地庫。子JVM經(jīng)常將它的工作路徑添加到j(luò)ava.librarypath和LD_LIBRARY_PATH.因此緩存的庫能通過System.loadLibrary?或者?System.load 來加載。更多關(guān)于如何通過分布式緩存來加載第三方庫參考Native Libraries.

?

Job Submission and Monitoring

Job?is the primary interface by which user-job interacts with the?ResourceManager.

Job?provides facilities to submit jobs, track their progress, access component-tasks' reports and logs, get the MapReduce cluster's status information and so on.

The job submission process involves:

  • Checking the input and output specifications of the job.
  • Computing the?InputSplit?values for the job.
  • Setting up the requisite accounting information for the?DistributedCache?of the job, if necessary.
  • Copying the job's jar and configuration to the MapReduce system directory on the?FileSystem.
  • Submitting the job to the?ResourceManager?and optionally monitoring it's status.
  • Job history files are also logged to user specified directory?mapreduce.jobhistory.intermediate-done-dir?and?mapreduce.jobhistory.done-dir, which defaults to job output directory.

    User can view the history logs summary in specified directory using the following command?
    $ mapred job -history output.jhist?
    This command will print job details, failed and killed tip details.?
    More details about the job such as successful tasks and task attempts made for each task can be viewed using the following command?
    $ mapred job -history all output.jhist

    Normally the user uses?Job?to create the application, describe various facets of the job, submit the job, and monitor its progress.

    Job 是用戶Job與ResourceManager交互的主要接口。

    Job 提供工具去提交jobs、跟蹤他們的進(jìn)程、使用組成任務(wù)的報(bào)告和日志,獲得MapReduce集群的狀態(tài)信息和其他。

    Job的提交包含以下內(nèi)容:

  • 檢查Job的輸入輸出指定
  • 計(jì)算Job的InputSplit的值
  • 如果必要的話,設(shè)置分布式緩存的需求信息。
  • 將Job的jar和configuration復(fù)制到Mapreduce系統(tǒng)的文件系統(tǒng)路徑下。
  • 將Job提交到ResourceManger并且隨時(shí)監(jiān)控它的狀態(tài)。
  • Job的歷史文件也被記錄到用戶通過mapreduce.jobhistory.intermediate-done-dir?and?mapreduce.jobhistory.done-dir指定的路徑下,默認(rèn)是Job的輸出路徑。

    用戶可以通過下面的指令來查看指定路徑下的所有的歷史記錄。

    $ mapred job -history output.jhist?

    這個(gè)命令可以打印job的細(xì)節(jié),失敗和殺死Job的技巧。用以下的命令可以考到更多關(guān)于Job例如成功任務(wù)和每個(gè)任務(wù)的目的細(xì)節(jié)。

    $ mapred job -history all output.jhist

    Normally the user uses?Job?to create the application, describe various facets of the job, submit the job, and monitor its progress.

    一般來說用戶使用Job來創(chuàng)建應(yīng)用,描述Job的各個(gè)方面,提交Job和監(jiān)控它的進(jìn)程。

    ?

    Job Control

    Users may need to chain MapReduce jobs to accomplish(實(shí)現(xiàn)) complex tasks which cannot be done via a single MapReduce job. This is fairly easy since the output of the job typically goes to distributed file-system, and the output, in turn(依次), can be used as the input for the next job.

    However, this also means that the onus on ensuring jobs are complete (success/failure) lies squarely on the clients. In such cases, the various job-control options are:

      • Job.submit()?: Submit the job to the cluster and return immediately.
      • Job.waitForCompletion(boolean)?: Submit the job to the cluster and wait for it to finish.

    用戶可能需要將多個(gè)任務(wù)串行實(shí)現(xiàn)復(fù)雜任務(wù)而沒辦法通過一個(gè)MapReduce任務(wù)實(shí)現(xiàn)。這是相當(dāng)容易,job的output通常是輸出到分布式緩存,而輸出,依次作為下一個(gè)任務(wù)的輸入。

    然而,這也意味確保任務(wù)的完成(成功/失敗)的義務(wù)是完全建立在客戶端上。在這種情況下,各種作業(yè)的控制選項(xiàng)有:

      • Job.submit()?:提交作業(yè)給集群并立刻回復(fù)
      • Job.waitForCompletion(boolean)?:提交作業(yè)給集群并且等待它完成。

    ?

    Job Input

    InputFormat?describes the input-specification for a MapReduce job.

    The MapReduce framework relies on the?InputFormat?of the job to:

  • Validate the input-specification of the job.
  • Split-up the input file(s) into logical?InputSplit?instances, each of which is then assigned to an individual?Mapper.
  • Provide the?RecordReader?implementation used to glean input records from the logical?InputSplit?for processing by the?Mapper.
  • The default behavior of file-based?InputFormat?implementations, typically sub-classes of?FileInputFormat, is to split the input into?logical?InputSplit?instances based on the total size, in bytes, of the input files. However, the?FileSystem?blocksize of the input files is treated as an upper bound for input splits. A lower bound on the split size can be set viamapreduce.input.fileinputformat.split.minsize.

    Clearly, logical splits based on input-size is insufficient for many applications since record boundaries must be respected. In such cases, the application should implement a?RecordReader, who is responsible for respecting record-boundaries and presents a record-oriented view of the logical?InputSplit?to the individual task.

    TextInputFormat?is the default?InputFormat.

    If?TextInputFormat?is the?InputFormat?for a given job, the framework detects input-files with the?.gz?extensions and automatically decompresses them using the appropriate CompressionCodec. However, it must be noted that compressed files with the above extensions cannot be?split?and each compressed file is processed in its entirety by a single mapper.

    InputFormat描述MapReduce Job的輸入規(guī)定。

    MapReduce框架依賴Job的InputFormat:

  • 使Job的輸入設(shè)定生效。
  • 將輸入文件分割成邏輯上的輸入塊實(shí)例,并將每一輸入塊分配給單獨(dú)的Mapper。
  • 提供RecordReader實(shí)現(xiàn)用于收集從邏輯輸入塊的記錄輸入到Mapper中。
  • 那些默認(rèn)的基于InputFormat的實(shí)現(xiàn),通常來說FileInputForamt的子類,基于總字節(jié)數(shù)將輸入基于字節(jié)數(shù)分成邏輯輸入塊實(shí)例,然而,FileSystem的塊大小將是inputSplits的上限值,下限值可以通過mapreduce.input.fileinputformat.split.minsize來設(shè)置。

    很明顯,很多應(yīng)用必須重視記錄的邊界,因存在著輸入大小不足以邏輯分割。在這種情況,應(yīng)用應(yīng)當(dāng)實(shí)現(xiàn)一個(gè)RecordReader,負(fù)責(zé)在單獨(dú)任務(wù)中處理記錄邊界和顯示,面向記錄的邏輯視圖。

    TextInputForamt是默認(rèn)的InputForamt。

    如果job的InputForamt是TextInputFormat,框架會對輸入文件進(jìn)行檢測,如果擴(kuò)展名為.gz那么會自動用合適的壓縮編碼器進(jìn)行解壓。然而,必須說明的是經(jīng)過壓縮的文件將不能被切割并且每一個(gè)壓縮文件都必須完全在一個(gè)Mapper單獨(dú)處理。

    ?

    InputSplit

    InputSplit?represents the data to be processed by an individual?Mapper.

    Typically?InputSplit?presents a byte-oriented view of the input, and it is the responsibility of?RecordReader?to process and present a record-oriented view.

    FileSplit?is the default?InputSplit. It sets?mapreduce.map.input.file?to the path of the input file for the logical split.

    輸入塊表示每個(gè)單獨(dú)Mapper處理的數(shù)據(jù)。

    通常來說,輸入塊代表輸入的面向字節(jié)視圖,而RecordReader代表的是面向記錄視圖。

    FileSplit是默認(rèn)的InputSplit。mapreduce.map.input.file設(shè)置用于邏輯分割的輸入路徑。

    ?

    RecordReader

    RecordReader?reads?<key, value>?pairs from an?InputSplit.

    Typically the?RecordReader?converts the byte-oriented view of the input, provided by the?InputSplit, and presents a record-oriented to the?Mapper?implementations for processing.RecordReader?thus assumes the responsibility of processing record boundaries and presents the tasks with keys and values.

    RecordReader從InputSplit讀取鍵值對。

    通常來說,RecordReader將輸入的面向字節(jié)視圖轉(zhuǎn)換成面向記錄視圖并輸入到Mapper的實(shí)現(xiàn)類進(jìn)行處理。RecordReader因此承擔(dān)起處理記錄邊界和顯示任務(wù)的Keys和Values的責(zé)任。

    ?

    Job Output

    OutputFormat?describes the output-specification for a MapReduce job.

    The MapReduce framework relies on the?OutputFormat?of the job to:

  • Validate the output-specification of the job; for example, check that the output directory doesn't already exist.
  • Provide the?RecordWriter?implementation used to write the output files of the job. Output files are stored in a?FileSystem.
  • TextOutputFormat?is the default?OutputFormat.

    OutputFormat 描述MapReduce Job的輸出規(guī)定。

    MapReduce 框架依賴于Job的OutputFormat:

  • 使job的輸出設(shè)置生效;例如,檢查輸出路徑是否已經(jīng)存在。
  • 提供RecordWriter實(shí)現(xiàn)用于輸出文件。輸出文件儲存在FileSystem。
  • ?

    OutputCommitter

    OutputCommitter?describes the commit of task output for a MapReduce job.

    The MapReduce framework relies on the?OutputCommitter?of the job to:

  • Setup the job during initialization. For example, create the temporary output directory for the job during the initialization of the job. Job setup is done by a separate task when the job is in PREP state and after initializing tasks. Once the setup task completes, the job will be moved to RUNNING state.
  • Cleanup the job after the job completion. For example, remove the temporary output directory after the job completion. Job cleanup is done by a separate task at the end of the job. Job is declared SUCCEDED/FAILED/KILLED after the cleanup task completes.
  • Setup the task temporary output. Task setup is done as part of the same task, during task initialization.
  • Check whether a task needs a commit. This is to avoid the commit procedure if a task does not need commit.
  • Commit of the task output. Once task is done, the task will commit it's output if required.
  • Discard the task commit. If the task has been failed/killed, the output will be cleaned-up. If task could not cleanup (in exception block), a separate task will be launched with same attempt-id to do the cleanup.
  • FileOutputCommitter?is the default?OutputCommitter. Job setup/cleanup tasks occupy map or reduce containers, whichever is available on the NodeManager. And JobCleanup task, TaskCleanup tasks and JobSetup task have the highest priority, and in that order.

    OutputCommitter 描述著MapReduce的任務(wù)輸出的提交。

    MapReduce依賴于Job的輸出提交器:

  • 初始化時(shí)設(shè)置Job。例如,job的初始化過程中創(chuàng)建臨時(shí)輸出路徑。當(dāng)Job處于準(zhǔn)備階段和初始化任務(wù)之后,Job通過一個(gè)單獨(dú)的任務(wù)完成創(chuàng)建。,一旦任務(wù)的創(chuàng)建完成之后,job將會轉(zhuǎn)成運(yùn)行狀態(tài)。
  • Job完成之后清除Job。例如,Job完成后移除臨時(shí)輸出路徑。Job結(jié)束之時(shí)用一個(gè)單獨(dú)的任務(wù)完成Job的清除。在完成對任務(wù)的清除之后Job會聲明SUCCEDED/FAILED/KILLED.
  • 設(shè)置任務(wù)臨時(shí)輸出。在任務(wù)的初始化過程中,任務(wù)設(shè)置作為任務(wù)的一部分來完成。
  • 檢查一個(gè)任務(wù)是否需要提交。這將避免一個(gè)不需要提交的任務(wù)執(zhí)行提交程序。
  • 提交任務(wù)的輸出。一旦任務(wù)完成,任務(wù)將會提交它的輸出如果需要的話。
  • 放棄任務(wù)提交。如果任務(wù)已經(jīng)失敗或者被殺死,那么輸出將會被清除掉。如果任務(wù)因?yàn)橐馔鉀]有被清除掉,那么一個(gè)單獨(dú)的任務(wù)將會被運(yùn)行來執(zhí)行清除工作。
  • FileOutputCommitter是默認(rèn)的OutputCommitter。Job 創(chuàng)建/清除任務(wù)占有map或者reduce容器,無論NodeManager是否可用。Job的清除任務(wù),任務(wù)的清除任務(wù)和Job的創(chuàng)建任務(wù)擁有最高的優(yōu)先級。

    ?

    Task Side-Effect Files?

    In some applications, component tasks need to create and/or write to side-files, which differ from the actual job-output files.

    In such cases there could be issues with two instances of the same?Mapper?or?Reducer?running simultaneously (for example, speculative tasks) trying to open and/or write to the same file (path) on the?FileSystem. Hence the application-writer will have to pick unique names per task-attempt (using the attemptid, say?attempt_200709221812_0001_m_000000_0), not just per task.

    To avoid these issues the MapReduce framework, when the?OutputCommitter?is?FileOutputCommitter, maintains a special${mapreduce.output.fileoutputformat.outputdir}/_temporary/_${taskid}?sub-directory accessible via?${mapreduce.task.output.dir}?for each task-attempt on the?FileSystem?where the output of the task-attempt is stored. On successful completion of the task-attempt, the files in the?${mapreduce.output.fileoutputformat.outputdir}/_temporary/_${taskid}?(only) are?promoted?to${mapreduce.output.fileoutputformat.outputdir}. Of course, the framework discards the sub-directory of unsuccessful task-attempts. This process is completely transparent to the application.

    The application-writer can take advantage of this feature by creating any side-files required in?${mapreduce.task.output.dir}?during execution of a task viaFileOutputFormat.getWorkOutputPath(Conext), and the framework will promote them similarly for succesful task-attempts, thus eliminating the need to pick unique paths per task-attempt.

    Note: The value of?${mapreduce.task.output.dir}?during execution of a particular task-attempt is actually?${mapreduce.output.fileoutputformat.outputdir}/_temporary/_{$taskid}, and this value is set by the MapReduce framework. So, just create any side-files in the path returned by?FileOutputFormat.getWorkOutputPath(Conext)?from MapReduce task to take advantage of this feature.

    The entire discussion holds true for maps of jobs with reducer=NONE (i.e. 0 reduces) since output of the map, in that case, goes directly to HDFS.

    在一些應(yīng)用當(dāng)中,組成的任務(wù)必須創(chuàng)建一些其他文檔,跟實(shí)際輸出不同的文檔。

    在這些情況當(dāng)中將會同時(shí)存在兩個(gè)Mapper或者Reducer實(shí)例去打開或者寫到FileSystem中相同的文檔。因此應(yīng)用開發(fā)者將會獲取獨(dú)一無二的任務(wù)目的(使用目的ID,假如say?attempt_200709221812_0001_m_000000_0),不僅是每個(gè)任務(wù)。

    說明:${mapreduce.task.output.dir}的值在一個(gè)特定任務(wù)執(zhí)行過程中實(shí)際上是${mapreduce.output.fileoutputformat.outputdir}/_temporary/_{$taskid}的值,而這個(gè)值是由MapReduce框架設(shè)定的。所以,MapReduce任務(wù)利用這個(gè)特性從FileOutputForamt.getWorkOutPath(Context)返回的路徑創(chuàng)建副文檔。

    整個(gè)討論適用于作業(yè)有map但沒有reduce的情況,因此map的output直接寫到HDFS.

    ?

    RecordWriter

    RecordWriter?writes the output?<key, value>?pairs to an output file.

    RecordWriter implementations write the job outputs to the?FileSystem.

    RecordWriter將鍵值對的輸出寫到輸出文件中。

    RecordWriter實(shí)現(xiàn)類將job的輸出寫到FileSytem。

    ?

    Other Useful Features?

    Submitting Jobs to Queues?

    Users submit jobs to Queues. Queues, as collection of jobs, allow the system to provide specific functionality. For example, queues use ACLs to control which users who can submit jobs to them. Queues are expected to be primarily used by Hadoop Schedulers.

    Hadoop comes configured with a single mandatory queue, called 'default'. Queue names are defined in the?mapreduce.job.queuename> property of the Hadoop site configuration. Some job schedulers, such as the?Capacity Scheduler, support multiple queues.

    A job defines the queue it needs to be submitted to through the?mapreduce.job.queuename?property, or through the Configuration.set(MRJobConfig.QUEUE_NAME, String) API. Setting the queue name is optional. If a job is submitted without an associated queue name, it is submitted to the 'default' queue.

    用戶提交job到隊(duì)列中。隊(duì)列,也就是job的集合,允許系統(tǒng)提供特定的功能。例如,隊(duì)列使用ACLS來控制哪些用戶可以提交隊(duì)列。Hadoop Schedulers是隊(duì)列的主要使用者。

    Hadoop設(shè)置一個(gè)單獨(dú)的強(qiáng)制的隊(duì)列,稱之為“默認(rèn)”。隊(duì)列的名稱是在Hadoop-site配置文件中的mapreduce.job.queuename>屬性決定的。一些作業(yè)調(diào)度器支持多個(gè)的隊(duì)列,例如容量調(diào)度器。

    一個(gè)作業(yè)通過mapreduce.job.queuename屬性或者Configuration.set(MRJobConfig.QUEUE_NAME, String)API來定義一個(gè)隊(duì)列。設(shè)置隊(duì)列的名字是可選的。如果一個(gè)作業(yè)被提交時(shí)并沒有設(shè)置隊(duì)列名稱,那么隊(duì)列名稱為“默認(rèn)”。

    ?

    Counters?

    Counters?represent global counters, defined either by the MapReduce framework or applications. Each?Counter?can be of any?Enum?type. Counters of a particular?Enum?are bunched into groups of type?Counters.Group.

    Applications can define arbitrary?Counters?(of type?Enum) and update them via?Counters.incrCounter(Enum, long)?or Counters.incrCounter(String, String, long) in the?map?and/or?reducemethods. These counters are then globally aggregated by the framework.

    計(jì)數(shù)器是全局計(jì)數(shù)器,由MapReduce框架或者應(yīng)用定義。每一個(gè)計(jì)數(shù)器都可以是任何枚舉類型。Counters of a particular?Enum?are bunched into groups of type?Counters.Group。

    應(yīng)用可以定義任意計(jì)數(shù)器和通過 Counters.incrCounter(Enum, long)?或者Counters.incrCounter(String, String, long)來更新在map/reduce方法中。這些計(jì)數(shù)器是通過框架進(jìn)行全局計(jì)算的。

    ?

    DistributedCache?

    DistributedCache?distributes application-specific, large, read-only files efficiently.

    DistributedCache?is a facility provided by the MapReduce framework to cache files (text, archives, jars and so on) needed by applications.

    Applications specify the files to be cached via urls (hdfs://) in the?Job. The?DistributedCache?assumes that the files specified via hdfs:// urls are already present on the?FileSystem.

    The framework will copy the necessary files to the slave node before any tasks for the job are executed on that node. Its efficiency stems from the fact that the files are only copied once per job and the ability to cache archives which are un-archived on the slaves.

    DistributedCache?tracks the modification timestamps of the cached files. Clearly the cache files should not be modified by the application or externally while the job is executing.

    DistributedCache?can be used to distribute simple, read-only data/text files and more complex types such as archives and jars. Archives (zip, tar, tgz and tar.gz files) are?un-archived?at the slave nodes. Files have?execution permissions?set.

    The files/archives can be distributed by setting the property?mapreduce.job.cache.{files|archives}. If more than one file/archive has to be distributed, they can be added as comma separated paths. The properties can also be set by APIs?Job.addCacheFile(URI)/?Job.addCacheArchive(URI)?and?Job.setCacheFiles(URI[])/?Job.setCacheArchives(URI[])?where URI is of the form?hdfs://host:port/absolute-path#link-name. In Streaming, the files can be distributed through command line option?-cacheFile/-cacheArchive.

    The?DistributedCache?can also be used as a rudimentary software distribution mechanism for use in the map and/or reduce tasks. It can be used to distribute both jars and native libraries. The?Job.addArchiveToClassPath(Path)?or?Job.addFileToClassPath(Path)?api can be used to cache files/jars and also add them to the?classpath?of child-jvm. The same can be done by setting the configuration properties?mapreduce.job.classpath.{files|archives}. Similarly the cached files that are symlinked into the working directory of the task can be used to distribute native libraries and load them.

    分布式緩存有效地分布存儲應(yīng)用專用的、大的、只讀的文件。

    分布是緩存是MapReduce框架提供給應(yīng)用用于緩存文件(文本,檔案、jar包和其他)。

    應(yīng)用可以通過urls (hdfs://)在Job中指定文件的緩存路徑。分布式緩存假設(shè)通過hdfs:// urls指定的文件已經(jīng)存在現(xiàn)在的FileSystem。

    這個(gè)框架將在某個(gè)從屬節(jié)點(diǎn)執(zhí)行任何任務(wù)之前復(fù)制必要的文件到該節(jié)點(diǎn)上。它的高效源于這樣的事實(shí):每個(gè)作業(yè)只復(fù)制一次到那些能夠存檔但是還沒存檔的節(jié)點(diǎn)上。

    分布式緩存跟蹤緩存文件的修改時(shí)間戳。顯然當(dāng)作業(yè)在執(zhí)行時(shí)緩存文件不應(yīng)該被應(yīng)用或者外部修改。

    分布式緩存可以用來分布緩存簡單的、只讀的的數(shù)據(jù)或者文本文檔和更復(fù)雜類型例如檔案和Jar包。檔案(zip, tar, tgz and tar.gz files)指的是未存檔到從屬節(jié)點(diǎn)的。文檔是有執(zhí)行權(quán)限的。

    文件可以通過設(shè)置mapreduce.job.cache.{files|archives}屬性來分配存儲。如果有更多的文件需要存儲,那么在用逗號隔開路徑即可。該屬性還可以通過Job.addCacheFile(URI)/?Job.addCacheArchive(URI)?and?Job.setCacheFiles(URI[])/?Job.setCacheArchives(URI[])?來設(shè)置,URL的格式為hdfs://host:port/absolute-path#link-name。文件可以通過命令-cacheFile/-cacheArchive來實(shí)現(xiàn)分配存儲。

    分布式緩存也可以用作一個(gè)基本的軟件分發(fā)機(jī)制用于map/reduce任務(wù)。它也可以用來分布存儲jar包和本地庫。Job.addArchiveToClassPath(Path)?or?Job.addFileToClassPath(Path)?api可以用來緩存文件/jars并且子Jvm也會將它們添加到類路徑下。通過設(shè)置mapreduce.job.classpath.{files|archives}屬性也可以達(dá)到同樣效果。同樣地緩存文件通過符號鏈接到任務(wù)的工作路徑來分布緩存本地庫和加載它們。

    ?

    Private and Public DistributedCache Files?

    DistributedCache files can be private or public, that determines how they can be shared on the slave nodes.

      • "Private" DistributedCache files are cached in a local directory private to the user whose jobs need these files. These files are shared by all tasks and jobs of the specific user only and cannot be accessed by jobs of other users on the slaves. A DistributedCache file becomes private by virtue of its permissions on the file system where the files are uploaded, typically HDFS. If the file has no world readable access, or if the directory path leading to the file has no world executable access for lookup, then the file becomes private.
      • "Public" DistributedCache files are cached in a global directory and the file access is setup such that they are publicly visible to all users. These files can be shared by tasks and jobs of all users on the slaves. A DistributedCache file becomes public by virtue of its permissions on the file system where the files are uploaded, typically HDFS. If the file has world readable access, AND if the directory path leading to the file has world executable access for lookup, then the file becomes public. In other words, if the user intends to make a file publicly available to all users, the file permissions must be set to be world readable, and the directory permissions on the path leading to the file must be world executable.

    分布式緩存文件可以是私有的或者公有的,以確定它們是否可以被分享到從屬節(jié)點(diǎn)。

      • ?私有分布式緩存文件被緩存在局部路徑屬于那些作業(yè)需要這些文件的用戶。這些文件只可以被指定用戶的所有任務(wù)和Job使用,而這些節(jié)點(diǎn)的其他用戶就不能使用。分布式緩存文檔在它所上傳的文件系統(tǒng)中通過他的權(quán)限變成私有的,文件系統(tǒng)通常為HDFS.如果這些文檔沒有全局讀取權(quán)限,或者它的路徑?jīng)]有全局的可執(zhí)行查找權(quán)限,那么這些文檔就是私有的。
      • 公有分布式緩存文檔被緩存在一個(gè)全局路徑并且文件被設(shè)置為對所有用戶都可見。這些文件可以被所有節(jié)點(diǎn)上的所有用戶分享。分布式緩存文件在它所上傳的文件系統(tǒng)上通過他的權(quán)限變成公有的,文件系統(tǒng)通常為HDFS。如果文件具有全局可讀權(quán)限,并且他的路徑具有全局的可執(zhí)行查找權(quán)限,那么它就是公有的。也就是說,如果用戶想要使文件對所有用戶可見可操作,那么文件權(quán)限必須是全局可讀和他的路徑權(quán)限必須是全局可執(zhí)行。

    ?

    Profiling

    Profiling is a utility to get a representative (2 or 3) sample of built-in java profiler for a sample of maps and reduces.

    User can specify whether the system should collect profiler information for some of the tasks in the job by setting the configuration property?mapreduce.task.profile. The value can be set using the api Configuration.set(MRJobConfig.TASK_PROFILE, boolean). If the value is set?true, the task profiling is enabled. The profiler information is stored in the user log directory. By default, profiling is not enabled for the job.

    Once user configures that profiling is needed, she/he can use the configuration property?mapreduce.task.profile.{maps|reduces}?to set the ranges of MapReduce tasks to profile. The value can be set using the api Configuration.set(MRJobConfig.NUM_{MAP|REDUCE}_PROFILES, String). By default, the specified range is?0-2.

    User can also specify the profiler configuration arguments by setting the configuration property?mapreduce.task.profile.params. The value can be specified using the api Configuration.set(MRJobConfig.TASK_PROFILE_PARAMS, String). If the string contains a?%s, it will be replaced with the name of the profiling output file when the task runs. These parameters are passed to the task child JVM on the command line. The default value for the profiling parameters is?-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s.

    分析器是一個(gè)工具可以用來獲取2到3個(gè)Java內(nèi)置分析器關(guān)于map和reduce的分析樣本。

    用戶可以通過?mapreduce.task.profile來指定系統(tǒng)是否要收集某個(gè)作業(yè)的一些任務(wù)分析信息。這個(gè)值也可以通過Configuration.set(MRJobConfig.TASK_PROFILE, boolean) api來設(shè)置。如果這個(gè)值為真,那么任務(wù)分析將會生效。分析器的信息將儲存在用戶的log路徑下。該屬性默認(rèn)是不生效的。

    一旦用戶配置了該屬性,那么他/她就可以通過?mapreduce.task.profile.{maps|reduces}?來設(shè)置MapReduce任務(wù)的范圍。這個(gè)值也可以通過Configuration.set(MRJobConfig.NUM_{MAP|REDUCE}_PROFILES, String) api來設(shè)置。默認(rèn)的值為0-2。

    用戶也可以通過配置mapreduce.task.profile.params屬性來指定分析器的的參數(shù)。這個(gè)值也可以通過api Configuration.set(MRJobConfig.TASK_PROFILE_PARAMS, String)來設(shè)置。假如字符串里面包含%s,那么將會在任務(wù)執(zhí)行時(shí)被替換成分析輸出文件的名字。這些參數(shù)將會在命令行中傳輸給任務(wù)所在的子JVM。默認(rèn)的參數(shù)的值為-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s。

    ?

    Debugging

    The MapReduce framework provides a facility to run user-provided scripts for debugging. When a MapReduce task fails, a user can run a debug script, to process task logs for example. The script is given access to the task's stdout and stderr outputs, syslog and jobconf. The output from the debug script's stdout and stderr is displayed on the console diagnostics and also as part of the job UI.

    In the following sections we discuss how to submit a debug script with a job. The script file needs to be distributed and submitted to the framework.

    MapReduce框架提供一個(gè)工具用來運(yùn)行用戶提供的腳本用于調(diào)試。當(dāng)一個(gè)MapReduce任務(wù)失敗,用戶可以運(yùn)行調(diào)試腳本,去處理任務(wù)log。腳本可以讀取任務(wù)的stdout、stderr輸出、syslog和jobconf。調(diào)試腳本的stdout和sterr輸出將會作為Job UI的一部分顯示出來。

    在接下來的部分我們將討論如何提交一個(gè)調(diào)試腳本到作業(yè)中。腳本文件需要提交和存儲在框架中。

    ?

    How to distribute the script file:

    The user needs to use?DistributedCache?to?distribute?and?symlink?the script file.

    用戶需要使用分布式緩存來分發(fā)和符號鏈接腳本文件。

    ?

    How to submit the script:

    A quick way to submit the debug script is to set values for the properties?mapreduce.map.debug.script?and?mapreduce.reduce.debug.script, for debugging map and reduce tasks respectively. These properties can also be set by using APIs?Configuration.set(MRJobConfig.MAP_DEBUG_SCRIPT, String)?and?Configuration.set(MRJobConfig.REDUCE_DEBUG_SCRIPT, String). In streaming mode, a debug script can be submitted with the command-line options?-mapdebug?and?-reducedebug, for debugging map and reduce tasks respectively.

    The arguments to the script are the task's stdout, stderr, syslog and jobconf files. The debug command, run on the node where the MapReduce task failed, is:?
    $script $stdout $stderr $syslog $jobconf

    Pipes programs have the c++ program name as a fifth argument for the command. Thus for the pipes programs the command is?
    $script $stdout $stderr $syslog $jobconf $program

    通過mapreduce.map.debug.script?和nd?mapreduce.reduce.debug.script屬性來分別設(shè)置map和reduce任務(wù)的調(diào)試腳本是一個(gè)快速的提交調(diào)試腳本的方法。這些屬性可以通過APIs?Configuration.set(MRJobConfig.MAP_DEBUG_SCRIPT, String)?和?Configuration.set(MRJobConfig.REDUCE_DEBUG_SCRIPT, String)來設(shè)置。在流式編程模式,可以通過命令行選項(xiàng)?-mapdebug?和?–reducedebug來分別設(shè)置map和reduce的調(diào)試腳本用于調(diào)試。

    腳本的參數(shù)是任務(wù)的標(biāo)準(zhǔn)輸出、標(biāo)準(zhǔn)錯(cuò)誤、系統(tǒng)日志和作業(yè)配置文檔。調(diào)試命令,運(yùn)行在某個(gè)Mapreduce任務(wù)失敗的節(jié)點(diǎn)上,是$script $stdout $stderr $syslog $jobconf $program。

    擁有C++程度的Pipes項(xiàng)目在命令中增加第五個(gè)參數(shù)。因此命令如下:$script $stdout $stderr $syslog $jobconf $program

    ?

    Default Behavior:

    For pipes, a default script is run to process core dumps under gdb, prints stack trace and gives info about running threads.

    在Pipes中,默認(rèn)的腳本是運(yùn)行在GDP的核心轉(zhuǎn)儲,打印堆跟蹤和運(yùn)行線程的信息。

    ?

    Data Compression

    Hadoop MapReduce provides facilities for the application-writer to specify compression for both intermediate map-outputs and the job-outputs i.e. output of the reduces. It also comes bundled with?CompressionCodec?implementation for the?zlib?compression algorithm. The?gzip,?bzip2,?snappy, and?lz4?file format are also supported.

    Hadoop also provides native implementations of the above compression codecs for reasons of both performance (zlib) and non-availability of Java libraries. More details on their usage and availability are available?here.

    Hadoop MapReduce提供一個(gè)功能讓應(yīng)用開發(fā)指定壓縮方式用于map輸出的中間數(shù)據(jù)和job-outputs也就是reduce的輸出。它也捆綁著實(shí)現(xiàn)zlib壓縮算法的壓縮編碼器。支持gzip、bzip2、snappy和lz4文件格式的文檔。

    Hadoop也提供上述編碼器的本地實(shí)現(xiàn),因?yàn)樾阅芎蚃ava庫不支持的原因。更多關(guān)于它們的使用細(xì)節(jié)和可用性可參考官方文檔。

    ?

    Intermediate Outputs

    Applications can control compression of intermediate map-outputs via the Configuration.set(MRJobConfig.MAP_OUTPUT_COMPRESS, boolean) api and the?CompressionCodec?to be used via the Configuration.set(MRJobConfig.MAP_OUTPUT_COMPRESS_CODEC, Class) api.

    應(yīng)用可以通過Configuration.set(MRJobConfig.MAP_OUTPUT_COMPRESS, boolean) api來設(shè)置是否對map的輸出進(jìn)行壓縮和Configuration.set(MRJobConfig.MAP_OUTPUT_COMPRESS_CODEC, Class) api指定壓縮編碼器。

    ?

    Job Outputs

    Applications can control compression of job-outputs via the?FileOutputFormat.setCompressOutput(Job, boolean)?api and the?CompressionCodec?to be used can be specified via the FileOutputFormat.setOutputCompressorClass(Job, Class) api.

    If the job outputs are to be stored in the?SequenceFileOutputFormat, the required?SequenceFile.CompressionType?(i.e.?RECORD?/?BLOCK?- defaults to?RECORD) can be specified via the SequenceFileOutputFormat.setOutputCompressionType(Job, SequenceFile.CompressionType) api.

    應(yīng)用可以通過FileOutputFormat.setCompressOutput(Job, boolean)?api來控制是否對作業(yè)輸出進(jìn)行壓縮和通過FileOutputFormat.setOutputCompressorClass(Job, Class)api來設(shè)置壓縮編碼器。

    如果作業(yè)的輸出是以SequenceFileOutputFormat格式存儲的,那么需要序列化。壓縮類型通過SequenceFileOutputFormat.setOutputCompressionType(Job, SequenceFile.CompressionType) api來指定。

    ?

    Skipping Bad Records

    Hadoop provides an option where a certain set of bad input records can be skipped when processing map inputs. Applications can control this feature through the?SkipBadRecords?class.

    This feature can be used when map tasks crash deterministically on certain input. This usually happens due to bugs in the map function. Usually, the user would have to fix these bugs. This is, however, not possible sometimes. The bug may be in third party libraries, for example, for which the source code is not available. In such cases, the task never completes successfully even after multiple attempts, and the job fails. With this feature, only a small portion of data surrounding the bad records is lost, which may be acceptable for some applications (those performing statistical analysis on very large data, for example).

    By default this feature is disabled. For enabling it, refer to?SkipBadRecords.setMapperMaxSkipRecords(Configuration, long)?and?SkipBadRecords.setReducerMaxSkipGroups(Configuration, long).

    With this feature enabled, the framework gets into 'skipping mode' after a certain number of map failures. For more details, seeSkipBadRecords.setAttemptsToStartSkipping(Configuration, int). In 'skipping mode', map tasks maintain the range of records being processed. To do this, the framework relies on the processed record counter. See?SkipBadRecords.COUNTER_MAP_PROCESSED_RECORDS?and?SkipBadRecords.COUNTER_REDUCE_PROCESSED_GROUPS. This counter enables the framework to know how many records have been processed successfully, and hence, what record range caused a task to crash. On further attempts, this range of records is skipped.

    The number of records skipped depends on how frequently the processed record counter is incremented by the application. It is recommended that this counter be incremented after every record is processed. This may not be possible in some applications that typically batch their processing. In such cases, the framework may skip additional records surrounding the bad record. Users can control the number of skipped records through?SkipBadRecords.setMapperMaxSkipRecords(Configuration, long)?andSkipBadRecords.setReducerMaxSkipGroups(Configuration, long). The framework tries to narrow the range of skipped records using a binary search-like approach. The skipped range is divided into two halves and only one half gets executed. On subsequent failures, the framework figures out which half contains bad records. A task will be re-executed till the acceptable skipped value is met or all task attempts are exhausted. To increase the number of task attempts, use?Job.setMaxMapAttempts(int)?and?Job.setMaxReduceAttempts(int)

    Skipped records are written to HDFS in the sequence file format, for later analysis. The location can be changed through?SkipBadRecords.setSkipOutputPath(JobConf, Path).

    Hadoop提供一個(gè)選項(xiàng)當(dāng)執(zhí)行map輸入時(shí)可以跳過某一組確定的壞數(shù)據(jù)。應(yīng)用可以通過SkipBadRecords 類來控制特性。

    當(dāng)map任務(wù)中某些輸入一定會導(dǎo)致崩潰時(shí)可以使用這個(gè)屬性。這通常發(fā)生在map函數(shù)中的bug。通常地,用戶會修復(fù)這些bug。然而,某些時(shí)候不一定有用。這個(gè)bug可能是第三方庫導(dǎo)致的,例如那些源代碼看不了的。在這些情況當(dāng)中,盡管經(jīng)過多次嘗試都沒有辦法完成任務(wù),作業(yè)也會失敗。通過這個(gè)屬性,只有一小部分的壞數(shù)據(jù)周邊數(shù)據(jù)會丟失,這對于某些應(yīng)用是可以接受的(那么數(shù)據(jù)量非常的統(tǒng)計(jì)分析)

    這個(gè)屬性默認(rèn)是失效的。可以通過SkipBadRecords.setMapperMaxSkipRecords(Configuration, long)?和SkipBadRecords.setReducerMaxSkipGroups(Configuration, long)。來使它生效。

    當(dāng)這個(gè)屬性生效,框架在一定數(shù)量的map失敗后會進(jìn)入“跳過模式”。在跳過模式中,map任務(wù)維持被處理數(shù)據(jù)的范圍,看看SkipBadRecords.setAttemptsToStartSkipping(Configuration, int)。為了達(dá)到這個(gè)目標(biāo),框架依賴于記錄計(jì)數(shù)器。看看SkipBadRecords.COUNTER_MAP_PROCESSED_RECORDS?and?SkipBadRecords.COUNTER_REDUCE_PROCESSED_GROUPS的說明。這個(gè)計(jì)數(shù)器是的框架可以知道有多少條記錄被成功處理了,因此來找出哪些記錄范圍會引起任務(wù)崩潰。在進(jìn)一步的嘗試中,這些范圍的記錄會被跳過。

    跳過記錄的數(shù)目取決于運(yùn)行的記錄計(jì)數(shù)器的增長頻率。建議這個(gè)計(jì)數(shù)器在每天記錄處理增加。這在批量處理中可已不太可能實(shí)現(xiàn)。在這些情況當(dāng)中,框架會跳過不良記錄附近的額外數(shù)據(jù)。用戶可以通過SkipBadRecords.setMapperMaxSkipRecords(Configuration, long)?andSkipBadRecords.setReducerMaxSkipGroups(Configuration, long)來控制跳過記錄的數(shù)量。框架會試圖使用二進(jìn)制搜索方式來縮窄跳過記錄的范圍。跳過范圍被分成兩部分并且只有其中一半會被拿來執(zhí)行。在接下來的錯(cuò)誤當(dāng)中,框架將會指出哪一半范圍包含不良數(shù)據(jù)。一個(gè)任務(wù)將會重新執(zhí)行直到跳過記錄或者嘗試次數(shù)用完。可以通過Job.setMaxMapAttempts(int)?and?Job.setMaxReduceAttempts(int).來增加嘗試次數(shù)。

    跳過的記錄將會以序列化的形式寫到HDFS中。可以通過?SkipBadRecords.setSkipOutputPath(JobConf, Path)來修改路徑。

    ?

    *由于譯者本身能力有限,所以譯文中肯定會出現(xiàn)表述不正確的地方,請大家多多包涵,也希望大家能夠指出文中翻譯得不對或者不準(zhǔn)確的地方,共同探討進(jìn)步,謝謝。

    ?

    轉(zhuǎn)載于:https://www.cnblogs.com/simple-focus/p/6108737.html

    總結(jié)

    以上是生活随笔為你收集整理的Hadoop官方文档翻译——MapReduce Tutorial的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

    欧美黑人性暴力猛交喷水 | 男女下面进入的视频免费午夜 | 国产精品无码永久免费888 | 国产精品无码成人午夜电影 | 欧美自拍另类欧美综合图片区 | 少妇人妻大乳在线视频 | 熟妇人妻激情偷爽文 | 日本免费一区二区三区最新 | 熟女少妇在线视频播放 | 老太婆性杂交欧美肥老太 | 国产亚洲美女精品久久久2020 | 亚洲成在人网站无码天堂 | 99精品久久毛片a片 | 亚拍精品一区二区三区探花 | 国产亚av手机在线观看 | 国产97色在线 | 免 | 欧美丰满老熟妇xxxxx性 | 精品欧洲av无码一区二区三区 | 夜夜高潮次次欢爽av女 | 国产精品对白交换视频 | 国产人妻精品一区二区三区不卡 | 日韩少妇内射免费播放 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 中文无码伦av中文字幕 | 亚洲精品中文字幕久久久久 | 澳门永久av免费网站 | 少妇性俱乐部纵欲狂欢电影 | 天天拍夜夜添久久精品 | 国产精品高潮呻吟av久久 | 亚洲欧美日韩综合久久久 | 久久国产精品二国产精品 | 久久人人爽人人人人片 | 丰腴饱满的极品熟妇 | 波多野结衣高清一区二区三区 | 一本大道久久东京热无码av | 呦交小u女精品视频 | 永久免费精品精品永久-夜色 | 午夜福利不卡在线视频 | 18禁黄网站男男禁片免费观看 | 日本www一道久久久免费榴莲 | 国产一精品一av一免费 | 精品亚洲成av人在线观看 | 亚洲日本一区二区三区在线 | 欧美日韩色另类综合 | 未满小14洗澡无码视频网站 | 国产午夜无码精品免费看 | 在线亚洲高清揄拍自拍一品区 | 最新版天堂资源中文官网 | 一本色道久久综合亚洲精品不卡 | 久久久久亚洲精品中文字幕 | 亚洲s色大片在线观看 | 成人精品视频一区二区三区尤物 | 性欧美大战久久久久久久 | 2019nv天堂香蕉在线观看 | 一本无码人妻在中文字幕免费 | 亚洲天堂2017无码 | 一区二区三区高清视频一 | 欧美肥老太牲交大战 | 亚洲成色www久久网站 | 又大又硬又黄的免费视频 | 亚洲s色大片在线观看 | 国产高清av在线播放 | 妺妺窝人体色www在线小说 | 亚洲精品一区二区三区婷婷月 | 亚洲精品国产精品乱码不卡 | 亚洲性无码av中文字幕 | 久久综合九色综合欧美狠狠 | 娇妻被黑人粗大高潮白浆 | 国产精品久久久久久久影院 | a片在线免费观看 | 成人av无码一区二区三区 | 日日碰狠狠躁久久躁蜜桃 | 亚洲啪av永久无码精品放毛片 | 婷婷六月久久综合丁香 | 国产无套粉嫩白浆在线 | 日本精品久久久久中文字幕 | 亚洲精品国偷拍自产在线观看蜜桃 | 免费看男女做好爽好硬视频 | 国产一区二区三区精品视频 | 精品无码一区二区三区的天堂 | 国产成人午夜福利在线播放 | 亚洲 欧美 激情 小说 另类 | 亚洲va欧美va天堂v国产综合 | 精品久久久无码人妻字幂 | 成人精品一区二区三区中文字幕 | 麻豆国产97在线 | 欧洲 | 人妻少妇精品久久 | 装睡被陌生人摸出水好爽 | 国产精品无码永久免费888 | 麻豆国产人妻欲求不满 | 在线欧美精品一区二区三区 | 亚洲色无码一区二区三区 | 久久人妻内射无码一区三区 | 男女作爱免费网站 | 国产精品高潮呻吟av久久4虎 | 午夜精品一区二区三区的区别 | 婷婷综合久久中文字幕蜜桃三电影 | 欧美性色19p | 丁香啪啪综合成人亚洲 | 好爽又高潮了毛片免费下载 | 国产办公室秘书无码精品99 | 人妻有码中文字幕在线 | 欧美放荡的少妇 | 又色又爽又黄的美女裸体网站 | 国产亚洲精品久久久闺蜜 | 亚洲综合另类小说色区 | 狠狠色噜噜狠狠狠狠7777米奇 | 无码纯肉视频在线观看 | 国产又爽又猛又粗的视频a片 | 亚洲成av人在线观看网址 | 亚洲精品中文字幕 | 亚洲狠狠色丁香婷婷综合 | 丰满少妇高潮惨叫视频 | 亚洲精品成a人在线观看 | 蜜桃视频插满18在线观看 | 99国产精品白浆在线观看免费 | 国产在线一区二区三区四区五区 | 国产亚洲视频中文字幕97精品 | 麻豆精品国产精华精华液好用吗 | 黑人粗大猛烈进出高潮视频 | 人人澡人人妻人人爽人人蜜桃 | 中文字幕乱码中文乱码51精品 | 熟女俱乐部五十路六十路av | 男女猛烈xx00免费视频试看 | 久久国产自偷自偷免费一区调 | 少妇性俱乐部纵欲狂欢电影 | 亚洲国产成人a精品不卡在线 | 色婷婷欧美在线播放内射 | 粉嫩少妇内射浓精videos | 任你躁国产自任一区二区三区 | 亚洲乱码中文字幕在线 | 亚洲gv猛男gv无码男同 | 亚洲日韩av一区二区三区四区 | 国产在热线精品视频 | 国产精品毛多多水多 | 国产精品高潮呻吟av久久4虎 | 好男人www社区 | 色 综合 欧美 亚洲 国产 | 国产精品久久久久久亚洲影视内衣 | av无码电影一区二区三区 | 色综合久久中文娱乐网 | 熟女体下毛毛黑森林 | 免费看少妇作爱视频 | 蜜臀aⅴ国产精品久久久国产老师 | 欧美 日韩 人妻 高清 中文 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 色爱情人网站 | 熟妇人妻无乱码中文字幕 | 国产精品怡红院永久免费 | 国产手机在线αⅴ片无码观看 | 久久视频在线观看精品 | 国产舌乚八伦偷品w中 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产精品久久久久久久9999 | 国产精品久久久久无码av色戒 | 久久精品国产99久久6动漫 | 人人爽人人爽人人片av亚洲 | 黑人巨大精品欧美黑寡妇 | 东京无码熟妇人妻av在线网址 | 国产人妻久久精品二区三区老狼 | 久久综合给合久久狠狠狠97色 | 99久久精品国产一区二区蜜芽 | 亚洲 a v无 码免 费 成 人 a v | 国产精品毛多多水多 | 国产av人人夜夜澡人人爽麻豆 | 帮老师解开蕾丝奶罩吸乳网站 | 99久久精品国产一区二区蜜芽 | 国产成人综合美国十次 | 成 人影片 免费观看 | 日本精品人妻无码77777 天堂一区人妻无码 | 无码乱肉视频免费大全合集 | 国产精品永久免费视频 | 成人综合网亚洲伊人 | 色窝窝无码一区二区三区色欲 | 国产无遮挡又黄又爽又色 | 国产人妻大战黑人第1集 | 精品国产福利一区二区 | 国产一精品一av一免费 | 欧美激情一区二区三区成人 | 欧美丰满少妇xxxx性 | 亚洲国产日韩a在线播放 | 蜜桃视频韩日免费播放 | 99久久精品国产一区二区蜜芽 | 国产亚洲精品久久久闺蜜 | √天堂资源地址中文在线 | 夜夜躁日日躁狠狠久久av | 日韩欧美群交p片內射中文 | 丝袜人妻一区二区三区 | 亚洲国产成人a精品不卡在线 | 亚洲日韩一区二区三区 | 久激情内射婷内射蜜桃人妖 | 久久久久se色偷偷亚洲精品av | 国产卡一卡二卡三 | 夜夜高潮次次欢爽av女 | 一个人免费观看的www视频 | 网友自拍区视频精品 | 国产色精品久久人妻 | 久久综合九色综合97网 | 久久亚洲国产成人精品性色 | 欧美国产亚洲日韩在线二区 | 偷窥日本少妇撒尿chinese | 极品尤物被啪到呻吟喷水 | 99久久亚洲精品无码毛片 | av香港经典三级级 在线 | 久在线观看福利视频 | 日本一区二区更新不卡 | 性欧美牲交在线视频 | 久久国产精品二国产精品 | 中文无码伦av中文字幕 | 东京热男人av天堂 | 国产一区二区三区影院 | 夜夜夜高潮夜夜爽夜夜爰爰 | 人妻天天爽夜夜爽一区二区 | 自拍偷自拍亚洲精品被多人伦好爽 | 国产综合在线观看 | 久久久久国色av免费观看性色 | 久在线观看福利视频 | 无码午夜成人1000部免费视频 | 一区二区三区乱码在线 | 欧洲 | 久久国产精品二国产精品 | 伊人久久大香线焦av综合影院 | 无码成人精品区在线观看 | 国产成人无码一二三区视频 | 亚洲一区av无码专区在线观看 | 中文字幕av无码一区二区三区电影 | 国产成人精品三级麻豆 | 红桃av一区二区三区在线无码av | 精品久久8x国产免费观看 | 日日夜夜撸啊撸 | 蜜桃臀无码内射一区二区三区 | 蜜桃视频插满18在线观看 | 又色又爽又黄的美女裸体网站 | 国精品人妻无码一区二区三区蜜柚 | 无码纯肉视频在线观看 | 亚洲一区二区观看播放 | 国产香蕉尹人视频在线 | 成人动漫在线观看 | 国产亚洲tv在线观看 | 欧美老人巨大xxxx做受 | 国产明星裸体无码xxxx视频 | 俺去俺来也在线www色官网 | 国产精品国产三级国产专播 | 老太婆性杂交欧美肥老太 | 免费网站看v片在线18禁无码 | 国产成人无码一二三区视频 | 水蜜桃av无码 | 亚洲人亚洲人成电影网站色 | 欧美三级不卡在线观看 | 亚洲中文字幕乱码av波多ji | 兔费看少妇性l交大片免费 | 国内揄拍国内精品人妻 | 精品一区二区三区无码免费视频 | 人人妻人人澡人人爽欧美一区 | 亚洲精品中文字幕乱码 | 久久综合九色综合97网 | 扒开双腿疯狂进出爽爽爽视频 | 国产疯狂伦交大片 | 图片区 小说区 区 亚洲五月 | 久久精品国产一区二区三区肥胖 | 精品无码av一区二区三区 | 亚洲综合色区中文字幕 | 狠狠色噜噜狠狠狠狠7777米奇 | 亚洲人亚洲人成电影网站色 | 牲欲强的熟妇农村老妇女 | 天堂在线观看www | 又大又紧又粉嫩18p少妇 | 1000部夫妻午夜免费 | 免费视频欧美无人区码 | 久久久精品欧美一区二区免费 | 欧美xxxx黑人又粗又长 | 无码成人精品区在线观看 | 国产在线一区二区三区四区五区 | 国产69精品久久久久app下载 | 国产成人精品一区二区在线小狼 | 成 人 免费观看网站 | 日本熟妇乱子伦xxxx | 亚洲男女内射在线播放 | 国产舌乚八伦偷品w中 | 中文字幕+乱码+中文字幕一区 | 亚洲小说春色综合另类 | av在线亚洲欧洲日产一区二区 | 无码人妻少妇伦在线电影 | 又色又爽又黄的美女裸体网站 | 久久精品成人欧美大片 | 人妻aⅴ无码一区二区三区 | 久久久成人毛片无码 | 人妻少妇精品久久 | 亚洲精品午夜无码电影网 | 香港三级日本三级妇三级 | 欧美喷潮久久久xxxxx | a在线亚洲男人的天堂 | 欧美高清在线精品一区 | 午夜成人1000部免费视频 | 国产婷婷色一区二区三区在线 | 天海翼激烈高潮到腰振不止 | 动漫av网站免费观看 | 在教室伦流澡到高潮hnp视频 | 欧美 日韩 人妻 高清 中文 | 熟女少妇人妻中文字幕 | 国产精品对白交换视频 | 久久久久成人片免费观看蜜芽 | 亚洲成a人片在线观看日本 | 国产美女精品一区二区三区 | 日韩欧美群交p片內射中文 | 亚洲人交乣女bbw | 国产精品视频免费播放 | 亚洲成a人一区二区三区 | 国产人成高清在线视频99最全资源 | 狂野欧美性猛xxxx乱大交 | 国产手机在线αⅴ片无码观看 | 无码福利日韩神码福利片 | 未满成年国产在线观看 | 蜜桃av抽搐高潮一区二区 | 无码人妻久久一区二区三区不卡 | 77777熟女视频在线观看 а天堂中文在线官网 | 激情人妻另类人妻伦 | 久久97精品久久久久久久不卡 | 久久精品无码一区二区三区 | 久久久久久亚洲精品a片成人 | 麻豆成人精品国产免费 | 99久久人妻精品免费一区 | 国产在线无码精品电影网 | 国产高清不卡无码视频 | 伊人色综合久久天天小片 | 未满成年国产在线观看 | 久久99精品久久久久久 | 欧洲vodafone精品性 | 无码一区二区三区在线观看 | 久久精品无码一区二区三区 | 欧美国产亚洲日韩在线二区 | 大肉大捧一进一出好爽视频 | 亚洲人成无码网www | 久久久久亚洲精品男人的天堂 | 好屌草这里只有精品 | 国产亚洲精品久久久闺蜜 | 性啪啪chinese东北女人 | 色婷婷综合中文久久一本 | 日本乱偷人妻中文字幕 | 丁香啪啪综合成人亚洲 | 精品乱码久久久久久久 | 妺妺窝人体色www在线小说 | 爽爽影院免费观看 | 亚洲の无码国产の无码影院 | 精品国精品国产自在久国产87 | 色婷婷综合中文久久一本 | 巨爆乳无码视频在线观看 | 国产三级精品三级男人的天堂 | 久久精品人妻少妇一区二区三区 | 老司机亚洲精品影院无码 | 亚洲成在人网站无码天堂 | 国内揄拍国内精品少妇国语 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 伊在人天堂亚洲香蕉精品区 | 久久精品成人欧美大片 | 久久天天躁夜夜躁狠狠 | 人妻有码中文字幕在线 | 疯狂三人交性欧美 | 亚洲欧美国产精品久久 | 人妻尝试又大又粗久久 | 高潮喷水的毛片 | 国精产品一品二品国精品69xx | 精品少妇爆乳无码av无码专区 | 国产精品亚洲一区二区三区喷水 | 国产亚洲人成在线播放 | 亚洲人成网站免费播放 | 国产麻豆精品精东影业av网站 | 波多野结衣av在线观看 | 亚洲经典千人经典日产 | 波多野结衣av在线观看 | 国产偷抇久久精品a片69 | 国产性生大片免费观看性 | 国产人成高清在线视频99最全资源 | 亚洲午夜久久久影院 | 亚洲大尺度无码无码专区 | 日日噜噜噜噜夜夜爽亚洲精品 | 荫蒂添的好舒服视频囗交 | 98国产精品综合一区二区三区 | 欧洲vodafone精品性 | 日本一本二本三区免费 | 国产午夜手机精彩视频 | 亚洲第一网站男人都懂 | 国产成人综合色在线观看网站 | 麻豆人妻少妇精品无码专区 | 欧美人与物videos另类 | 青青久在线视频免费观看 | 国产精品国产自线拍免费软件 | 久久99久久99精品中文字幕 | 亚洲中文字幕无码一久久区 | 国产成人人人97超碰超爽8 | 97se亚洲精品一区 | 国产日产欧产精品精品app | 欧美乱妇无乱码大黄a片 | 国产精品久久久av久久久 | 欧美猛少妇色xxxxx | 又大又硬又黄的免费视频 | 日本又色又爽又黄的a片18禁 | 99久久精品日本一区二区免费 | www一区二区www免费 | 国产人妻人伦精品1国产丝袜 | 日日天日日夜日日摸 | 国产精品久久久久影院嫩草 | 一本色道久久综合亚洲精品不卡 | 亚洲爆乳无码专区 | 1000部夫妻午夜免费 | 国产农村妇女高潮大叫 | 亚洲成av人在线观看网址 | 欧美一区二区三区视频在线观看 | 国产午夜福利100集发布 | 欧美兽交xxxx×视频 | 人妻夜夜爽天天爽三区 | 青青青爽视频在线观看 | 久久天天躁夜夜躁狠狠 | 亚洲狠狠色丁香婷婷综合 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 人妻尝试又大又粗久久 | 又紧又大又爽精品一区二区 | 中文字幕av无码一区二区三区电影 | 午夜成人1000部免费视频 | 鲁鲁鲁爽爽爽在线视频观看 | 蜜桃视频插满18在线观看 | 天堂а√在线中文在线 | 99久久精品国产一区二区蜜芽 | 国产人妻久久精品二区三区老狼 | 亚洲精品国偷拍自产在线观看蜜桃 | 麻豆国产丝袜白领秘书在线观看 | 亚洲精品www久久久 | 牲欲强的熟妇农村老妇女 | 国产午夜无码精品免费看 | 久久精品国产99精品亚洲 | 大肉大捧一进一出视频出来呀 | 久久人人爽人人爽人人片ⅴ | 欧美野外疯狂做受xxxx高潮 | 大肉大捧一进一出好爽视频 | 国产精品嫩草久久久久 | 4hu四虎永久在线观看 | 亚洲一区二区三区偷拍女厕 | 国内综合精品午夜久久资源 | 亚洲精品国偷拍自产在线观看蜜桃 | 午夜精品久久久久久久 | 一本久久a久久精品vr综合 | 国产成人亚洲综合无码 | 又湿又紧又大又爽a视频国产 | 国产舌乚八伦偷品w中 | 亚洲中文字幕无码中字 | 99riav国产精品视频 | 亚洲 欧美 激情 小说 另类 | 亚洲日本va中文字幕 | 亚洲中文无码av永久不收费 | 亚洲码国产精品高潮在线 | 亚洲の无码国产の无码步美 | 黑人巨大精品欧美黑寡妇 | 亲嘴扒胸摸屁股激烈网站 | 日韩欧美中文字幕在线三区 | 久久99精品久久久久久动态图 | 成人一区二区免费视频 | √8天堂资源地址中文在线 | 国内精品一区二区三区不卡 | 国产香蕉尹人综合在线观看 | 日韩精品无码一本二本三本色 | 国产一区二区三区影院 | 国产香蕉尹人视频在线 | 精品欧美一区二区三区久久久 | 无码午夜成人1000部免费视频 | 18黄暴禁片在线观看 | 国产特级毛片aaaaaa高潮流水 | 成人一在线视频日韩国产 | 男女超爽视频免费播放 | 少妇无码一区二区二三区 | 国产成人精品优优av | 精品乱子伦一区二区三区 | 天堂亚洲免费视频 | 亲嘴扒胸摸屁股激烈网站 | 色噜噜亚洲男人的天堂 | 精品国产一区二区三区av 性色 | 麻豆国产人妻欲求不满谁演的 | 国模大胆一区二区三区 | 久久精品国产99精品亚洲 | 国产精品久久久久久久影院 | 丰满少妇人妻久久久久久 | 波多野结衣一区二区三区av免费 | 大肉大捧一进一出视频出来呀 | 午夜精品久久久内射近拍高清 | 永久免费观看国产裸体美女 | 影音先锋中文字幕无码 | 国产欧美精品一区二区三区 | 精品人妻人人做人人爽夜夜爽 | 久久精品成人欧美大片 | 国产亚av手机在线观看 | 精品欧美一区二区三区久久久 | 国产做国产爱免费视频 | 黑人玩弄人妻中文在线 | 国产又爽又黄又刺激的视频 | 亚洲人成网站在线播放942 | 在线a亚洲视频播放在线观看 | 国产午夜无码视频在线观看 | 性色av无码免费一区二区三区 | 青草视频在线播放 | 国产免费无码一区二区视频 | 亚洲成a人片在线观看无码 | 婷婷丁香六月激情综合啪 | 欧美性生交xxxxx久久久 | 日韩精品乱码av一区二区 | 国产精品无码mv在线观看 | 亚洲娇小与黑人巨大交 | 亚洲成av人在线观看网址 | 国产成人综合色在线观看网站 | 久久午夜夜伦鲁鲁片无码免费 | 图片小说视频一区二区 | 在线播放免费人成毛片乱码 | 日本一区二区更新不卡 | 亚洲精品一区二区三区四区五区 | 国产在线精品一区二区高清不卡 | 精品久久久久久人妻无码中文字幕 | 日日麻批免费40分钟无码 | 在线视频网站www色 | 国语自产偷拍精品视频偷 | 18黄暴禁片在线观看 | 久久精品无码一区二区三区 | 亚洲大尺度无码无码专区 | 亚洲日韩av一区二区三区四区 | 久久午夜夜伦鲁鲁片无码免费 | 男女作爱免费网站 | 两性色午夜视频免费播放 | 红桃av一区二区三区在线无码av | 亚洲一区二区三区在线观看网站 | 好爽又高潮了毛片免费下载 | 波多野结衣乳巨码无在线观看 | av无码久久久久不卡免费网站 | 精品亚洲韩国一区二区三区 | 日本成熟视频免费视频 | 强奷人妻日本中文字幕 | 亚洲欧洲中文日韩av乱码 | 亚洲一区二区三区 | 无遮无挡爽爽免费视频 | 99久久亚洲精品无码毛片 | 67194成是人免费无码 | 国产黑色丝袜在线播放 | 在线观看欧美一区二区三区 | av无码久久久久不卡免费网站 | 国产精品怡红院永久免费 | 一本色道久久综合狠狠躁 | 国产精品美女久久久 | 999久久久国产精品消防器材 | 性开放的女人aaa片 | 久久精品视频在线看15 | 88国产精品欧美一区二区三区 | 久久精品国产精品国产精品污 | 精品aⅴ一区二区三区 | 国精产品一区二区三区 | 国产又爽又黄又刺激的视频 | 亚洲精品欧美二区三区中文字幕 | 精品亚洲韩国一区二区三区 | 中文字幕乱妇无码av在线 | 97夜夜澡人人爽人人喊中国片 | 国产无遮挡又黄又爽免费视频 | 国产亚洲精品久久久久久大师 | 亚洲精品中文字幕久久久久 | 欧美日韩综合一区二区三区 | 精品偷自拍另类在线观看 | 成人无码精品1区2区3区免费看 | 国产av无码专区亚洲awww | 天天做天天爱天天爽综合网 | 又粗又大又硬又长又爽 | 国产高清不卡无码视频 | 国产精品无码一区二区三区不卡 | 在线视频网站www色 | 性做久久久久久久久 | 免费网站看v片在线18禁无码 | 亚洲成a人片在线观看无码 | 日韩少妇白浆无码系列 | 亚洲中文字幕成人无码 | 国产疯狂伦交大片 | 国产午夜福利100集发布 | 亚洲精品久久久久avwww潮水 | 天堂在线观看www | 久久久婷婷五月亚洲97号色 | 国产亚洲日韩欧美另类第八页 | 中文字幕乱码亚洲无线三区 | 日日碰狠狠丁香久燥 | 欧美色就是色 | 亚洲一区二区三区国产精华液 | 国产suv精品一区二区五 | 亚洲精品国偷拍自产在线麻豆 | 国产精品无码永久免费888 | 国产一区二区三区精品视频 | 老子影院午夜伦不卡 | 日韩视频 中文字幕 视频一区 | 欧美自拍另类欧美综合图片区 | 亚洲色在线无码国产精品不卡 | 熟女俱乐部五十路六十路av | 黑人粗大猛烈进出高潮视频 | 天天摸天天透天天添 | 少妇性荡欲午夜性开放视频剧场 | 中文字幕无线码免费人妻 | 精品国产一区av天美传媒 | 性欧美熟妇videofreesex | 97人妻精品一区二区三区 | 亚洲码国产精品高潮在线 | 天天做天天爱天天爽综合网 | 亚洲一区二区三区国产精华液 | 亚洲成a人一区二区三区 | 日本熟妇乱子伦xxxx | 日本精品少妇一区二区三区 | 免费观看激色视频网站 | 国产精品亚洲五月天高清 | 色婷婷久久一区二区三区麻豆 | 少妇人妻偷人精品无码视频 | 荫蒂添的好舒服视频囗交 | 1000部啪啪未满十八勿入下载 | 精品国产一区二区三区四区在线看 | 女高中生第一次破苞av | 天天综合网天天综合色 | 成人试看120秒体验区 | 亚洲成a人片在线观看无码3d | 一本久久a久久精品vr综合 | 夜先锋av资源网站 | 人妻尝试又大又粗久久 | v一区无码内射国产 | www国产亚洲精品久久久日本 | 全球成人中文在线 | 中文字幕av无码一区二区三区电影 | 精品偷自拍另类在线观看 | 四虎影视成人永久免费观看视频 | 久久精品成人欧美大片 | 老太婆性杂交欧美肥老太 | 女人被爽到呻吟gif动态图视看 | 亚洲熟妇色xxxxx欧美老妇y | 国产又爽又黄又刺激的视频 | 久久这里只有精品视频9 | 又湿又紧又大又爽a视频国产 | 亚洲国产高清在线观看视频 | 亚洲国产综合无码一区 | 疯狂三人交性欧美 | 老子影院午夜精品无码 | 99久久精品国产一区二区蜜芽 | 久精品国产欧美亚洲色aⅴ大片 | 大乳丰满人妻中文字幕日本 | 国产精品毛多多水多 | 国产亚洲精品久久久久久大师 | 亚洲а∨天堂久久精品2021 | 人人爽人人爽人人片av亚洲 | 亚洲欧美中文字幕5发布 | 亚洲精品午夜无码电影网 | 日韩精品久久久肉伦网站 | 久久精品国产大片免费观看 | 久久久久久av无码免费看大片 | 特大黑人娇小亚洲女 | 国产精品久久久午夜夜伦鲁鲁 | 久久久www成人免费毛片 | 日欧一片内射va在线影院 | 亚洲欧洲中文日韩av乱码 | 鲁大师影院在线观看 | 波多野结衣av在线观看 | 人妻人人添人妻人人爱 | 久久天天躁狠狠躁夜夜免费观看 | 亚洲国产精品一区二区美利坚 | 色欲久久久天天天综合网精品 | √天堂资源地址中文在线 | 天堂久久天堂av色综合 | 东北女人啪啪对白 | 欧美老妇交乱视频在线观看 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 亚洲精品成人福利网站 | 牲欲强的熟妇农村老妇女视频 | 亚洲码国产精品高潮在线 | 女人和拘做爰正片视频 | 国产激情无码一区二区app | 97精品人妻一区二区三区香蕉 | 免费播放一区二区三区 | 亚洲精品午夜国产va久久成人 | 51国偷自产一区二区三区 | 色 综合 欧美 亚洲 国产 | 亚洲国产成人av在线观看 | 香蕉久久久久久av成人 | 欧美精品免费观看二区 | 沈阳熟女露脸对白视频 | 亚洲人成影院在线观看 | 激情内射日本一区二区三区 | 午夜无码人妻av大片色欲 | 99久久久国产精品无码免费 | 久久99精品国产麻豆 | 亚洲国产成人av在线观看 | 国产乱人伦偷精品视频 | 亚洲一区二区三区香蕉 | 久久精品女人的天堂av | 国产疯狂伦交大片 | 中国女人内谢69xxxx | 少妇人妻大乳在线视频 | 成人一在线视频日韩国产 | 日本一区二区三区免费播放 | 欧洲熟妇精品视频 | 国产色视频一区二区三区 | 欧美阿v高清资源不卡在线播放 | 在线精品国产一区二区三区 | 亚洲熟熟妇xxxx | 国产精品丝袜黑色高跟鞋 | 日韩少妇内射免费播放 | 三上悠亚人妻中文字幕在线 | 亚洲欧洲日本综合aⅴ在线 | 天堂亚洲2017在线观看 | 欧美猛少妇色xxxxx | 亚洲春色在线视频 | 麻豆人妻少妇精品无码专区 | 未满小14洗澡无码视频网站 | 无码免费一区二区三区 | 亚洲一区二区观看播放 | www成人国产高清内射 | 中文字幕无码免费久久99 | 天天拍夜夜添久久精品大 | 国产免费观看黄av片 | 欧美人与禽猛交狂配 | 波多野结衣av在线观看 | 国产手机在线αⅴ片无码观看 | 日韩少妇内射免费播放 | 亚洲中文字幕久久无码 | 亚洲国产成人a精品不卡在线 | 国产精品久久久久久无码 | 人妻无码αv中文字幕久久琪琪布 | 99国产欧美久久久精品 | 人妻少妇精品无码专区二区 | 1000部夫妻午夜免费 | 纯爱无遮挡h肉动漫在线播放 | 国产精品久久久久久亚洲毛片 | 欧美日韩久久久精品a片 | 亚洲乱码日产精品bd | 中文字幕人妻无码一区二区三区 | 国产亚洲精品久久久久久大师 | aa片在线观看视频在线播放 | 国产成人精品视频ⅴa片软件竹菊 | 日本爽爽爽爽爽爽在线观看免 | 国产莉萝无码av在线播放 | 搡女人真爽免费视频大全 | 日韩在线不卡免费视频一区 | 中文字幕 人妻熟女 | 久久精品国产日本波多野结衣 | 女人和拘做爰正片视频 | 色综合久久中文娱乐网 | 性色欲情网站iwww九文堂 | 国产乱子伦视频在线播放 | 精品国产一区二区三区av 性色 | 强开小婷嫩苞又嫩又紧视频 | 日本丰满护士爆乳xxxx | 999久久久国产精品消防器材 | 久久天天躁狠狠躁夜夜免费观看 | 狠狠亚洲超碰狼人久久 | 青春草在线视频免费观看 | 国产精品久久久久无码av色戒 | 成人av无码一区二区三区 | 人妻少妇精品无码专区二区 | 99久久婷婷国产综合精品青草免费 | 在线a亚洲视频播放在线观看 | 亚洲最大成人网站 | 日韩精品乱码av一区二区 | 狠狠色丁香久久婷婷综合五月 | 欧美精品国产综合久久 | 精品国偷自产在线视频 | 亚洲s码欧洲m码国产av | 高清无码午夜福利视频 | 男女爱爱好爽视频免费看 | 久久精品国产一区二区三区 | 领导边摸边吃奶边做爽在线观看 | 又大又黄又粗又爽的免费视频 | 国产av一区二区精品久久凹凸 | 亚洲精品一区二区三区婷婷月 | 日本高清一区免费中文视频 | 高潮喷水的毛片 | 亚洲一区二区三区偷拍女厕 | 大色综合色综合网站 | 少妇性l交大片欧洲热妇乱xxx | 国产美女极度色诱视频www | 国产精品高潮呻吟av久久4虎 | 成人精品视频一区二区 | 亚洲啪av永久无码精品放毛片 | 亚洲精品综合五月久久小说 | 红桃av一区二区三区在线无码av | 色欲av亚洲一区无码少妇 | 亚洲国产欧美日韩精品一区二区三区 | 久久亚洲日韩精品一区二区三区 | 久久视频在线观看精品 | 少妇无码一区二区二三区 | 亚洲s码欧洲m码国产av | 18精品久久久无码午夜福利 | 国产真实乱对白精彩久久 | 久久久久人妻一区精品色欧美 | 成人精品一区二区三区中文字幕 | 亚洲色大成网站www国产 | 午夜精品久久久内射近拍高清 | 97无码免费人妻超级碰碰夜夜 | 中文字幕 人妻熟女 | 亚洲日韩一区二区三区 | 日产精品高潮呻吟av久久 | 国产日产欧产精品精品app | 色欲久久久天天天综合网精品 | 国产精品久久久久久亚洲毛片 | 国产亚洲欧美日韩亚洲中文色 | 精品一区二区三区波多野结衣 | 波多野结衣av一区二区全免费观看 | 亚洲乱码日产精品bd | 给我免费的视频在线观看 | 久久久中文久久久无码 | 久久亚洲a片com人成 | 夜夜高潮次次欢爽av女 | 色欲av亚洲一区无码少妇 | 国产福利视频一区二区 | 久久精品人妻少妇一区二区三区 | 狠狠cao日日穞夜夜穞av | 亚洲理论电影在线观看 | 色偷偷人人澡人人爽人人模 | 欧美日韩一区二区综合 | 日韩精品无码免费一区二区三区 | 精品少妇爆乳无码av无码专区 | 午夜福利不卡在线视频 | 无码人妻av免费一区二区三区 | 人妻aⅴ无码一区二区三区 | 一本色道久久综合狠狠躁 | 青青久在线视频免费观看 | 人人妻人人澡人人爽欧美一区 | 国产免费无码一区二区视频 | 中国大陆精品视频xxxx | 特黄特色大片免费播放器图片 | 国产精品久久久午夜夜伦鲁鲁 | 成人aaa片一区国产精品 | 国产精品18久久久久久麻辣 | 激情国产av做激情国产爱 | 一二三四社区在线中文视频 | 久久亚洲精品成人无码 | 一本色道久久综合狠狠躁 | 精品亚洲成av人在线观看 | 日韩av无码中文无码电影 | 婷婷综合久久中文字幕蜜桃三电影 | 国产成人无码av片在线观看不卡 | 2019nv天堂香蕉在线观看 | 国产精品久久久久久久影院 | 亚洲欧美日韩综合久久久 | 熟女体下毛毛黑森林 | 草草网站影院白丝内射 | 日本大乳高潮视频在线观看 | 久久人人爽人人爽人人片av高清 | 国产精品无码一区二区三区不卡 | 天天爽夜夜爽夜夜爽 | 日韩av无码中文无码电影 | 色婷婷综合中文久久一本 | 国产熟妇另类久久久久 | 日本www一道久久久免费榴莲 | 国产欧美亚洲精品a | 国产农村妇女高潮大叫 | 伊人久久婷婷五月综合97色 | 亚洲国产一区二区三区在线观看 | 永久免费观看美女裸体的网站 | aa片在线观看视频在线播放 | 国产午夜无码视频在线观看 | 午夜精品一区二区三区的区别 | 一本色道婷婷久久欧美 | 中国女人内谢69xxxx | 图片区 小说区 区 亚洲五月 | 免费无码av一区二区 | 性色欲网站人妻丰满中文久久不卡 | 好爽又高潮了毛片免费下载 | 国产亚洲精品精品国产亚洲综合 | 人人爽人人澡人人高潮 | 欧美人与善在线com | 亚洲综合另类小说色区 | 久久久久久国产精品无码下载 | 色一情一乱一伦一区二区三欧美 | 一区二区三区乱码在线 | 欧洲 | 成年女人永久免费看片 | 亚洲娇小与黑人巨大交 | 丰满少妇女裸体bbw | 日韩欧美群交p片內射中文 | 国产人妻久久精品二区三区老狼 | 久久久精品成人免费观看 | ass日本丰满熟妇pics | 激情爆乳一区二区三区 | 亚洲精品国产a久久久久久 | 2020久久香蕉国产线看观看 | 亚洲啪av永久无码精品放毛片 | 欧美日韩一区二区免费视频 | 国产九九九九九九九a片 | 水蜜桃av无码 | 爆乳一区二区三区无码 | 婷婷丁香六月激情综合啪 | 久久久国产精品无码免费专区 | 欧美性黑人极品hd | 香港三级日本三级妇三级 | 国产精品第一国产精品 | 欧美色就是色 | 亚洲乱码国产乱码精品精 | 国产电影无码午夜在线播放 | 久久aⅴ免费观看 | 国产超级va在线观看视频 | 中文字幕+乱码+中文字幕一区 | 久久久久久久人妻无码中文字幕爆 | 中文字幕人妻无码一区二区三区 | 欧美老熟妇乱xxxxx | 无码一区二区三区在线观看 | 高清无码午夜福利视频 | aa片在线观看视频在线播放 | 亚洲a无码综合a国产av中文 | 日韩无套无码精品 | 亚洲欧美国产精品专区久久 | 精品久久8x国产免费观看 | 亚洲熟女一区二区三区 | 美女极度色诱视频国产 | 天天拍夜夜添久久精品 | 国产热a欧美热a在线视频 | 国产精品久久久久久久影院 | 欧美自拍另类欧美综合图片区 | 国产综合久久久久鬼色 | 7777奇米四色成人眼影 | yw尤物av无码国产在线观看 | 日本精品人妻无码免费大全 | 99精品国产综合久久久久五月天 | 亚洲色欲色欲欲www在线 | 麻豆国产人妻欲求不满 | 国内丰满熟女出轨videos | 曰韩少妇内射免费播放 | 成人精品天堂一区二区三区 | 日韩欧美中文字幕在线三区 | 精品一区二区三区无码免费视频 | 久久午夜无码鲁丝片午夜精品 | 亚洲国产精品久久人人爱 | 亚洲gv猛男gv无码男同 | 97夜夜澡人人双人人人喊 | 97久久国产亚洲精品超碰热 | 国产美女极度色诱视频www | 国产真人无遮挡作爱免费视频 | 久久综合九色综合欧美狠狠 | 国产免费观看黄av片 | 免费观看黄网站 | 18精品久久久无码午夜福利 | 少妇被粗大的猛进出69影院 | 久久午夜无码鲁丝片午夜精品 | 国内老熟妇对白xxxxhd | 成人女人看片免费视频放人 | 亚洲精品无码人妻无码 | 国产免费观看黄av片 | 精品国产国产综合精品 | 中文字幕无码av波多野吉衣 | 成人毛片一区二区 | 一个人看的视频www在线 | 亚洲自偷自拍另类第1页 | 欧美人与物videos另类 | 成年美女黄网站色大免费全看 | 国产精品亚洲专区无码不卡 | 成人免费视频视频在线观看 免费 | 亚洲一区二区观看播放 | 久9re热视频这里只有精品 | 日韩欧美成人免费观看 | 亚洲s色大片在线观看 | 扒开双腿疯狂进出爽爽爽视频 | 疯狂三人交性欧美 | 久久综合狠狠综合久久综合88 | 伊人久久大香线焦av综合影院 | 亚洲乱码国产乱码精品精 | 久久97精品久久久久久久不卡 | 中文字幕无码免费久久9一区9 | 日日碰狠狠躁久久躁蜜桃 | 国产在线精品一区二区三区直播 | 波多野结衣乳巨码无在线观看 | 天天躁日日躁狠狠躁免费麻豆 | 国产综合久久久久鬼色 | 国产国语老龄妇女a片 | 国产亚洲精品精品国产亚洲综合 | 自拍偷自拍亚洲精品10p | 色偷偷人人澡人人爽人人模 | 国产在热线精品视频 | 一本久道久久综合狠狠爱 | 三上悠亚人妻中文字幕在线 | 西西人体www44rt大胆高清 | 精品乱子伦一区二区三区 | 99视频精品全部免费免费观看 | 久久久无码中文字幕久... | 久精品国产欧美亚洲色aⅴ大片 | 国产乱人伦av在线无码 | 国产精品久久久久久久影院 | 欧美一区二区三区 | 亚洲成a人一区二区三区 | 精品国精品国产自在久国产87 | 国产一区二区不卡老阿姨 | 免费视频欧美无人区码 | 国产乡下妇女做爰 | 全球成人中文在线 | 牲欲强的熟妇农村老妇女 | 人人爽人人澡人人人妻 | 日韩少妇白浆无码系列 | 最新版天堂资源中文官网 | 国产日产欧产精品精品app | 一个人看的视频www在线 | 国产成人久久精品流白浆 | 成人精品视频一区二区三区尤物 | 亚洲伊人久久精品影院 | 久久这里只有精品视频9 | 婷婷丁香六月激情综合啪 | 亚洲热妇无码av在线播放 | 色情久久久av熟女人妻网站 | 欧美日韩久久久精品a片 | 亚洲狠狠色丁香婷婷综合 | 亚洲精品国偷拍自产在线麻豆 | 亚洲国产成人a精品不卡在线 | ass日本丰满熟妇pics | 2020最新国产自产精品 | 人人妻人人澡人人爽欧美一区 | 国产片av国语在线观看 | 亚洲国产av精品一区二区蜜芽 | 曰韩少妇内射免费播放 | 九月婷婷人人澡人人添人人爽 | 亚洲小说春色综合另类 | 97资源共享在线视频 | 欧美国产亚洲日韩在线二区 | 人人爽人人爽人人片av亚洲 | 在线欧美精品一区二区三区 | a片免费视频在线观看 | 成年美女黄网站色大免费全看 | 欧美兽交xxxx×视频 | 黑人巨大精品欧美一区二区 | 亚洲中文无码av永久不收费 | 亚洲精品一区二区三区婷婷月 | 人人爽人人澡人人高潮 | 日韩精品无码免费一区二区三区 | 夜精品a片一区二区三区无码白浆 | 在线成人www免费观看视频 | 亚洲无人区午夜福利码高清完整版 | 99久久久无码国产aaa精品 | 高清国产亚洲精品自在久久 | 中文无码成人免费视频在线观看 | 久久 国产 尿 小便 嘘嘘 | 人妻人人添人妻人人爱 | 精品人妻中文字幕有码在线 | 久久国产精品偷任你爽任你 | 亚洲精品一区二区三区四区五区 | 亚洲精品中文字幕久久久久 | 在线a亚洲视频播放在线观看 | 无套内谢老熟女 | 日产国产精品亚洲系列 | 欧美国产日韩亚洲中文 | 国产乱子伦视频在线播放 | 免费无码av一区二区 | 清纯唯美经典一区二区 | 欧洲精品码一区二区三区免费看 | 国产免费久久久久久无码 | 国产成人午夜福利在线播放 | 无码免费一区二区三区 | 少妇人妻偷人精品无码视频 | 色偷偷人人澡人人爽人人模 | 少妇高潮喷潮久久久影院 | 桃花色综合影院 | 亚洲精品国产第一综合99久久 | 亚洲色欲色欲天天天www | 人妻无码αv中文字幕久久琪琪布 | 亚洲日本va午夜在线电影 | 亚洲成在人网站无码天堂 | 无码av岛国片在线播放 | 亚洲爆乳精品无码一区二区三区 | 狂野欧美性猛xxxx乱大交 | 国产精品沙发午睡系列 | 丰腴饱满的极品熟妇 | 在线观看国产一区二区三区 | 97夜夜澡人人爽人人喊中国片 | 亚洲色大成网站www国产 | 亚洲国产欧美日韩精品一区二区三区 | 日本精品人妻无码77777 天堂一区人妻无码 | 国产人妻大战黑人第1集 | 国产精品久久国产三级国 | 国产绳艺sm调教室论坛 | 熟女少妇人妻中文字幕 | 欧美日韩色另类综合 | 国产人妻精品午夜福利免费 | 欧美肥老太牲交大战 | 亚洲a无码综合a国产av中文 | 亚洲另类伦春色综合小说 | 天堂亚洲免费视频 | 精品一区二区不卡无码av | 国产人妻久久精品二区三区老狼 | 伊在人天堂亚洲香蕉精品区 | 亚洲中文字幕乱码av波多ji | 欧美一区二区三区视频在线观看 | 激情内射日本一区二区三区 | 日本大乳高潮视频在线观看 | 人人澡人摸人人添 | 久久人人97超碰a片精品 | 国产精品a成v人在线播放 | 中文久久乱码一区二区 | 两性色午夜免费视频 | 国产两女互慰高潮视频在线观看 | 国产成人精品一区二区在线小狼 | 欧美精品国产综合久久 | 久久久婷婷五月亚洲97号色 | 熟女少妇在线视频播放 | 日韩人妻系列无码专区 | 欧美野外疯狂做受xxxx高潮 | 麻豆国产人妻欲求不满谁演的 | 精品久久8x国产免费观看 | 婷婷色婷婷开心五月四房播播 | 捆绑白丝粉色jk震动捧喷白浆 | 女人色极品影院 | 六月丁香婷婷色狠狠久久 | 国产精品美女久久久久av爽李琼 | 亚洲欧洲无卡二区视頻 | 欧美老人巨大xxxx做受 | 国产精品久久久久久无码 | 人人妻人人藻人人爽欧美一区 | 日本熟妇大屁股人妻 | 一本久道高清无码视频 | 亚洲va欧美va天堂v国产综合 | 丰满少妇高潮惨叫视频 | 亚洲成av人综合在线观看 | 亚洲天堂2017无码 | 鲁鲁鲁爽爽爽在线视频观看 | 国产精品va在线播放 | 成人精品视频一区二区 | 青草青草久热国产精品 | 国产成人精品一区二区在线小狼 | 日韩精品无码免费一区二区三区 | 亚洲精品国偷拍自产在线麻豆 | 欧美喷潮久久久xxxxx | 国产午夜福利100集发布 | 亚洲国产一区二区三区在线观看 | 激情五月综合色婷婷一区二区 | 国产精品第一国产精品 | 四十如虎的丰满熟妇啪啪 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 国产精品久久国产三级国 | 无码福利日韩神码福利片 | 亚洲综合在线一区二区三区 | 日韩av无码一区二区三区不卡 | 国产亚洲精品久久久ai换 | 精品成在人线av无码免费看 | 欧美人妻一区二区三区 | 亚洲欧美国产精品专区久久 | 欧洲熟妇色 欧美 | 亚洲国产av精品一区二区蜜芽 | 久久久av男人的天堂 | 国产性生交xxxxx无码 | 国产成人无码午夜视频在线观看 | 人妻少妇精品无码专区二区 | 丰满少妇熟乱xxxxx视频 | 高潮毛片无遮挡高清免费 | 人人妻人人澡人人爽欧美精品 | 日本熟妇大屁股人妻 | 久久午夜夜伦鲁鲁片无码免费 | 精品国产麻豆免费人成网站 | 99久久久无码国产精品免费 | 久久99精品久久久久久 | 成人精品视频一区二区三区尤物 | 国产av一区二区三区最新精品 | 精品久久久久久亚洲精品 | 久久精品国产亚洲精品 | 熟妇女人妻丰满少妇中文字幕 | 中文字幕人妻丝袜二区 | 国产国语老龄妇女a片 | 国产精品久免费的黄网站 | 久久亚洲精品成人无码 | 成人无码影片精品久久久 | 天堂一区人妻无码 | 亚洲色欲色欲欲www在线 | 久青草影院在线观看国产 | 国产精品香蕉在线观看 | 激情五月综合色婷婷一区二区 | 鲁大师影院在线观看 | 国产片av国语在线观看 | 日本欧美一区二区三区乱码 | 亚洲一区二区三区含羞草 | 波多野结衣乳巨码无在线观看 | 久久久国产一区二区三区 | 蜜桃视频韩日免费播放 | 欧美 日韩 亚洲 在线 | 久久精品成人欧美大片 | 3d动漫精品啪啪一区二区中 | 大地资源网第二页免费观看 | 日韩欧美中文字幕在线三区 | 又紧又大又爽精品一区二区 | 桃花色综合影院 | 性做久久久久久久免费看 | 网友自拍区视频精品 | 帮老师解开蕾丝奶罩吸乳网站 | 国产精品福利视频导航 | 国产精品久久久久7777 | 77777熟女视频在线观看 а天堂中文在线官网 | 日本一区二区三区免费高清 | 国产精品美女久久久久av爽李琼 | 俄罗斯老熟妇色xxxx | 人人妻人人澡人人爽欧美精品 | 大色综合色综合网站 | 樱花草在线播放免费中文 | 红桃av一区二区三区在线无码av | 亚洲中文字幕va福利 | 国产亚洲精品久久久久久 | 亚洲高清偷拍一区二区三区 | 蜜臀aⅴ国产精品久久久国产老师 | 狠狠噜狠狠狠狠丁香五月 | 伊人久久大香线蕉亚洲 | 亚洲国产精品无码一区二区三区 | 国产特级毛片aaaaaaa高清 | 亚洲中文字幕av在天堂 | 婷婷丁香五月天综合东京热 | 亚洲精品一区二区三区在线 | 亚洲精品美女久久久久久久 | 无码人中文字幕 | 狠狠cao日日穞夜夜穞av | 帮老师解开蕾丝奶罩吸乳网站 | 熟女体下毛毛黑森林 | 午夜福利不卡在线视频 | 清纯唯美经典一区二区 | a在线观看免费网站大全 | 亚洲人成人无码网www国产 | 欧美 日韩 亚洲 在线 | 99视频精品全部免费免费观看 | 国产精品久久久久久无码 | 亚洲日韩av一区二区三区四区 | aa片在线观看视频在线播放 | 国产精品久久久久久久影院 | 国精产品一品二品国精品69xx | 欧美 亚洲 国产 另类 | 国产区女主播在线观看 | 久久人人97超碰a片精品 | 亚洲精品成人av在线 | 131美女爱做视频 | 色婷婷香蕉在线一区二区 | 亚洲精品国产精品乱码视色 | √8天堂资源地址中文在线 | 欧美人妻一区二区三区 | 国内精品人妻无码久久久影院蜜桃 | 人人妻人人澡人人爽人人精品 | 在教室伦流澡到高潮hnp视频 | 小鲜肉自慰网站xnxx | 丰满少妇熟乱xxxxx视频 | 亚洲精品国产第一综合99久久 | 成熟人妻av无码专区 | 丁香啪啪综合成人亚洲 | 欧美 丝袜 自拍 制服 另类 | 国产国语老龄妇女a片 | 中文字幕无码免费久久99 | 色婷婷欧美在线播放内射 | 亚洲日韩乱码中文无码蜜桃臀网站 | 色综合视频一区二区三区 | 国产精品爱久久久久久久 | 亚洲成在人网站无码天堂 | 欧美三级不卡在线观看 | 国产激情综合五月久久 | 女人被男人爽到呻吟的视频 | 天堂а√在线地址中文在线 | 4hu四虎永久在线观看 | 午夜时刻免费入口 | 亚洲国产精品一区二区美利坚 | 美女毛片一区二区三区四区 | 亚洲中文字幕乱码av波多ji | 女人被男人爽到呻吟的视频 | 亚洲人成影院在线观看 | 国产成人久久精品流白浆 | 无码人妻精品一区二区三区下载 | 强伦人妻一区二区三区视频18 | 欧美成人高清在线播放 | 丝袜美腿亚洲一区二区 | 18精品久久久无码午夜福利 | 又大又硬又爽免费视频 | 一区二区三区高清视频一 | 粗大的内捧猛烈进出视频 | 国产成人综合美国十次 | 无码人中文字幕 | 亚洲热妇无码av在线播放 | 中文字幕人妻无码一区二区三区 | 亚洲色在线无码国产精品不卡 | 麻豆果冻传媒2021精品传媒一区下载 | 97久久国产亚洲精品超碰热 | a国产一区二区免费入口 | 国产精品久久久久7777 | 精品国产国产综合精品 | 日韩欧美群交p片內射中文 | 久久精品中文闷骚内射 | 国产麻豆精品一区二区三区v视界 | 亚洲人成无码网www | 人人妻人人藻人人爽欧美一区 | 欧美35页视频在线观看 | 青青久在线视频免费观看 | 熟妇人妻无码xxx视频 | 国产极品视觉盛宴 | 国产亚洲美女精品久久久2020 | 婷婷五月综合缴情在线视频 | 激情人妻另类人妻伦 | 国产无遮挡吃胸膜奶免费看 | 久久久久成人片免费观看蜜芽 | 玩弄人妻少妇500系列视频 | 又大又黄又粗又爽的免费视频 | 欧美日韩亚洲国产精品 | 久久久av男人的天堂 | 精品无人区无码乱码毛片国产 | 国产精品久久精品三级 | 疯狂三人交性欧美 | 在线 国产 欧美 亚洲 天堂 | 曰韩无码二三区中文字幕 | www国产亚洲精品久久网站 | 午夜福利一区二区三区在线观看 | 欧洲精品码一区二区三区免费看 | 亚洲s码欧洲m码国产av | 日日噜噜噜噜夜夜爽亚洲精品 | 巨爆乳无码视频在线观看 | 丰满少妇高潮惨叫视频 | 精品成在人线av无码免费看 | av无码电影一区二区三区 | 少妇被黑人到高潮喷出白浆 | 精品欧洲av无码一区二区三区 | 鲁一鲁av2019在线 | 色综合久久中文娱乐网 | 国产午夜福利100集发布 | 网友自拍区视频精品 | 377p欧洲日本亚洲大胆 | 国产成人无码av一区二区 | 亚洲国产精品一区二区美利坚 | 女人被男人躁得好爽免费视频 | 久久久精品人妻久久影视 | 女高中生第一次破苞av | 97夜夜澡人人爽人人喊中国片 | 欧美阿v高清资源不卡在线播放 | 亚洲天堂2017无码 | 亚洲日韩av一区二区三区四区 | 久久精品中文闷骚内射 | 国产后入清纯学生妹 | 国产成人无码av片在线观看不卡 | 亚洲七七久久桃花影院 | 少妇被粗大的猛进出69影院 | 亚洲熟妇自偷自拍另类 | 亚洲无人区一区二区三区 | 无码帝国www无码专区色综合 | 亚洲精品中文字幕乱码 | 欧美日韩亚洲国产精品 | а√天堂www在线天堂小说 | 东京热无码av男人的天堂 | 精品少妇爆乳无码av无码专区 | 装睡被陌生人摸出水好爽 | 最新国产乱人伦偷精品免费网站 | 精品久久久久久人妻无码中文字幕 | 欧美阿v高清资源不卡在线播放 | 亚洲日韩一区二区三区 | 精品成人av一区二区三区 | 久久久久国色av免费观看性色 | 亚洲天堂2017无码 | 乌克兰少妇性做爰 | 图片小说视频一区二区 | 亚洲国产精品无码久久久久高潮 | 色狠狠av一区二区三区 | 国产欧美精品一区二区三区 | 乱码av麻豆丝袜熟女系列 | 日韩精品乱码av一区二区 | 性欧美牲交xxxxx视频 | 中文字幕 人妻熟女 | 狠狠色噜噜狠狠狠狠7777米奇 | 377p欧洲日本亚洲大胆 | 狠狠躁日日躁夜夜躁2020 | 伊人久久大香线蕉午夜 | 人妻插b视频一区二区三区 | 亚洲国产欧美在线成人 | 中文字幕人妻无码一区二区三区 | 亚洲色欲色欲欲www在线 | 成人免费视频一区二区 | 亚洲精品国偷拍自产在线麻豆 | 亚洲人成无码网www | 一本大道久久东京热无码av | 又湿又紧又大又爽a视频国产 | 国产精品欧美成人 | 成人欧美一区二区三区黑人 | 亚洲成a人片在线观看日本 | 天天躁日日躁狠狠躁免费麻豆 | 伊人久久大香线蕉午夜 | 色欲综合久久中文字幕网 | 最近的中文字幕在线看视频 | 亚洲性无码av中文字幕 | 国产成人人人97超碰超爽8 | 天海翼激烈高潮到腰振不止 | 天堂久久天堂av色综合 | 成人欧美一区二区三区黑人免费 | 亚洲成在人网站无码天堂 | 大地资源中文第3页 | 婷婷综合久久中文字幕蜜桃三电影 | 成人精品视频一区二区 | 国产熟妇另类久久久久 | 国产精品永久免费视频 | 草草网站影院白丝内射 | 一本久道高清无码视频 | 领导边摸边吃奶边做爽在线观看 | 最近中文2019字幕第二页 | 色妞www精品免费视频 | 午夜精品久久久久久久 | 88国产精品欧美一区二区三区 | 婷婷综合久久中文字幕蜜桃三电影 | 成人无码视频免费播放 | 亚洲日本va中文字幕 | 亚洲爆乳精品无码一区二区三区 | 国产一区二区三区影院 | 国产精品久久精品三级 | 国产电影无码午夜在线播放 | 精品欧美一区二区三区久久久 | 在线观看免费人成视频 | 国产九九九九九九九a片 | 牲欲强的熟妇农村老妇女视频 | av无码久久久久不卡免费网站 | 精品久久久中文字幕人妻 | 久久亚洲国产成人精品性色 | 2020久久香蕉国产线看观看 | 亚洲中文字幕乱码av波多ji | 老司机亚洲精品影院 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 国产精品a成v人在线播放 | 草草网站影院白丝内射 | 又大又硬又黄的免费视频 | 青青青爽视频在线观看 | 18无码粉嫩小泬无套在线观看 | 国产成人精品久久亚洲高清不卡 | 麻豆国产人妻欲求不满 | 全球成人中文在线 | 日本一区二区更新不卡 | 日韩精品a片一区二区三区妖精 | 乱人伦中文视频在线观看 | 乌克兰少妇xxxx做受 | 亚洲国产精品久久久久久 | 国产精品无码一区二区桃花视频 | 精品成在人线av无码免费看 | 亚洲s码欧洲m码国产av | 2020久久香蕉国产线看观看 | aa片在线观看视频在线播放 | 亚洲色www成人永久网址 | 欧美乱妇无乱码大黄a片 | 精品国产一区二区三区四区 | 中国女人内谢69xxxxxa片 | 377p欧洲日本亚洲大胆 | 粉嫩少妇内射浓精videos | 领导边摸边吃奶边做爽在线观看 | aⅴ在线视频男人的天堂 | 无码国内精品人妻少妇 | 呦交小u女精品视频 | 日本免费一区二区三区最新 | 久久综合狠狠综合久久综合88 | 欧美成人免费全部网站 | 日韩欧美成人免费观看 | 中文字幕精品av一区二区五区 | 欧美自拍另类欧美综合图片区 | 99国产精品白浆在线观看免费 | 日韩亚洲欧美精品综合 | 国产综合色产在线精品 | www成人国产高清内射 | 少妇久久久久久人妻无码 | 欧洲极品少妇 | 亚洲国产精品久久久久久 | 国产性生大片免费观看性 | 蜜桃视频韩日免费播放 | 玩弄人妻少妇500系列视频 | 中文精品无码中文字幕无码专区 | 牛和人交xxxx欧美 | 国产色xx群视频射精 | 国产又爽又黄又刺激的视频 | 国产精品办公室沙发 | 国产日产欧产精品精品app | 18禁黄网站男男禁片免费观看 | 国产精品久久久久久久9999 | 女人和拘做爰正片视频 | 无码中文字幕色专区 | 成人无码精品1区2区3区免费看 | 国产乡下妇女做爰 | 亚洲第一无码av无码专区 | 人人澡人人妻人人爽人人蜜桃 | 偷窥村妇洗澡毛毛多 | 77777熟女视频在线观看 а天堂中文在线官网 | 人妻中文无码久热丝袜 | 99久久99久久免费精品蜜桃 | 色婷婷综合激情综在线播放 | 波多野结衣av在线观看 | 亚洲人成人无码网www国产 | 午夜精品久久久久久久 | 国产精品亚洲专区无码不卡 | 蜜桃无码一区二区三区 | 人人澡人摸人人添 | 97资源共享在线视频 | 亚洲综合在线一区二区三区 | 久久精品女人的天堂av | 乱人伦人妻中文字幕无码久久网 | 成人免费视频一区二区 | 亚洲aⅴ无码成人网站国产app | 人人超人人超碰超国产 | 精品国产福利一区二区 | 亚洲中文字幕va福利 | 国产99久久精品一区二区 | 久久99精品国产.久久久久 | 国产性生交xxxxx无码 | 日本又色又爽又黄的a片18禁 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 激情内射亚州一区二区三区爱妻 | 国产精品久久久一区二区三区 | 国产亚av手机在线观看 | 亚洲熟妇自偷自拍另类 | 四虎国产精品一区二区 | 亚洲区欧美区综合区自拍区 | 午夜精品久久久久久久 | 在线观看欧美一区二区三区 | 国产区女主播在线观看 | 国产又爽又猛又粗的视频a片 | 无码精品国产va在线观看dvd | 久久久亚洲欧洲日产国码αv | 九九在线中文字幕无码 | 成人精品视频一区二区三区尤物 | yw尤物av无码国产在线观看 | 清纯唯美经典一区二区 | 牛和人交xxxx欧美 | 久久久久成人片免费观看蜜芽 | 高潮毛片无遮挡高清免费 | 无码任你躁久久久久久久 | 水蜜桃色314在线观看 | 欧美老妇与禽交 | 亚洲一区av无码专区在线观看 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 波多野结衣av一区二区全免费观看 | 精品亚洲成av人在线观看 | 高中生自慰www网站 | 狠狠色噜噜狠狠狠7777奇米 | 青春草在线视频免费观看 | 国产精品99久久精品爆乳 | 亚洲日韩av一区二区三区中文 | 亚洲人成影院在线无码按摩店 | 青青久在线视频免费观看 | 丝袜人妻一区二区三区 | 中文字幕+乱码+中文字幕一区 | 成熟女人特级毛片www免费 | 人妻中文无码久热丝袜 | 少妇被黑人到高潮喷出白浆 | 天天综合网天天综合色 | 亚洲人成网站在线播放942 | 97精品国产97久久久久久免费 | 亚洲男人av天堂午夜在 | 国产莉萝无码av在线播放 | 中文字幕人妻无码一夲道 | 鲁大师影院在线观看 | 人妻无码αv中文字幕久久琪琪布 | 国产乱人偷精品人妻a片 | 久热国产vs视频在线观看 | 麻豆人妻少妇精品无码专区 | 女人色极品影院 | 亚洲精品午夜无码电影网 | 亚洲综合另类小说色区 | 巨爆乳无码视频在线观看 | 亚洲理论电影在线观看 | 亚洲一区二区三区在线观看网站 | 强辱丰满人妻hd中文字幕 | 亚洲区欧美区综合区自拍区 | 狂野欧美激情性xxxx | 婷婷六月久久综合丁香 | 国产猛烈高潮尖叫视频免费 | 99久久精品日本一区二区免费 | 欧美日韩视频无码一区二区三 | 好爽又高潮了毛片免费下载 | 久久亚洲日韩精品一区二区三区 | 一本色道久久综合亚洲精品不卡 | 午夜时刻免费入口 | 日产国产精品亚洲系列 | 中国大陆精品视频xxxx | 亚洲一区二区三区香蕉 | 亚洲精品一区二区三区大桥未久 | 欧美猛少妇色xxxxx | 久久久久国色av免费观看性色 | 亚洲中文字幕无码中文字在线 | 呦交小u女精品视频 | 成熟妇人a片免费看网站 | 亚洲欧洲日本综合aⅴ在线 | 亚洲精品中文字幕久久久久 | 成人性做爰aaa片免费看不忠 | 曰韩少妇内射免费播放 | 亚洲中文字幕在线无码一区二区 | 乌克兰少妇性做爰 | 好屌草这里只有精品 | 成人免费视频视频在线观看 免费 | 久久综合给合久久狠狠狠97色 | 欧美 亚洲 国产 另类 | 97se亚洲精品一区 | 无码纯肉视频在线观看 | 丰满人妻一区二区三区免费视频 | 天下第一社区视频www日本 | 国产精品毛多多水多 | 男女性色大片免费网站 | 国产av无码专区亚洲awww | 性色欲情网站iwww九文堂 | 曰本女人与公拘交酡免费视频 | 国产成人综合色在线观看网站 | 亚洲精品无码国产 | 国产亚洲欧美日韩亚洲中文色 | 婷婷综合久久中文字幕蜜桃三电影 | 性生交大片免费看女人按摩摩 | 亚洲成a人片在线观看无码3d | 成人女人看片免费视频放人 | 狠狠色噜噜狠狠狠狠7777米奇 | 真人与拘做受免费视频一 | 日本护士xxxxhd少妇 | 成人亚洲精品久久久久 | 欧美成人高清在线播放 | 国产精品欧美成人 | 国产成人精品久久亚洲高清不卡 | 欧美性猛交内射兽交老熟妇 | 欧美老妇交乱视频在线观看 | 欧美日韩视频无码一区二区三 | 少妇无码一区二区二三区 | 精品国产麻豆免费人成网站 | 国产九九九九九九九a片 | 中文精品无码中文字幕无码专区 | 黑人巨大精品欧美一区二区 | 3d动漫精品啪啪一区二区中 | 天天躁日日躁狠狠躁免费麻豆 | 免费人成在线视频无码 | 色一情一乱一伦一视频免费看 | 99久久精品无码一区二区毛片 | 人人澡人摸人人添 | 波多野结衣一区二区三区av免费 | 亚洲中文字幕成人无码 | 人人妻人人澡人人爽欧美精品 | 东京热无码av男人的天堂 | 国产综合色产在线精品 | 爱做久久久久久 | 少妇被粗大的猛进出69影院 | 亚洲精品成人av在线 | 欧美人与牲动交xxxx | 国产精品二区一区二区aⅴ污介绍 | 天堂无码人妻精品一区二区三区 | 亚洲经典千人经典日产 | 熟妇人妻无乱码中文字幕 | 无码国模国产在线观看 | 精品国产国产综合精品 | 日本又色又爽又黄的a片18禁 | 国产无遮挡又黄又爽又色 | 久久99精品久久久久久 | 久久久久av无码免费网 | 2020久久超碰国产精品最新 | 永久免费精品精品永久-夜色 | 欧美日韩人成综合在线播放 | 乌克兰少妇xxxx做受 | 大地资源中文第3页 | 久久精品国产大片免费观看 | 久久久亚洲欧洲日产国码αv | 十八禁真人啪啪免费网站 | 国产一区二区三区精品视频 | 成人无码精品一区二区三区 | 国产乱子伦视频在线播放 | av无码电影一区二区三区 | 最新版天堂资源中文官网 | 亚洲色成人中文字幕网站 | 久久精品中文字幕大胸 | 国产精品无码永久免费888 | 亚洲自偷自拍另类第1页 | 四十如虎的丰满熟妇啪啪 | 黑人巨大精品欧美黑寡妇 | 蜜桃视频插满18在线观看 | 欧美午夜特黄aaaaaa片 | 国产欧美熟妇另类久久久 | 国产偷抇久久精品a片69 | 内射巨臀欧美在线视频 | 国产综合色产在线精品 | 漂亮人妻洗澡被公强 日日躁 | 亚洲色www成人永久网址 | 波多野结衣av一区二区全免费观看 | 欧美黑人乱大交 | 欧美日韩亚洲国产精品 | 三上悠亚人妻中文字幕在线 | 又色又爽又黄的美女裸体网站 | 国产精品沙发午睡系列 | 国产精品久久久午夜夜伦鲁鲁 | 国产超碰人人爽人人做人人添 | 99久久精品日本一区二区免费 | 国产精品99爱免费视频 | 初尝人妻少妇中文字幕 | 波多野结衣av一区二区全免费观看 | 人妻少妇精品视频专区 | 国产香蕉尹人视频在线 | 日韩欧美群交p片內射中文 | 国产亚洲tv在线观看 | 国产精品无码一区二区桃花视频 | 日本一区二区三区免费高清 | 中文字幕精品av一区二区五区 | 欧美黑人性暴力猛交喷水 | 久久精品女人天堂av免费观看 | 亚洲欧美国产精品专区久久 | 色窝窝无码一区二区三区色欲 | 色一情一乱一伦一视频免费看 |