Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

YARN-8246 winutils - fix failure to retrieve disk and network perf co… #458

Closed
wants to merge 1 commit into from

Conversation

pgoron
Copy link

@pgoron pgoron commented Jan 7, 2019

…unters on localized windows installlation.

PdhAddCounter expects performance counter path to be in the same language than the windows installation.
With current code, the calls to PdhAddCounter will fail with error 0xc0000bb8 (PDH_CSTATUS_NO_OBJECT)
on non-english windows installation.

The solution is to use PdhAddEnglishCounter function instead
https://docs.microsoft.com/en-us/windows/desktop/api/pdh/nf-pdh-pdhaddenglishcounterw

"This function provides a language-neutral way to add performance counters to the query"

…unters on localized windows installlation

PdhAddCounter expects performance counter path to be in the same language than the windows installation.
With current code, the calls to PdhAddCounter will fail with error 0xc0000bb8 (PDH_CSTATUS_NO_OBJECT)
on non-english windows installation.

The solution is to use PdhAddEnglishCounter function instead
https://docs.microsoft.com/en-us/windows/desktop/api/pdh/nf-pdh-pdhaddenglishcounterw

"This function provides a language-neutral way to add performance counters to the query"
Copy link
Member

@jiwq jiwq left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

checkstyle

@@ -161,25 +161,25 @@ int GetDiskAndNetwork(LONGLONG* diskRead, LONGLONG* diskWrite, LONGLONG* netRead
}

// Add each one of the counters with wild cards
if(status = PdhAddCounter(hQuery, COUNTER_PATH_NET_READ_ALL, 0, &hCounterNetRead))
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_NET_READ_ALL, 0, &hCounterNetRead))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_NET_READ_ALL, 0, &hCounterNetRead))
if (status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_NET_READ_ALL, 0, &hCounterNetRead))

{
fwprintf_s(stderr, L"PdhAddCounter %s failed with 0x%x.\n", COUNTER_PATH_NET_READ_ALL, status);
ret = EXIT_FAILURE;
goto cleanup;
}
if(status = PdhAddCounter(hQuery, COUNTER_PATH_NET_WRITE_ALL, 0, &hCounterNetWrite))
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_NET_WRITE_ALL, 0, &hCounterNetWrite))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_NET_WRITE_ALL, 0, &hCounterNetWrite))
if (status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_NET_WRITE_ALL, 0, &hCounterNetWrite))

{
fwprintf_s(stderr, L"PdhAddCounter %s failed with 0x%x.\n", COUNTER_PATH_NET_WRITE_ALL, status);
ret = EXIT_FAILURE;
goto cleanup;
}
if(status = PdhAddCounter(hQuery, COUNTER_PATH_DISK_READ_ALL, 0, &hCounterDiskRead))
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_DISK_READ_ALL, 0, &hCounterDiskRead))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_DISK_READ_ALL, 0, &hCounterDiskRead))
if (status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_DISK_READ_ALL, 0, &hCounterDiskRead))

{
fwprintf_s(stderr, L"PdhAddCounter %s failed with 0x%x.\n", COUNTER_PATH_DISK_READ_ALL, status);
ret = EXIT_FAILURE;
goto cleanup;
}
if(status = PdhAddCounter(hQuery, COUNTER_PATH_DISK_WRITE_ALL, 0, &hCounterDiskWrite))
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_DISK_WRITE_ALL, 0, &hCounterDiskWrite))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if(status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_DISK_WRITE_ALL, 0, &hCounterDiskWrite))
if (status = PdhAddEnglishCounter(hQuery, COUNTER_PATH_DISK_WRITE_ALL, 0, &hCounterDiskWrite))

@pgoron
Copy link
Author

pgoron commented Apr 4, 2019

Hi jiwq,

If I do the suggested format change, it will make the formatting inconsistent with the rest of file (there are plenty of "if" not followed by space in the rest of the file).

I would prefer not mixing a functional change with a formatting change.

Peter

@jiwq
Copy link
Member

jiwq commented Apr 4, 2019

