溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

hadoop如何實現(xiàn)計數(shù)器

發(fā)布時間:2021-12-09 15:10:42 來源:億速云 閱讀:137 作者:小新 欄目:云計算

這篇文章將為大家詳細(xì)講解有關(guān)hadoop如何實現(xiàn)計數(shù)器,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1、定義計數(shù)器

        1)枚舉聲明計數(shù)器

Context context...//自定義枚舉變量Enum
Counter counter = context.getCounter(Enum enum)

        2)自定義計數(shù)器

Context context...//自己命名groupName和counterName
Counter counter = context.getCounter(String groupName,String counterName)
2、為計數(shù)器賦值

        1)初始化計數(shù)器

counter.setValue(long value);//設(shè)置初始值

        2)計數(shù)器自增

counter.increment(long incr);//增加計數(shù)
3、獲取計數(shù)器的值

        1) 獲取枚舉計數(shù)器的值

Job job...
job.waitForCompletion(true);
Counters counters=job.getCounters();
Counter counter=counters.findCounter("BAD_RECORDS");//查找枚舉計數(shù)器,假如Enum的變量為BAD_RECORDS
long value=counter.getValue();//獲取計數(shù)值

        2) 獲取自定義計數(shù)器的值

Job job...job.waitForCompletion(true);
Counters counters=job.getCounters();
Counter counter=counters.findCounter("ErrorCounter","toolong");//假如groupName為ErrorCounter,counterName為toolong
long value=counter.getValue();//獲取計數(shù)值

        3) 獲取內(nèi)置計數(shù)器的值

textpop-up
Job job...job.waitForCompletion(true);
Counters counters=job.getCounters();//查找作業(yè)運行啟動的reduce個數(shù)的計數(shù)器,groupName和counterName可以從內(nèi)置計數(shù)器表格查詢(前面已經(jīng)列舉有)
Counter counter=counters.findCounter("org.apache.hadoop.mapreduce.JobCounter","TOTAL_LAUNCHED_REDUCES");//假如groupName為org.apache.hadoop.mapreduce.JobCounter,counterName為TOTAL_LAUNCHED_REDUCES
long value=counter.getValue();//獲取計數(shù)值

        4) 獲取所有計數(shù)器的值

Counters counters = job.getCounters();
for (CounterGroup group : counters) {
    for (Counter counter : group) {
            System.out.println(counter.getDisplayName() + ": " + counter.getName() + ": "+ counter.getValue());    
    }
 }

關(guān)于“hadoop如何實現(xiàn)計數(shù)器”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI