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

TEZ-4527: Add generic and pluggable hooks for DAGs and task attempts #324

Merged
merged 8 commits into from
Dec 22, 2024
Merged
Prev Previous commit
Mark some variables final
  • Loading branch information
okumin committed Dec 22, 2024
commit 61d8249fc9051acc1b98dfe6059ea00c4634e6ce
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@

public class TezThreadDumpHelper {

private long duration = 0L;
private Path basePath = null;
private FileSystem fs = null;
private final long duration;
private final Path basePath;
private final FileSystem fs;

private static final ThreadMXBean THREAD_BEAN = ManagementFactory.getThreadMXBean();
private static final Logger LOG = LoggerFactory.getLogger(TezThreadDumpHelper.class);
Expand Down
Loading