Hi @pgoron , I'm okay.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 39 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1033 trunk passed
+1 compile 1139 trunk passed
+1 mvnsite 69 trunk passed
+1 shadedclient 2861 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 51 the patch passed
+1 compile 1070 the patch passed
+1 cc 1070 the patch passed
+1 javac 1070 the patch passed
+1 mvnsite 70 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 602 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 518 hadoop-common in the patch passed.
+1 asflicense 42 The patch does not generate ASF License warnings.
5370
Subsystem Report/Notes
Docker Client=18.09.8 Server=18.09.8 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/1/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux 949a9fd514dd 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / cd967c7
Default Java 1.8.0_212
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/1/testReport/
Max. process+thread count 1410 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/1/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 83 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1207 trunk passed
+1 compile 1120 trunk passed
+1 mvnsite 93 trunk passed
+1 shadedclient 3204 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 60 the patch passed
+1 compile 1086 the patch passed
+1 cc 1086 the patch passed
+1 javac 1086 the patch passed
+1 mvnsite 89 the patch passed
+1 whitespace 1 The patch has no whitespace issues.
+1 shadedclient 790 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 568 hadoop-common in the patch passed.
+1 asflicense 47 The patch does not generate ASF License warnings.
6054
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/2/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux ad60a2739e67 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / c7c7a88
Default Java 1.8.0_212
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/2/testReport/
Max. process+thread count 1616 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/2/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 44 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1050 trunk passed
+1 compile 1154 trunk passed
+1 mvnsite 78 trunk passed
+1 shadedclient 2916 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 47 the patch passed
+1 compile 1007 the patch passed
+1 cc 1007 the patch passed
+1 javac 1007 the patch passed
+1 mvnsite 75 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 655 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 571 hadoop-common in the patch passed.
+1 asflicense 46 The patch does not generate ASF License warnings.
5468
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/3/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux 683c1734c28d 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / c2d00c8
Default Java 1.8.0_212
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/3/testReport/
Max. process+thread count 1448 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/3/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 125 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1232 trunk passed
+1 compile 1093 trunk passed
+1 mvnsite 80 trunk passed
+1 shadedclient 3164 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 54 the patch passed
+1 compile 1032 the patch passed
+1 cc 1032 the patch passed
+1 javac 1032 the patch passed
+1 mvnsite 76 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 756 patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 unit 540 hadoop-common in the patch failed.
+1 asflicense 46 The patch does not generate ASF License warnings.
5927
Reason Tests
Failed junit tests hadoop.security.TestRaceWhenRelogin
Subsystem Report/Notes
Docker Client=18.09.7 Server=18.09.7 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/4/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux 324f1d5e5039 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / b0131bc
Default Java 1.8.0_212
unit https://builds.apache.org/job/hadoop-multibranch/job/PR-458/4/artifact/out/patch-unit-hadoop-common-project_hadoop-common.txt
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/4/testReport/
Max. process+thread count 1342 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/4/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 134 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1380 trunk passed
+1 compile 1202 trunk passed
+1 mvnsite 92 trunk passed
+1 shadedclient 3428 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 47 the patch passed
+1 compile 1012 the patch passed
+1 cc 1012 the patch passed
+1 javac 1012 the patch passed
+1 mvnsite 81 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 717 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 572 hadoop-common in the patch passed.
+1 asflicense 45 The patch does not generate ASF License warnings.
6172
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/5/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux 722812dc221a 4.15.0-48-generic #51-Ubuntu SMP Wed Apr 3 08:28:49 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / e356e4f
Default Java 1.8.0_212
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/5/testReport/
Max. process+thread count 1347 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/5/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 46 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1071 trunk passed
+1 compile 1107 trunk passed
+1 mvnsite 68 trunk passed
+1 shadedclient 2887 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 48 the patch passed
+1 compile 1094 the patch passed
+1 cc 1094 the patch passed
+1 javac 1094 the patch passed
+1 mvnsite 67 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 611 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 524 hadoop-common in the patch passed.
+1 asflicense 42 The patch does not generate ASF License warnings.
5436
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/6/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux 7d46abb57989 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 094d736
Default Java 1.8.0_212
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/6/testReport/
Max. process+thread count 1408 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/6/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 104 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 0 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1447 trunk passed
+1 compile 1437 trunk passed
+1 mvnsite 84 trunk passed
+1 shadedclient 3754 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 56 the patch passed
+1 compile 1061 the patch passed
+1 cc 1061 the patch passed
+1 javac 1061 the patch passed
+1 mvnsite 77 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 757 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 586 hadoop-common in the patch passed.
+1 asflicense 43 The patch does not generate ASF License warnings.
6578
Subsystem Report/Notes
Docker Client=19.03.0 Server=19.03.0 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/7/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux dc3cfddd957b 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 69ddb36
Default Java 1.8.0_212
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/7/testReport/
Max. process+thread count 1686 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/7/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 71 Docker mode activated.
_ Prechecks _
+1 dupname 0 No case conflicting files found.
+1 @author 0 The patch does not contain any @author tags.
-1 test4tests 1 The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
+1 mvninstall 1216 trunk passed
+1 compile 1110 trunk passed
+1 mvnsite 89 trunk passed
+1 shadedclient 3202 branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+1 mvninstall 57 the patch passed
+1 compile 1051 the patch passed
+1 cc 1051 the patch passed
+1 javac 1051 the patch passed
+1 mvnsite 75 the patch passed
+1 whitespace 0 The patch has no whitespace issues.
+1 shadedclient 743 patch has no errors when building and testing our client artifacts.
_ Other Tests _
+1 unit 583 hadoop-common in the patch passed.
+1 asflicense 46 The patch does not generate ASF License warnings.
5959
Subsystem Report/Notes
Docker Client=19.03.1 Server=19.03.1 base: https://builds.apache.org/job/hadoop-multibranch/job/PR-458/8/artifact/out/Dockerfile
GITHUB PR #458
Optional Tests dupname asflicense compile cc mvnsite javac unit
uname Linux 2892d93cdfe4 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/hadoop.sh
git revision trunk / 3329257
Default Java 1.8.0_222
Test Results https://builds.apache.org/job/hadoop-multibranch/job/PR-458/8/testReport/
Max. process+thread count 1344 (vs. ulimit of 5500)
modules C: hadoop-common-project/hadoop-common U: hadoop-common-project/hadoop-common
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/8/console
versions git=2.7.4 maven=3.3.9
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
0 reexec 0 Docker mode activated.
-1 patch 11 #458 does not apply to trunk. Rebase required? Wrong Branch? See https://wiki.apache.org/hadoop/HowToContribute for help.
Subsystem Report/Notes
Console output https://builds.apache.org/job/hadoop-multibranch/job/PR-458/9/console
versions git=2.17.1
Powered by Apache Yetus 0.10.0 http://yetus.apache.org

This message was automatically generated.

@asfgit asfgit closed this Sep 3, 2019
shanthoosh pushed a commit to shanthoosh/hadoop that referenced this pull request Oct 15, 2019
…ducer

Refactoring eventhub system producer into common reusable components
1. AsyncSystemProducer : All the system producers that have real async send API with call backs can use this
2. NoFlushAsyncSystemProducer: All the system producers that have real async call back based send API and doesn't provide flush semantics can use this.

The system producers that implement AsyncSystemproducers can be used across Samza and Brooklin.

TODO: AsyncSystemProducer needs to be moved to the api layer so that it can be used across different system producers (i.e. eventhub and kinesis)

Author: Srinivasulu Punuru <spunuru@linkedin.com>

Reviewers: Boris S <boryas@apache.org>

Closes apache#458 from srinipunuru/async-prod.3
@gianlucastrada
Copy link

checkstyle

but where I use this function? I've the same problem to start hadoop: ExitCodeException exitCode=1: PdhAddCounter \Network Interface(*)\Bytes Received/Sec failed with 0xc0000bb8 Please help me!

@naseem87
Copy link

naseem87 commented Feb 13, 2021

Hello,

@jiwq @pgoron

I have the same error. Where can I download the fixed winutils for hadoop 3.3.0?

Any help will be appreciated!

NyteKnight pushed a commit to NyteKnight/hadoop that referenced this pull request Jun 25, 2024
NyteKnight pushed a commit to NyteKnight/hadoop that referenced this pull request Jun 25, 2024
…-76130 (apache#491)

* Revert "[hadoop] LIHADOOP-76132 : Evolve the BundledTokenIdentifier to include SPIFFE tokens (apache#458)"

This reverts commit e3d76d0.

* Revert "[hadoop] LIHADOOP-76131 : Create the SPIFFE Delegation Token Identifier (apache#456)"

This reverts commit df81929.

* Revert "[hadoop] LIHADOOP-76130: Update BundledDelegationTokenIdentifier to have unambiguous serde (apache#457)"

This reverts commit 902ba08.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants